Ticket #3878: 3878_2_test.patch

File 3878_2_test.patch, 30.3 KB (added by Artur Formella, 15 years ago)
  • _source/lang/_languages.js

     
    77{
    88        var langs =
    99        {
     10                test    : 'Test language',      // %REMOVE_LINE%
    1011                af              : 'Afrikaans',
    1112                ar              : 'Arabic',
    1213                bg              : 'Bulgarian',
  • _source/lang/test.js

     
     1/*
     2Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
     3For licensing, see LICENSE.html or http://ckeditor.com/license
     4*/
     5
     6/**
     7 * @fileOverview Defines the {@link CKEDITOR.lang} object, for the English
     8 *              language. This is the base file for all translations.
     9 */
     10
     11/**#@+
     12   @type String
     13   @example
     14*/
     15
     16/**
     17 * Constains the dictionary of language entries.
     18 * @namespace
     19 */
     20CKEDITOR.lang['test'] =
     21{
     22        /**
     23         * The language reading direction. Possible values are "rtl" for
     24         * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
     25         * languages (like English).
     26         * @default 'ltr'
     27         */
     28        dir : 'ltr',
     29
     30        /*
     31         * Screenreader titles. Please note that screenreaders are not always capable
     32         * of reading non-English words. So be careful while translating it.
     33         */
     34        editorTitle             : 'Rich text editor Rich text editor Rich text editor, %1',
     35
     36        // Toolbar buttons without dialogs.
     37        source                  : 'Source Source Source',
     38        newPage                 : 'New Page New Page New Page',
     39        save                    : 'Save Save Save',
     40        preview                 : 'Preview Preview Preview',
     41        cut                             : 'Cut Cut Cut',
     42        copy                    : 'Copy Copy Copy',
     43        paste                   : 'Paste Paste Paste',
     44        print                   : 'Print Print Print',
     45        underline               : 'Underline Underline Underline',
     46        bold                    : 'Bold Bold Bold',
     47        italic                  : 'Italic Italic Italic',
     48        selectAll               : 'Select All Select All Select All',
     49        removeFormat    : 'Remove Format Remove Format Remove Format',
     50        strike                  : 'Strike Through Strike Through Strike Through',
     51        subscript               : 'Subscript Subscript Subscript',
     52        superscript             : 'Superscript Superscript Superscript',
     53        horizontalrule  : 'Insert Horizontal Line Insert Horizontal Line Insert Horizontal Line',
     54        pagebreak               : 'Insert Page Break for Printing Insert Page Break for Printing Insert Page Break for Printing',
     55        unlink                  : 'Unlink Unlink Unlink',
     56        undo                    : 'Undo Undo Undo',
     57        redo                    : 'Redo Redo Redo',
     58
     59        // Common messages and labels.
     60        common :
     61        {
     62                browseServer    : 'Browse Server Browse Server Browse Server',
     63                url                             : 'URL URL URL',
     64                protocol                : 'Protocol Protocol Protocol',
     65                upload                  : 'Upload Upload Upload',
     66                uploadSubmit    : 'Send it to the Server Send it to the Server Send it to the Server',
     67                image                   : 'Image Image Image',
     68                flash                   : 'Flash Flash Flash',
     69                form                    : 'Form Form Form',
     70                checkbox                : 'Checkbox Checkbox Checkbox',
     71                radio           : 'Radio Button Radio Button Radio Button',
     72                textField               : 'Text Field Text Field Text Field',
     73                textarea                : 'Textarea Textarea Textarea',
     74                hiddenField             : 'Hidden Field Hidden Field Hidden Field',
     75                button                  : 'Button Button Button',
     76                select  : 'Selection Field Selection Field Selection Field',
     77                imageButton             : 'Image Button Image Button Image Button',
     78                notSet                  : '<not set> <not set>',
     79                id                              : 'Id Id Id',
     80                name                    : 'Name Name',
     81                langDir                 : 'Language Direction Language Direction Language Direction',
     82                langDirLtr              : 'Left to Right (LTR) Left to Right (LTR) Left to Right (LTR)',
     83                langDirRtl              : 'Right to Left (RTL) Right to Left (RTL) Right to Left (RTL)',
     84                langCode                : 'Language Code Language Code Language Code',
     85                longDescr               : 'Long Description URL Long Description URL Long Description URL',
     86                cssClass                : 'Stylesheet Classes Stylesheet Classes Stylesheet Classes',
     87                advisoryTitle   : 'Advisory TitleAdvisory Title',
     88                cssStyle                : 'Style Style Style',
     89                ok                              : 'OK',
     90                cancel                  : 'Cancel',
     91                generalTab              : 'General General',
     92                advancedTab             : 'Advanced Advanced',
     93                validateNumberFailed    : 'This value is not a number. This value is not a number. This value is not a number.',
     94                confirmNewPage  : 'Any unsaved changes to this content will be lost. Are you sure you want to load new page? Any unsaved changes to this content will be lost. Are you sure you want to load new page? Any unsaved changes to this content will be lost. Are you sure you want to load new page?',
     95                confirmCancel   : 'Some of the options have been changed. Are you sure to close the dialog? Some of the options have been changed. Are you sure to close the dialog? Some of the options have been changed. Are you sure to close the dialog?',
     96
     97                // Put the voice-only part of the label in the span.
     98                unavailable             : '%1<span class="cke_accessibility">, unavailable</span>'
     99        },
     100
     101        // Special char dialog.
     102        specialChar             :
     103        {
     104                toolbar         : 'Insert Special Character Insert Special Character',
     105                title           : 'Select Special Character Select Special Character'
     106        },
     107
     108        // Link dialog.
     109        link :
     110        {
     111                toolbar         : 'Link Link Link',
     112                menu            : 'Edit Link',
     113                title           : 'Link Link Link',
     114                info            : 'Link Info',
     115                target          : 'Target Target',
     116                upload          : 'Upload Upload',
     117                advanced        : 'Advanced Advanced',
     118                type            : 'Link Type Link Type',
     119                toAnchor        : 'Link to anchor in the text Link to anchor in the text',
     120                toEmail         : 'E-mail E-mail E-mail',
     121                target          : 'Target Target Target',
     122                targetNotSet    : '<not set> <not set> <not set>',
     123                targetFrame     : '<frame> <frame> <frame>',
     124                targetPopup     : '<popup window> <popup window> <popup window>',
     125                targetNew       : 'New Window (_blank) New Window (_blank)',
     126                targetTop       : 'Topmost Window (_top) Topmost Window (_top)',
     127                targetSelf      : 'Same Window (_self) Same Window (_self)',
     128                targetParent    : 'Parent Window (_parent) Parent Window (_parent)',
     129                targetFrameName : 'Target Frame Name Target Frame Name Target Frame Name',
     130                targetPopupName : 'Popup Window Name Popup Window Name Popup Window Name',
     131                popupFeatures   : 'Popup Window Features Popup Window Features Popup Window Features',
     132                popupResizable  : 'Resizable Resizable Resizable',
     133                popupStatusBar  : 'Status Bar Status Bar Status Bar',
     134                popupLocationBar        : 'Location Bar Location Bar Location Bar',
     135                popupToolbar    : 'Toolbar Toolbar Toolbar',
     136                popupMenuBar    : 'Menu Bar Menu Bar Menu Bar',
     137                popupFullScreen : 'Full Screen (IE) Full Screen (IE) Full Screen (IE)',
     138                popupScrollBars : 'Scroll Bars Scroll Bars Scroll Bars',
     139                popupDependent  : 'Dependent (Netscape) Dependent (Netscape) Dependent (Netscape)',
     140                popupWidth              : 'Width Width Width',
     141                popupLeft               : 'Left Position Left Position Left Position',
     142                popupHeight             : 'Height Height Height',
     143                popupTop                : 'Top Position Top Position Top Position',
     144                id                              : 'Id Id Id',
     145                langDir                 : 'Language Direction Language Direction Language Direction',
     146                langDirNotSet   : '<not set> <not set> <not set>',
     147                langDirLTR              : 'Left to Right (LTR) Left to Right (LTR) Left to Right (LTR)',
     148                langDirRTL              : 'Right to Left (RTL) Right to Left (RTL) Right to Left (RTL)',
     149                acccessKey              : 'Access Key Access Key Access Key',
     150                name                    : 'Name Name Name',
     151                langCode                : 'Language Code Language Code Language Code',
     152                tabIndex                : 'Tab Index Tab Index Tab Index',
     153                advisoryTitle   : 'Advisory Title Advisory Title Advisory Title',
     154                advisoryContentType     : 'Advisory Content Type Advisory Content Type Advisory Content Type',
     155                cssClasses              : 'Stylesheet Classes Stylesheet Classes Stylesheet Classes',
     156                charset                 : 'Linked Resource Charset Linked Resource Charset Linked Resource Charset',
     157                styles                  : 'Style Style Style',
     158                selectAnchor    : 'Select an Anchor Select an Anchor Select an Anchor',
     159                anchorName              : 'By Anchor Name By Anchor Name By Anchor Name',
     160                anchorId                : 'By Element Id By Element Id By Element Id',
     161                emailAddress    : 'E-Mail Address E-Mail Address E-Mail Address',
     162                emailSubject    : 'Message Subject Message Subject Message Subject',
     163                emailBody               : 'Message Body Message Body Message Body',
     164                noAnchors               : '(No anchors available in the document)',
     165                noUrl                   : 'Please type the link URL Please type the link URL Please type the link URL',
     166                noEmail                 : 'Please type the e-mail address Please type the e-mail address Please type the e-mail address'
     167        },
     168
     169        // Anchor dialog
     170        anchor :
     171        {
     172                toolbar         : 'Anchor Anchor Anchor',
     173                menu            : 'Edit Anchor Edit Anchor Edit Anchor',
     174                title           : 'Anchor Properties Anchor Properties',
     175                name            : 'Anchor Name Anchor Name Anchor Name',
     176                errorName       : 'Please type the anchor name Please type the anchor name Please type the anchor name'
     177        },
     178
     179        // Find And Replace Dialog
     180        findAndReplace :
     181        {
     182                title                           : 'Find and Replace Find and Replace',
     183                find                            : 'Find Find Find',
     184                replace                         : 'Replace Replace Replace',
     185                findWhat                        : 'Find what: Find what: Find what:',
     186                replaceWith                     : 'Replace with: Replace with: Replace with:',
     187                notFoundMsg                     : 'The specified text was not found. The specified text was not found. The specified text was not found.',
     188                matchCase                       : 'Match case Match case Match case',
     189                matchWord                       : 'Match whole word Match whole word Match whole word',
     190                matchCyclic                     : 'Match cyclic Match cyclic Match cyclic',
     191                replaceAll                      : 'Replace All Replace All Replace All',
     192                replaceSuccessMsg       : '%1 occurrence(s) replaced. occurrence(s) replaced. occurrence(s) replaced.'
     193        },
     194
     195        // Table Dialog
     196        table :
     197        {
     198                toolbar         : 'Table Table Table',
     199                title           : 'Table Properties Table Properties',
     200                menu            : 'Table Properties Table Properties',
     201                deleteTable     : 'Delete Table Delete Table Delete Table',
     202                rows            : 'Rows Rows Rows',
     203                columns         : 'Columns Columns Columns',
     204                border          : 'Border size Border size Border size',
     205                align           : 'Alignment Alignment Alignment',
     206                alignNotSet     : '<Not set> <Not set>',
     207                alignLeft       : 'Left Left Left',
     208                alignCenter     : 'Center Center Center',
     209                alignRight      : 'Right Right Right',
     210                width           : 'Width Width Width',
     211                widthPx         : 'pixels',
     212                widthPc         : 'percent',
     213                height          : 'Height Height Height',
     214                cellSpace       : 'Cell spacing Cell spacing Cell spacing',
     215                cellPad         : 'Cell padding Cell padding Cell padding',
     216                caption         : 'Caption Caption Caption',
     217                summary         : 'Summary Summary Summary',
     218                headers         : 'Headers Headers Headers',
     219                headersNone             : 'None None None',
     220                headersColumn   : 'First column First column',
     221                headersRow              : 'First Row First Row',
     222                headersBoth             : 'Both Both Both',
     223                invalidRows             : 'Number of rows must be a number greater than 0. Number of rows must be a number greater than 0. Number of rows must be a number greater than 0.',
     224                invalidCols             : 'Number of columns must be a number greater than 0. Number of columns must be a number greater than 0. Number of columns must be a number greater than 0.',
     225                invalidBorder   : 'Border size must be a number. Border size must be a number. Border size must be a number.',
     226                invalidWidth    : 'Table width must be a number. Table width must be a number. Table width must be a number.',
     227                invalidHeight   : 'Table height must be a number. Table height must be a number. Table height must be a number.',
     228                invalidCellSpacing      : 'Cell spacing must be a number. Cell spacing must be a number. Cell spacing must be a number.',
     229                invalidCellPadding      : 'Cell padding must be a number. Cell padding must be a number. Cell padding must be a number.',
     230
     231                cell :
     232                {
     233                        menu                    : 'Cell Cell Cell',
     234                        insertBefore    : 'Insert Cell Before Insert Cell Before Insert Cell Before',
     235                        insertAfter             : 'Insert Cell After Insert Cell After Insert Cell After',
     236                        deleteCell              : 'Delete Cells Delete Cells Delete Cells',
     237                        merge                   : 'Merge Cells Merge Cells Merge Cells',
     238                        mergeRight              : 'Merge Right Merge Right Merge Right',
     239                        mergeDown               : 'Merge Down Merge Down Merge Down',
     240                        splitHorizontal : 'Split Cell Horizontally Split Cell Horizontally Split Cell Horizontally',
     241                        splitVertical   : 'Split Cell Vertically Split Cell Vertically Split Cell Vertically',
     242                        title                   : 'Cell Properties Cell Properties',
     243                        cellType                : 'Cell Type Cell Type Cell Type',
     244                        rowSpan                 : 'Rows Span Rows Span Rows Span',
     245                        colSpan                 : 'Columns Span Columns Span Columns Span',
     246                        wordWrap                : 'Word Wrap Word Wrap Word Wrap',
     247                        hAlign                  : 'Horizontal Alignment Horizontal Alignment Horizontal Alignment',
     248                        vAlign                  : 'Vertical Alignment Vertical Alignment Vertical Alignment',
     249                        alignTop                : 'Top Top Top',
     250                        alignMiddle             : 'Middle Middle Middle',
     251                        alignBottom             : 'Bottom Bottom Bottom',
     252                        alignBaseline   : 'Baseline Baseline Baseline',
     253                        bgColor                 : 'Background Color Background Color Background Color',
     254                        borderColor             : 'Border Color Border Color Border Color',
     255                        data                    : 'Data Data Data',
     256                        header                  : 'Header Header Header',
     257                        yes                             : 'Yes Yes Yes',
     258                        no                              : 'No No No',
     259                        invalidWidth    : 'Cell width must be a number. Cell width must be a number. Cell width must be a number.',
     260                        invalidHeight   : 'Cell height must be a number. Cell height must be a number. Cell height must be a number.',
     261                        invalidRowSpan  : 'Rows span must be a whole number. Rows span must be a whole number. Rows span must be a whole number.',
     262                        invalidColSpan  : 'Columns span must be a whole number. Columns span must be a whole number. Columns span must be a whole number.'
     263                },
     264
     265                row :
     266                {
     267                        menu                    : 'Row Row Row',
     268                        insertBefore    : 'Insert Row Before Insert Row Before Insert Row Before',
     269                        insertAfter             : 'Insert Row After Insert Row After Insert Row After',
     270                        deleteRow               : 'Delete Rows Delete Rows Delete Rows'
     271                },
     272
     273                column :
     274                {
     275                        menu                    : 'Column Column Column',
     276                        insertBefore    : 'Insert Column Before Insert Column Before Insert Column Before',
     277                        insertAfter             : 'Insert Column After Insert Column After Insert Column After',
     278                        deleteColumn    : 'Delete Columns Delete Columns Delete Columns'
     279                }
     280        },
     281
     282        // Button Dialog.
     283        button :
     284        {
     285                title           : 'Button Properties Button Properties',
     286                text            : 'Text (Value) Text (Value) Text (Value)',
     287                type            : 'Type Type Type',
     288                typeBtn         : 'Button Button Button',
     289                typeSbm         : 'Submit Submit Submit',
     290                typeRst         : 'Reset Reset Reset'
     291        },
     292
     293        // Checkbox and Radio Button Dialogs.
     294        checkboxAndRadio :
     295        {
     296                checkboxTitle : 'Checkbox Properties Checkbox Properties',
     297                radioTitle      : 'Radio Button Properties Radio Button Properties',
     298                value           : 'Value Value Value',
     299                selected        : 'Selected Selected Selected'
     300        },
     301
     302        // Form Dialog.
     303        form :
     304        {
     305                title           : 'Form Properties Form Properties',
     306                menu            : 'Form Properties Form Properties',
     307                action          : 'Action Action Action',
     308                method          : 'Method Method Method',
     309                encoding        : 'Encoding Encoding Encoding',
     310                target          : 'Target Target Target',
     311                targetNotSet    : '<not set> <not set>',
     312                targetNew       : 'New Window (_blank)',
     313                targetTop       : 'Topmost Window (_top)',
     314                targetSelf      : 'Same Window (_self)',
     315                targetParent    : 'Parent Window (_parent)'
     316        },
     317
     318        // Select Field Dialog.
     319        select :
     320        {
     321                title           : 'Selection Field Properties Selection Field Properties',
     322                selectInfo      : 'Select Info Select Info Select Info',
     323                opAvail         : 'Available Options Available Options Available Options',
     324                value           : 'Value Value',
     325                size            : 'Size Size Size',
     326                lines           : 'lines lines lines',
     327                chkMulti        : 'Allow multiple selections Allow multiple selections',
     328                opText          : 'Text Text Text',
     329                opValue         : 'Value Value Value',
     330                btnAdd          : 'Add Add Add',
     331                btnModify       : 'Modify Modify Modify',
     332                btnUp           : 'Up Up Up',
     333                btnDown         : 'Down Down Down',
     334                btnSetValue : 'Set as selected value value',
     335                btnDelete       : 'Delete Delete Delete'
     336        },
     337
     338        // Textarea Dialog.
     339        textarea :
     340        {
     341                title           : 'Textarea Properties Textarea Properties',
     342                cols            : 'Columns Columns Columns',
     343                rows            : 'Rows Rows Rows'
     344        },
     345
     346        // Text Field Dialog.
     347        textfield :
     348        {
     349                title           : 'Text Field Properties Text Field Properties',
     350                name            : 'Name Name Name',
     351                value           : 'Value Value Value',
     352                charWidth       : 'Character Width Character Width',
     353                maxChars        : 'Maximum Characters Maximum Characters',
     354                type            : 'Type Type Type',
     355                typeText        : 'Text Text Text',
     356                typePass        : 'Password Password Password'
     357        },
     358
     359        // Hidden Field Dialog.
     360        hidden :
     361        {
     362                title   : 'Hidden Field Properties Hidden Field Properties',
     363                name    : 'Name Name Name',
     364                value   : 'Value Value Value'
     365        },
     366
     367        // Image Dialog.
     368        image :
     369        {
     370                title           : 'Image Properties Image Properties',
     371                titleButton     : 'Image Button Properties Image Button Properties',
     372                menu            : 'Image Properties Image Properties',
     373                infoTab : 'Image Info Image Info Image Info',
     374                btnUpload       : 'Send it to the Server Send it to the Server Send it to the Server',
     375                url             : 'URL URL URL',
     376                upload  : 'Upload Upload Upload',
     377                alt             : 'Alternative Text Alternative Text Alternative Text',
     378                width           : 'Width',
     379                height  : 'Height',
     380                lockRatio       : 'Lock Ratio Lock Ratio Lock Ratio',
     381                resetSize       : 'Reset Size Reset Size Reset Size',
     382                border  : 'Border Border',
     383                hSpace  : 'HSpace HSpace',
     384                vSpace  : 'VSpace VSpace',
     385                align           : 'Align Align Align',
     386                alignLeft       : 'Left Left Left',
     387                alignAbsBottom: 'Abs Bottom Abs Bottom Abs Bottom',
     388                alignAbsMiddle: 'Abs Middle Abs Middle Abs Middle',
     389                alignBaseline   : 'Baseline Baseline Baseline',
     390                alignBottom     : 'Bottom Bottom Bottom',
     391                alignMiddle     : 'Middle Middle Middle',
     392                alignRight      : 'Right Right Right',
     393                alignTextTop    : 'Text Top Text Top Text Top',
     394                alignTop        : 'Top Top Top',
     395                preview : 'Preview Preview Preview',
     396                alertUrl        : 'Please type the image URL Please type the image URL Please type the image URL',
     397                linkTab : 'Link Link Link',
     398                button2Img      : 'Do you want to transform the selected image button on a simple image? Do you want to transform the selected image button on a simple image? Do you want to transform the selected image button on a simple image?',
     399                img2Button      : 'Do you want to transform the selected image on a image button? Do you want to transform the selected image on a image button? Do you want to transform the selected image on a image button?'
     400        },
     401
     402        // Flash Dialog
     403        flash :
     404        {
     405                properties              : 'Flash Properties Flash Properties Flash Properties',
     406                propertiesTab   : 'Properties Properties Properties',
     407                title           : 'Flash Properties Flash Properties Flash Properties',
     408                chkPlay         : 'Auto Play Auto Play Auto Play',
     409                chkLoop         : 'Loop Loop Loop',
     410                chkMenu         : 'Enable Flash Menu Enable Flash Menu Enable Flash Menu',
     411                chkFull         : 'Allow Fullscreen Allow Fullscreen Allow Fullscreen',
     412                scale           : 'Scale Scale Scale',
     413                scaleAll                : 'Show all Show all Show all',
     414                scaleNoBorder   : 'No Border No Border No Border',
     415                scaleFit                : 'Exact Fit Exact Fit Exact Fit',
     416                access                  : 'Script Access Script Access Script Access',
     417                accessAlways    : 'Always Always Always',
     418                accessSameDomain        : 'Same domain Same domain',
     419                accessNever     : 'Never Never Never',
     420                align           : 'Align Align Align',
     421                alignLeft       : 'Left Left Left',
     422                alignAbsBottom: 'Abs Bottom Abs Bottom Abs Bottom',
     423                alignAbsMiddle: 'Abs Middle Abs Middle Abs Middle',
     424                alignBaseline   : 'Baseline Baseline Baseline',
     425                alignBottom     : 'Bottom Bottom Bottom',
     426                alignMiddle     : 'Middle Middle Middle',
     427                alignRight      : 'Right Right Right',
     428                alignTextTop    : 'Text Top Text Top Text Top',
     429                alignTop        : 'Top Top Top',
     430                quality         : 'Quality Quality Quality',
     431                qualityBest              : 'Best Best Best',
     432                qualityHigh              : 'High High High',
     433                qualityAutoHigh  : 'Auto High Auto High',
     434                qualityMedium    : 'Medium Medium Medium',
     435                qualityAutoLow   : 'Auto Low Auto Low',
     436                qualityLow               : 'Low Low Low',
     437                windowModeWindow         : 'Window Window Window',
     438                windowModeOpaque         : 'Opaque Opaque Opaque',
     439                windowModeTransparent    : 'Transparent Transparent Transparent',
     440                windowMode      : 'Window mode Window mode Window mode',
     441                flashvars       : 'Variables for Flash Variables for Flash Variables for Flash',
     442                bgcolor : 'Background color Background color Background color',
     443                width   : 'Width Width Width',
     444                height  : 'Height Height Height',
     445                hSpace  : 'HSpace HSpace HSpace',
     446                vSpace  : 'VSpace VSpace VSpace',
     447                validateSrc : 'URL must not be empty. URL must not be empty. URL must not be empty.',
     448                validateWidth : 'Width must be a number. Width must be a number. Width must be a number.',
     449                validateHeight : 'Height must be a number. Height must be a number. Height must be a number.',
     450                validateHSpace : 'HSpace must be a number. HSpace must be a number. HSpace must be a number.',
     451                validateVSpace : 'VSpace must be a number. VSpace must be a number. VSpace must be a number.'
     452        },
     453
     454        // Speller Pages Dialog
     455        spellCheck :
     456        {
     457                toolbar                 : 'Check Spelling Check Spelling Check Spelling',
     458                title                   : 'Spell Check Spell Check Spell Check',
     459                notAvailable    : 'Sorry, but service is unavailable now. Sorry, but service is unavailable now. Sorry, but service is unavailable now.',
     460                errorLoading    : 'Error loading application service host: %s. Error loading application service host: %s. Error loading application service host: %s.',
     461                notInDic                : 'Not in dictionary Not in dictionary Not in dictionary',
     462                changeTo                : 'Change to Change to Change to',
     463                btnIgnore               : 'Ignore Ignore Ignore',
     464                btnIgnoreAll    : 'Ignore All Ignore All Ignore All',
     465                btnReplace              : 'Replace Replace Replace',
     466                btnReplaceAll   : 'Replace All Replace All Replace All',
     467                btnUndo                 : 'Undo Undo Undo',
     468                noSuggestions   : '- No suggestions - - No suggestions - - No suggestions -',
     469                progress                : 'Spell check in progress... Spell check in progress... Spell check in progress...',
     470                noMispell               : 'Spell check complete: No misspellings found Spell check complete: No misspellings found Spell check complete: No misspellings found',
     471                noChanges               : 'Spell check complete: No words changed Spell check complete: No words changed Spell check complete: No words changed',
     472                oneChange               : 'Spell check complete: One word changed Spell check complete: One word changed Spell check complete: One word changed',
     473                manyChanges             : 'Spell check complete: %1 words changed Spell check complete: %1 words changed Spell check complete: %1 words changed',
     474                ieSpellDownload : 'Spell checker not installed. Do you want to download it now? Spell checker not installed. Do you want to download it now? Spell checker not installed. Do you want to download it now?'
     475        },
     476
     477        smiley :
     478        {
     479                toolbar : 'Smiley Smiley Smiley',
     480                title   : 'Insert a Smiley Insert a Smiley'
     481        },
     482
     483        elementsPath :
     484        {
     485                eleTitle : '%1 element %1 element %1 element'
     486        },
     487
     488        numberedlist : 'Insert/Remove Numbered List Insert/Remove Numbered List Insert/Remove Numbered List',
     489        bulletedlist : 'Insert/Remove Bulleted List Insert/Remove Bulleted List Insert/Remove Bulleted List',
     490        indent : 'Increase Indent Increase Indent Increase Indent',
     491        outdent : 'Decrease Indent Decrease Indent Decrease Indent',
     492
     493        justify :
     494        {
     495                left : 'Left Justify Left Justify Left Justify',
     496                center : 'Center Justify Center Justify Center Justify',
     497                right : 'Right Justify Right Justify Right Justify',
     498                block : 'Block Justify Block Justify Block Justify'
     499        },
     500
     501        blockquote : 'Blockquote Blockquote Blockquote',
     502
     503        clipboard :
     504        {
     505                title           : 'Paste Paste Paste',
     506                cutError        : 'Your browser security settings don\'t permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X). Your browser security settings don\'t permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X). Your browser security settings don\'t permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).',
     507                copyError       : 'Your browser security settings don\'t permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C). Your browser security settings don\'t permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C). Your browser security settings don\'t permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).',
     508                pasteMsg        : 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit OK Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit OK Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit OK',
     509                securityMsg     : 'Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window. '
     510        },
     511
     512        pastefromword :
     513        {
     514                toolbar : 'Paste from Word Paste from Word',
     515                title : 'Paste from Word Paste from Word',
     516                advice : 'Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>. Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>. Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.',
     517                ignoreFontFace : 'Ignore Font Face definitions Ignore Font Face definitions',
     518                removeStyle : 'Remove Styles definitions Remove Styles definitions'
     519        },
     520
     521        pasteText :
     522        {
     523                button : 'Paste as plain text Paste as plain text',
     524                title : 'Paste as Plain Text Paste as Plain Text'
     525        },
     526
     527        templates :
     528        {
     529                button : 'Templates Templates Templates',
     530                title : 'Content Templates Content Templates',
     531                insertOption: 'Replace actual contents Replace actual contents Replace actual contents',
     532                selectPromptMsg: 'Please select the template to open in the editor Please select the template to open in the editor Please select the template to open in the editor',
     533                emptyListMsg : '(No templates defined) (No templates defined) (No templates defined)'
     534        },
     535
     536        showBlocks : 'Show Blocks Show Blocks Show Blocks',
     537
     538        stylesCombo :
     539        {
     540                label : 'Styles Styles Styles',
     541                voiceLabel : 'Styles Styles Styles',
     542                panelVoiceLabel : 'Select a style Select a style Select a style',
     543                panelTitle1 : 'Block Styles Block Styles Block Styles',
     544                panelTitle2 : 'Inline Styles Inline Styles Inline Styles',
     545                panelTitle3 : 'Object Styles Object Styles Object Styles'
     546        },
     547
     548        format :
     549        {
     550                label : 'Format Format Format',
     551                voiceLabel : 'Format Format Format',
     552                panelTitle : 'Paragraph Format Paragraph Format Paragraph Format',
     553                panelVoiceLabel : 'Select a paragraph format Select a paragraph format Select a paragraph format',
     554
     555                tag_p : 'Normal Normal Normal',
     556                tag_pre : 'Formatted Formatted Formatted',
     557                tag_address : 'Address Address Address',
     558                tag_h1 : 'Heading 1 Heading 1 Heading 1',
     559                tag_h2 : 'Heading 2 Heading 2 Heading 2',
     560                tag_h3 : 'Heading 3 Heading 3 Heading 3',
     561                tag_h4 : 'Heading 4 Heading 4 Heading 4',
     562                tag_h5 : 'Heading 5 Heading 5 Heading 5',
     563                tag_h6 : 'Heading 6 Heading 6 Heading 6',
     564                tag_div : 'Normal (DIV) Normal (DIV) Normal (DIV)'
     565        },
     566
     567        font :
     568        {
     569                label : 'Font Font Font',
     570                voiceLabel : 'Font Font Font',
     571                panelTitle : 'Font Name Font Name Font Name',
     572                panelVoiceLabel : 'Select a font Select a font Select a font'
     573        },
     574
     575        fontSize :
     576        {
     577                label : 'Size Size Size',
     578                voiceLabel : 'Font Size Font Size Font Size',
     579                panelTitle : 'Font Size Font Size Font Size',
     580                panelVoiceLabel : 'Select a font size Select a font size Select a font size'
     581        },
     582
     583        colorButton :
     584        {
     585                textColorTitle : 'Text Color Text Color Text Color',
     586                bgColorTitle : 'Background Color Background Color Background Color',
     587                auto : 'Automatic Automatic Automatic',
     588                more : 'More Colors... More Colors... More Colors...'
     589        },
     590
     591        colors :
     592        {
     593                '000' : 'Black',
     594                '800000' : 'Maroon',
     595                '8B4513' : 'Saddle Brown',
     596                '2F4F4F' : 'Dark Slate Gray',
     597                '008080' : 'Teal',
     598                '000080' : 'Navy',
     599                '4B0082' : 'Indigo',
     600                '696969' : 'Dim Gray',
     601                'B22222' : 'Fire Brick',
     602                'A52A2A' : 'Brown',
     603                'DAA520' : 'Golden Rod',
     604                '006400' : 'Dark Green',
     605                '40E0D0' : 'Turquoise',
     606                '0000CD' : 'Medium Blue',
     607                '800080' : 'Purple',
     608                '808080' : 'Gray',
     609                'F00' : 'Red',
     610                'FF8C00' : 'Dark Orange',
     611                'FFD700' : 'Gold',
     612                '008000' : 'Green',
     613                '0FF' : 'Cyan',
     614                '00F' : 'Blue',
     615                'EE82EE' : 'Violet',
     616                'A9A9A9' : 'Dark Gray',
     617                'FFA07A' : 'Light Salmon',
     618                'FFA500' : 'Orange',
     619                'FFFF00' : 'Yellow',
     620                '00FF00' : 'Lime',
     621                'AFEEEE' : 'Pale Turquoise',
     622                'ADD8E6' : 'Light Blue',
     623                'DDA0DD' : 'Plum',
     624                'D3D3D3' : 'Light Grey',
     625                'FFF0F5' : 'Lavender Blush',
     626                'FAEBD7' : 'Antique White',
     627                'FFFFE0' : 'Light Yellow',
     628                'F0FFF0' : 'Honeydew',
     629                'F0FFFF' : 'Azure',
     630                'F0F8FF' : 'Alice Blue',
     631                'E6E6FA' : 'Lavender',
     632                'FFF' : 'White'
     633        },
     634
     635        scayt :
     636        {
     637                title : 'Spell Check As You Type Spell Check As You Type Spell Check As You Type',
     638                enable : 'Enable SCAYT Enable SCAYT Enable SCAYT',
     639                disable : 'Disable SCAYT Disable SCAYT Disable SCAYT',
     640                about : 'About SCAYT About SCAYT About SCAYT',
     641                toggle : 'Toggle SCAYT Toggle SCAYT Toggle SCAYT',
     642                options : 'Options Options Options',
     643                langs : 'Languages Languages Languages',
     644                moreSuggestions : 'More suggestions More suggestions More suggestions',
     645                ignore : 'Ignore Ignore Ignore',
     646                ignoreAll : 'Ignore All Ignore All Ignore All',
     647                addWord : 'Add Word Add Word Add Word',
     648                emptyDic : 'Dictionary name should not be empty. Dictionary name should not be empty. Dictionary name should not be empty.',
     649                optionsTab : 'Options Options Options',
     650                languagesTab : 'Languages Languages Languages',
     651                dictionariesTab : 'Dictionaries Dictionaries Dictionaries',
     652                aboutTab : 'About About About'
     653        },
     654
     655        about :
     656        {
     657                title : 'About CKEditor',
     658                moreInfo : 'For licensing information please visit our web site:',
     659                copy : 'Copyright &copy; $1. All rights reserved.'
     660        },
     661
     662        maximize : 'Maximize Maximize Maximize',
     663
     664        fakeobjects :
     665        {
     666                anchor : 'Anchor Anchor Anchor',
     667                flash : 'Flash Animation Flash Animation Flash Animation',
     668                div : 'Page Break Page Break Page Break',
     669                unknown : 'Unknown Object Unknown Object Unknown Object'
     670        },
     671
     672        resize : 'Drag to resize Drag to resize Drag to resize'
     673};
  • config.js

     
    66CKEDITOR.editorConfig = function( config )
    77{
    88        // Define changes to default configuration here. For example:
    9         // config.language = 'fr';
     9         config.language = 'test';
    1010        // config.skin = 'office2003';
    1111};
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy