Ticket #4862: 4862.patch

File 4862.patch, 21.7 KB (added by Alfonso Martínez de Lizarrondo, 14 years ago)

Proposed patch

  • _source/core/lang.js

     
    2929                        'el'    : 1,
    3030                        'en-au' : 1,
    3131                        'en-ca' : 1,
    32                         'en-uk' : 1,
     32                        'en-gb' : 1,
    3333                        'en'    : 1,
    3434                        'eo'    : 1,
    3535                        'es'    : 1,
  • _source/lang/_languages.js

     
    2020                en              : 'English',
    2121                'en-au' : 'English (Australia)',
    2222                'en-ca' : 'English (Canadian)',
    23                 'en-uk' : 'English (United Kingdom)',
     23                'en-gb' : 'English (United Kingdom)',
    2424                eo              : 'Esperanto',
    2525                es              : 'Spanish',
    2626                et              : 'Estonian',
  • _source/lang/_translationstatus.txt

     
    1313el.js      Found: 301 Missing: 188
    1414en-au.js   Found: 385 Missing: 104
    1515en-ca.js   Found: 385 Missing: 104
    16 en-uk.js   Found: 385 Missing: 104
     16en-gb.js   Found: 385 Missing: 104
    1717eo.js      Found: 275 Missing: 214
    1818es.js      Found: 426 Missing: 63
    1919et.js      Found: 316 Missing: 173
  • _source/lang/en-ca.js

     
    55
    66/**
    77 * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
    8  * English (Australia) language.
     8 * English (Canadian) language.
    99 */
    1010
    1111/**#@+
  • _source/lang/en-gb.js

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