Ticket #1569: 1569_3.patch

File 1569_3.patch, 26.9 KB (added by Artur Formella, 16 years ago)
  • fckeditor_config.js

     
    2323        ['FitWindow','-','About']
    2424] ;
    2525
     26
    2627// Load the extension plugins.
    2728FCKConfig.PluginsPath = FCKConfig.EditorPath + '../plugins/' ;
    28 FCKConfig.Plugins.Add( 'mediawiki' ) ;
     29FCKConfig.Plugins.Add( 'mediawiki', 'en,pl') ;
    2930
    3031FCKConfig.ForcePasteAsPlainText = true ;
    3132FCKConfig.FontFormats   = 'p;h1;h2;h3;h4;h5;h6;pre' ;
    3233
    33 FCKConfig.AutoDetectLanguage    = false ;
     34FCKConfig.AutoDetectLanguage    = true ;
    3435FCKConfig.DefaultLanguage               = 'en' ;
    3536
    3637// FCKConfig.DisableObjectResizing = true ;
  • plugins/mediawiki/dialogs/image.html

     
    191191                ClearSearch() ;
    192192
    193193                if ( link.length == 0 )
    194                         SetSearchMessage( 'start typing in the above field' ) ;
     194                        SetSearchMessage( FCKLang.wikiImgStartTyping || 'start typing in the above field' ) ;
    195195                else
    196                         SetSearchMessage( 'too short... type more' ) ;
     196                        SetSearchMessage( FCKLang.wikiImgTooShort || 'too short... type more' ) ;
    197197                return ;
    198198        }
    199199
    200         SetSearchMessage( 'stop typing to search' ) ;
     200        SetSearchMessage( FCKLang.wikiImgStopTyping || 'stop typing to search' ) ;
    201201        searchTimer = window.setTimeout( StartSearch, 500 ) ;
    202202}
    203203
     
    208208        if ( link.length < 3  )
    209209                return ;
    210210
    211         SetSearchMessage( 'searching...' ) ;
     211        SetSearchMessage( FCKLang.wikiLnkSearching || 'searching...' ) ;
    212212
    213213        // Make an Ajax search for the pages.
    214214        oEditor.window.parent.sajax_request_type = 'GET' ;
     
    229229        else
    230230        {
    231231                if ( results.length == 1 )
    232                         SetSearchMessage( 'one image found' ) ;
     232                        SetSearchMessage( FCKLang.wikiImgSearch1Found || 'one image found' ) ;
    233233                else
    234                         SetSearchMessage( results.length + ' images found' ) ;
     234                        SetSearchMessage( results.length + ' ' + (FCKLang.wikiImgSearchSeveral || '%1 images found').replace( /%1/g, results.length ) ) ;
    235235
    236236                for ( var i = 0 ; i < results.length ; i++ )
    237237                        FCKTools.AddSelectOption( select, results[i], results[i] ) ;
    238238        }
    239239}
    240240
     241
    241242function ClearSearch()
    242243{
    243244        var select = GetE( 'xWikiResults' ) ;
     
    280281                <table cellspacing="1" cellpadding="1" border="0" width="100%">
    281282                        <tr valign="center">
    282283                                <td>
    283                                         <span>Image file name</span><br />
     284                                        <span fcklang="wikiImgFileName">Image file name</span><br />
    284285                                        <input id="txtUrl" style="width: 100%" type="text" onkeyup="OnUrlChange();" />
    285286                                        <br />
    286                                         Automatic search results (<span id="xWikiSearchStatus">start typing in the above field</span>)<br />
     287                                        <span fcklang="wikiImgAutomatic">Automatic search results</span> <b>(<span fcklang="wikiImgStartTyping" id="xWikiSearchStatus">start typing in the above field</span>)</b><br />
    287288                                        <select id="xWikiResults" size="5" style="width: 100%; height: 70px" onclick="SetUrl( this.value );UpdatePreview();">
    288289                                        </select>
    289290                                </td>
     
    293294                        </tr>
    294295                        <tr>
    295296                                <td colspan="2">
    296                                         <span>Caption</span><br />
     297                                        <span fcklang="wikiImgCaption">Caption</span><br />
    297298                                        <input id="txtAlt" style="width: 100%" type="text"><br />
    298299                                </td>
    299300                        </tr>
     
    302303                                        <table cellspacing="0" cellpadding="0" border="0">
    303304                                                <tr>
    304305                                                        <td nowrap="nowrap">
    305                                                                 Special Type<br />
     306                                                                <span fcklang="wikiImgType">Special Type</span><br />
    306307                                                                <select id="xType">
    307308                                                                        <option value="" selected="selected"></option>
    308                                                                         <option value="thumb">Thumbnail</option>
    309                                                                         <option value="frame">Frame</option>
    310                                                                         <option value="border">Border</option>
     309                                                                        <option fcklang="wikiImgTypeThumb" value="thumb">Thumbnail</option>
     310                                                                        <option fcklang="wikiImgTypeFrame" value="frame">Frame</option>
     311                                                                        <option fcklang="wikiImgTypeBorder" value="border">Border</option>
    311312                                                                </select>
    312313                                                        </td>
    313314                                                        <td style="padding-left:7px;">
     
    316317                                                                        <option value="" selected></option>
    317318                                                                        <option fcklang="DlgImgAlignRight" value="right">Right</option>
    318319                                                                        <option fcklang="DlgImgAlignLeft" value="left">Left</option>
    319                                                                         <option value="center">Center</option>
     320                                                                        <option fcklang="wikiImgAlignCenter" value="center">Center</option>
    320321                                                                </select>
    321322                                                        </td>
    322323                                                        <td style="padding-left:7px;">
  • plugins/mediawiki/dialogs/link.html

     
    9797               
    9898        if ( link.StartsWith( '#' ) )
    9999        {
    100                 SetSearchMessage( 'anchor link... no search for it' ) ;
     100                SetSearchMessage( FCKLang.wikiLnkNoSearchAnchor || 'anchor link... no search for it' ) ;
    101101                return ;
    102102        }
    103103       
    104104        if ( link.StartsWith( 'mailto:' ) )
    105105        {
    106                 SetSearchMessage( 'e-mail link... no search for it' ) ;
     106                SetSearchMessage( FCKLang.wikiLnkNoSearchMail || 'e-mail link... no search for it' ) ;
    107107                return ;
    108108        }
    109109       
    110110        if( /^\w+:\/\//.test( link ) )
    111111        {
    112                 SetSearchMessage( 'external link... no search for it' ) ;
     112                SetSearchMessage( FCKLang.wikiLnkNoSearchExt || 'external link... no search for it' ) ;
    113113                return ;
    114114        }
    115115
     
    118118                ClearSearch() ;
    119119
    120120                if ( link.length == 0 )
    121                         SetSearchMessage( 'start typing in the above field' ) ;
     121                        SetSearchMessage( FCKLang.wikiLnkStartTyping || 'start typing in the above field' ) ;
    122122                else
    123                         SetSearchMessage( 'too short... type more' ) ;
     123                        SetSearchMessage( FCKLang.wikiLnkTooShort || 'too short... type more' ) ;
    124124                return ;
    125125        }
    126126       
    127         SetSearchMessage( 'stop typing to search' ) ;
     127        SetSearchMessage( FCKLang.wikiLnkStopTyping || 'stop typing to search' ) ;
    128128        searchTimer = window.setTimeout( StartSearch, 500 ) ;
    129129}
    130130
     
    135135        if ( link.length < 3  )
    136136                return ;
    137137
    138         SetSearchMessage( 'searching...' ) ;
     138        SetSearchMessage( FCKLang.wikiLnkSearching || 'searching...' ) ;
    139139
    140140        // Make an Ajax search for the pages.
    141141        oEditor.window.parent.sajax_request_type = 'GET' ;
     
    151151
    152152        if ( results.length == 0 || ( results.length == 1 && results[0].length == 0 ) )
    153153        {
    154                 SetSearchMessage( 'no articles found' ) ;
     154                SetSearchMessage( FCKLang.wikiLnkSearchNothing || 'no articles found' ) ;
    155155        }
    156156        else
    157157        {
    158158                if ( results.length == 1 )
    159                         SetSearchMessage( 'one article found' ) ;
     159                        SetSearchMessage( FCKLang.wikiLnkSearch1Found || 'one article found' ) ;
    160160                else
    161                         SetSearchMessage( results.length + ' articles found' ) ;
     161                        SetSearchMessage( results.length + ' ' + (FCKLang.wikiLnkSearchSeveral || '%1 articles found').replace( /%1/g, results.length ) ) ;
    162162
    163163                for ( var i = 0 ; i < results.length ; i++ )
    164164                        FCKTools.AddSelectOption( select, results[i], results[i] ) ;
     
    244244<body scroll="no" style="overflow: hidden">
    245245        <div id="divInfo">
    246246                <div id="divLinkTypeUrl">
    247                         <span>Link</span><br />
     247                        <span fcklang="wikiLnk">Link</span><br />
    248248                        <input id="txtUrl" style="width: 100%" type="text" onkeyup="OnUrlChange();" />
    249249                        <br />
    250                         Automatic search results (<span id="xWikiSearchStatus">start typing in the above field</span>)<br />
     250                        <span fcklang="wikiLnkAutomatic">Automatic search results</span> (<span fcklang="wikiLnkStartTyping" id="xWikiSearchStatus">start typing in the above field</span>)<br />
    251251                        <select id="xWikiResults" size="10" style="width: 100%; height:150px" onclick="SetUrl( this.value );">
    252252                        </select>
    253253                </div>
  • plugins/mediawiki/dialogs/math.html

     
    7676       
    7777        if ( formula.length == 0 )
    7878        {
    79                 alert( 'Please type the formula' ) ;
     79                alert( FCKLang.wikiTeXEmpty || 'Please type the formula' ) ;
    8080                return false ;
    8181        }
    8282
     
    126126                <table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%">
    127127                        <tr>
    128128                                <td>
    129                                         <span>Formula (TeX markup)</span>
     129                                        <span fcklang="wikiTeX">Formula (TeX markup)</span>
    130130                                </td>
    131131                        </tr>
    132132                        <tr>
  • plugins/mediawiki/dialogs/ref.html

     
    103103                <table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%">
    104104                        <tr>
    105105                                <td>
    106                                         <span>Reference text (Wikitext)</span>
     106                                        <span fcklang="wikiRef">Reference text (Wikitext)</span>
    107107                                </td>
    108108                        </tr>
    109109                        <tr>
     
    114114                        </tr>
    115115                        <tr>
    116116                                <td>
    117                                         Reference name (optional)<br />
     117                                        <span fcklang="wikiRefName">Reference name (optional)</span><br />
    118118                                        <input id="xRefName" type="text" size="15" />
    119119                                </td>
    120120                        </tr>
  • plugins/mediawiki/dialogs/special.html

     
    200200                <table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%">
    201201                        <tr>
    202202                                <td>
    203                                         <span>Current Special Tag:</span>
     203                                        <span fcklang="wikiSpTag">Current Special Tag</span>:
    204204                                        <select id="xSelectTag" onchange="LoadDocumentation()">
    205205                                        </select><br>
    206206                                        <i><span id="xDefinition"></span></i>
     
    209209                        <tr>
    210210                                <td>
    211211                                        <hr>
    212                                         Special tag parameters:
     212                                        <span fcklang="wikiSpParam">Special tag parameters</span>:
    213213                        </tr>
    214214                        <tr>
    215215                                <td height="100%">
  • plugins/mediawiki/dialogs/template.html

     
    4343//#### Dialog Tabs
    4444
    4545// Set the dialog tabs.
    46 window.parent.AddTab( 'Edit', 'Edit' ) ;
    47 window.parent.AddTab( 'Manual', 'Manual' ) ;
     46window.parent.AddTab( 'Edit', FCKLang.wikiTabEdit || 'Edit' ) ;
     47window.parent.AddTab( 'Manual', FCKLang.wikiTabManual || 'Manual' ) ;
    4848
    4949function OnDialogTabChange( tabCode )
    5050{
     
    134134       
    135135        if ( !( /^{{[\s\S]+}}$/.test( templateData ) ) )
    136136        {
    137                 alert( 'Templates must start with {{ and end with }}. Please check it.' ) ;
     137                alert( FCKLang.wikiTmplEmpty || 'Templates must start with {{ and end with }}. Please check it.' ) ;
    138138                return false ;
    139139        }
    140140       
     
    158158                <table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%">
    159159                        <tr>
    160160                                <td>
    161                                         <span>Template raw definition (from {{ to }})</span><br />
     161                                        <span fcklang="wikiTmpl">Template raw definition (from {{ to }})</span><br />
    162162                                </td>
    163163                        </tr>
    164164                        <tr>
     
    178178                <table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%">
    179179                        <tr>
    180180                                <select id="xWikiResults" style="width: 100%;" onchange="SetUrl( this.value );">
    181                                 <option value="">&lt;Pick up a template manual here&gt;</option>
     181                                <option fcklang="wikiTmpsel" value="">&lt;Pick up a template manual here&gt;</option>
    182182                                </select>
    183183                        </tr>
    184184                        <tr>
  • plugins/mediawiki/fckplugin.js

     
    3232FCKToolbarItems.RegisterItem( 'Source', new FCKToolbarButton( 'Source', 'Wikitext', null, FCK_TOOLBARITEM_ICONTEXT, true, true, 1 ) ) ;
    3333
    3434// Register our toolbar buttons.
    35 var tbButton = new FCKToolbarButton( 'MW_Template', 'Template', 'Insert/Edit Template' ) ;
     35var tbButton = new FCKToolbarButton( 'MW_Template', 'Template',  FCKLang.wikiBtnTemplate || 'Insert/Edit Template') ;
    3636tbButton.IconPath = FCKConfig.PluginsPath + 'mediawiki/images/tb_icon_template.gif' ;
    3737FCKToolbarItems.RegisterItem( 'MW_Template', tbButton ) ;
    3838
    39 tbButton = new FCKToolbarButton( 'MW_Ref', 'Reference', 'Insert/Edit Reference' ) ;
     39tbButton = new FCKToolbarButton( 'MW_Ref', 'Reference', FCKLang.wikiBtnReference || 'Insert/Edit Reference' ) ;
    4040tbButton.IconPath = FCKConfig.PluginsPath + 'mediawiki/images/tb_icon_ref.gif' ;
    4141FCKToolbarItems.RegisterItem( 'MW_Ref', tbButton ) ;
    4242
    43 tbButton = new FCKToolbarButton( 'MW_Math', 'Formula', 'Insert/Edit Formula' ) ;
     43tbButton = new FCKToolbarButton( 'MW_Math', 'Formula', FCKLang.wikiBtnFormula || 'Insert/Edit Formula' ) ;
    4444tbButton.IconPath = FCKConfig.PluginsPath + 'mediawiki/images/tb_icon_math.gif' ;
    4545FCKToolbarItems.RegisterItem( 'MW_Math', tbButton ) ;
    4646
    47 tbButton = new FCKToolbarButton( 'MW_Special', 'Special Tag', 'Insert/Edit Special Tag' ) ;
     47tbButton = new FCKToolbarButton( 'MW_Special', 'Special Tag', FCKLang.wikiBtnSpecial || 'Insert/Edit Special Tag' ) ;
    4848tbButton.IconPath = FCKConfig.PluginsPath + 'mediawiki/images/tb_icon_special.gif' ;
    4949FCKToolbarItems.RegisterItem( 'MW_Special', tbButton ) ;
    5050
    5151// Override some dialogs.
    52 FCKCommands.RegisterCommand( 'MW_Template', new FCKDialogCommand( 'MW_Template', 'Template Properties', FCKConfig.PluginsPath + 'mediawiki/dialogs/template.html', 400, 330 ) ) ;
    53 FCKCommands.RegisterCommand( 'MW_Ref', new FCKDialogCommand( 'MW_Ref', 'Reference Properties', FCKConfig.PluginsPath + 'mediawiki/dialogs/ref.html', 400, 250 ) ) ;
    54 FCKCommands.RegisterCommand( 'MW_Math', new FCKDialogCommand( 'MW_Math', 'Formula', FCKConfig.PluginsPath + 'mediawiki/dialogs/math.html', 400, 300 ) ) ;
    55 FCKCommands.RegisterCommand( 'MW_Special', new FCKDialogCommand( 'MW_Special', 'Special Tag Properties', FCKConfig.PluginsPath + 'mediawiki/dialogs/special.html', 400, 330 ) ) ; //YC
     52FCKCommands.RegisterCommand( 'MW_Template', new FCKDialogCommand( 'MW_Template', ( FCKLang.wikiCmdTemplate || 'Template Properties' ), FCKConfig.PluginsPath + 'mediawiki/dialogs/template.html', 400, 330 ) ) ;
     53FCKCommands.RegisterCommand( 'MW_Ref', new FCKDialogCommand( 'MW_Ref', ( FCKLang.wikiCmdReference || 'Reference Properties' ), FCKConfig.PluginsPath + 'mediawiki/dialogs/ref.html', 400, 250 ) ) ;
     54FCKCommands.RegisterCommand( 'MW_Math', new FCKDialogCommand( 'MW_Math', ( FCKLang.wikiCmdFormula || 'Formula' ), FCKConfig.PluginsPath + 'mediawiki/dialogs/math.html', 400, 300 ) ) ;
     55FCKCommands.RegisterCommand( 'MW_Special', new FCKDialogCommand( 'MW_Special', ( FCKLang.wikiCmdSpecial || 'Special Tag Properties' ), FCKConfig.PluginsPath + 'mediawiki/dialogs/special.html', 400, 330 ) ) ;
    5656FCKCommands.RegisterCommand( 'Link', new FCKDialogCommand( 'Link', FCKLang.DlgLnkWindowTitle, FCKConfig.PluginsPath + 'mediawiki/dialogs/link.html', 400, 250 ) ) ;
    5757FCKCommands.RegisterCommand( 'Image', new FCKDialogCommand( 'Image', FCKLang.DlgImgTitle, FCKConfig.PluginsPath + 'mediawiki/dialogs/image.html', 450, 300 ) ) ;
    5858
     
    812812                        // Hide the textarea to avoid seeing the code change.
    813813                        FCK.EditingArea.Textarea.style.visibility = 'hidden' ;
    814814                        var loading = document.createElement( 'span' ) ;
    815                         loading.innerHTML = '&nbsp;Loading Wikitext. Please wait...&nbsp;' ;
     815                        loading.innerHTML = '&nbsp;'+ (FCKLang.wikiLoadingWikitext || 'Loading Wikitext. Please wait...' )+'&nbsp;';
    816816                        loading.style.position = 'absolute' ;
    817817                        loading.style.left = '5px' ;
    818818//                      loading.style.backgroundColor = '#ff0000' ;
     
    944944                        if ( tag.getAttribute( '_fck_mw_template' ) )
    945945                        {
    946946                                contextMenu.AddSeparator() ;
    947                                 contextMenu.AddItem( 'MW_Template', 'Template Properties' ) ;
     947                                contextMenu.AddItem( 'MW_Template', FCKLang.wikiMnuTemplate || 'Template Properties' ) ;
    948948                        }
    949949                        if ( tag.getAttribute( '_fck_mw_magic' ) )
    950950                        {
    951951                                contextMenu.AddSeparator() ;
    952                                 contextMenu.AddItem( 'MW_MagicWord', 'Modify Magic Word' ) ;
     952                                contextMenu.AddItem( 'MW_MagicWord', FCKLang.wikiMnuMagicWord || 'Modify Magic Word' ) ;
    953953                        }
    954954                        if ( tag.getAttribute( '_fck_mw_ref' ) )
    955955                        {
    956956                                contextMenu.AddSeparator() ;
    957                                 contextMenu.AddItem( 'MW_Ref', 'Reference Properties' ) ;
     957                                contextMenu.AddItem( 'MW_Ref', FCKLang.wikiMnuReference || 'Reference Properties' ) ;
    958958                        }
    959959                        if ( tag.getAttribute( '_fck_mw_math' ) )
    960960                        {
    961961                                contextMenu.AddSeparator() ;
    962                                 contextMenu.AddItem( 'MW_Math', 'Edit Formula' ) ;
     962                                contextMenu.AddItem( 'MW_Math', FCKLang.wikiMnuFormula || 'Edit Formula' ) ;
    963963                        }
    964964                        if ( tag.getAttribute( '_fck_mw_special' ) || tag.getAttribute( '_fck_mw_nowiki' ) || tag.getAttribute( '_fck_mw_includeonly' ) || tag.getAttribute( '_fck_mw_noinclude' ) || tag.getAttribute( '_fck_mw_onlyinclude' ) || tag.getAttribute( '_fck_mw_gallery' )) //YC
    965965                        {
    966966                                contextMenu.AddSeparator() ;
    967                                 contextMenu.AddItem( 'MW_Special', 'Special Tag Properties' ) ;
     967                                contextMenu.AddItem( 'MW_Special', FCKLang.wikiMnuSpecial || 'Special Tag Properties' ) ;
    968968                        }
    969969                }
    970970        }
  • plugins/mediawiki/lang/en.js

     
     1/*
     2 * mediaWiki FCKeditor plugin
     3 *
     4 * English language file.
     5 */
     6
     7FCKLang.wikiTabEdit                                             = 'Edit';
     8FCKLang.wikiTabManual                                   = 'Manual';
     9
     10FCKLang.wikiBtnTemplate                         = 'Insert/Edit Template';
     11FCKLang.wikiBtnReference                        = 'Insert/Edit Reference';
     12FCKLang.wikiBtnFormula                          = 'Insert/Edit Formula';
     13FCKLang.wikiBtnSpecial                          = 'Insert/Edit Special Tag';
     14FCKLang.wikiCmdTemplate                         = 'Template Properties';
     15FCKLang.wikiCmdReference                        = 'Reference Properties';
     16FCKLang.wikiCmdFormula                          = 'Formula';
     17FCKLang.wikiLoadingWikitext             = 'Loading Wikitext. Please wait...';
     18FCKLang.wikiMnuTemplate                         = 'Template Properties';
     19FCKLang.wikiMnuMagicWord                        = 'Modify Magic Word';
     20FCKLang.wikiMnuReference                        = 'Reference Properties';
     21FCKLang.wikiMnuFormula                          = 'Edit Formula';
     22FCKLang.wikiCmdSpecial                          = 'Special Tag Properties';
     23FCKLang.wikiMnuSpecial                          = 'Special Tag Properties';
     24
     25FCKLang.wikiImgFileName                         = 'Image file name';
     26FCKLang.wikiImgNotice1                          = 'Image have to be uploded before';
     27FCKLang.wikiImgNotice2                          = 'use "Upload file" on the left side of the screen';
     28FCKLang.wikiImgCaption                          = 'Caption';
     29FCKLang.wikiImgType                                             = 'Special Type';
     30FCKLang.wikiImgTypeThumb                        = 'Thumbnail';
     31FCKLang.wikiImgTypeFrame                        = 'Frame';
     32FCKLang.wikiImgTypeBorder                       = 'Border';
     33FCKLang.wikiImgAlignCenter              = 'Center';
     34
     35FCKLang.wikiImgAutomatic                        = 'Automatic search results';
     36FCKLang.wikiImgTooShort                         = 'too short... type more';
     37FCKLang.wikiImgStartTyping              = 'start typing in the above field';
     38FCKLang.wikiImgStopTyping                       = 'stop typing to search';
     39FCKLang.wikiImgSearching                        = 'searching...';
     40FCKLang.wikiImgSearchNothing    = 'no images found';
     41FCKLang.wikiImgSearch1Found             = 'one image found';
     42FCKLang.wikiImgSearchSeveral    = '%1 images found ';
     43FCKLang.wikiImgSearchALot                       = '%1 images found ';
     44
     45FCKLang.wikiLnk                                                         = 'Link';
     46FCKLang.wikiLnkAutomatic                        = 'Automatic search results';
     47FCKLang.wikiLnkNoSearchAnchor   = 'anchor link... no search for it';
     48FCKLang.wikiLnkNoSearchMail             = 'e-mail link... no search for it';
     49FCKLang.wikiLnkNoSearchExt              = 'external link... no search for it';
     50FCKLang.wikiLnkTooShort                         = 'too short... type more';
     51FCKLang.wikiLnkStartTyping              = 'start typing in the above field';
     52FCKLang.wikiLnkStopTyping                       = 'stop typing to search';
     53FCKLang.wikiLnkSearching                        = 'searching...';
     54FCKLang.wikiLnkSearchNothing    = 'no articles found';
     55FCKLang.wikiLnkSearch1Found             = 'one article found';
     56FCKLang.wikiLnkSearchSeveral    = '%1 articles found';
     57FCKLang.wikiLnkSearchALot                       = '%1 articles found';
     58
     59FCKLang.wikiTeX                                                         = 'Formula (TeX markup)';
     60FCKLang.wikiTeXEmpty                                    = 'Please type the formula';
     61
     62FCKLang.wikiSpTag                                                       = 'Current Special Tag';
     63FCKLang.wikiSpParam                                             = 'Special tag parameters';
     64
     65FCKLang.wikiRef                                                         = 'Reference text (Wikitext)';
     66FCKLang.wikiRefName                                             = 'Reference name (optional)';
     67
     68FCKLang.wikiTmpl                                                        = 'Template raw definition (from {{ to }})';
     69FCKLang.wikiTmplEmpty                                   = 'Templates must start with {{ and end with }}. Please check it.';
     70FCKLang.wikiTmpsel                                              =       '(Pick up a template manual here)'
     71
     72/*
     73 * mediaWiki FCKeditor plugin
     74 *
     75 * English language file.
     76 */
     77
     78FCKLang.wikiTabEdit                                             = 'Edit';
     79FCKLang.wikiTabManual                                   = 'Manual';
     80
     81FCKLang.wikiBtnTemplate                         = 'Insert/Edit Template';
     82FCKLang.wikiBtnReference                        = 'Insert/Edit Reference';
     83FCKLang.wikiBtnFormula                          = 'Insert/Edit Formula';
     84FCKLang.wikiBtnSpecial                          = 'Insert/Edit Special Tag';
     85FCKLang.wikiCmdTemplate                         = 'Template Properties';
     86FCKLang.wikiCmdReference                        = 'Reference Properties';
     87FCKLang.wikiCmdFormula                          = 'Formula';
     88FCKLang.wikiLoadingWikitext             = 'Loading Wikitext. Please wait...';
     89FCKLang.wikiMnuTemplate                         = 'Template Properties';
     90FCKLang.wikiMnuMagicWord                        = 'Modify Magic Word';
     91FCKLang.wikiMnuReference                        = 'Reference Properties';
     92FCKLang.wikiMnuFormula                          = 'Edit Formula';
     93FCKLang.wikiCmdSpecial                          = 'Special Tag Properties';
     94FCKLang.wikiMnuSpecial                          = 'Special Tag Properties';
     95
     96FCKLang.wikiImgFileName                         = 'Image file name';
     97FCKLang.wikiImgNotice1                          = 'Image have to be uploded before';
     98FCKLang.wikiImgNotice2                          = 'use "Upload file" on the left side of the screen';
     99FCKLang.wikiImgCaption                          = 'Caption';
     100FCKLang.wikiImgType                                             = 'Special Type';
     101FCKLang.wikiImgTypeThumb                        = 'Thumbnail';
     102FCKLang.wikiImgTypeFrame                        = 'Frame';
     103FCKLang.wikiImgTypeBorder                       = 'Border';
     104FCKLang.wikiImgAlignCenter              = 'Center';
     105
     106FCKLang.wikiImgAutomatic                        = 'Automatic search results';
     107FCKLang.wikiImgTooShort                         = 'too short... type more';
     108FCKLang.wikiImgStartTyping              = 'start typing in the above field';
     109FCKLang.wikiImgStopTyping                       = 'stop typing to search';
     110FCKLang.wikiImgSearching                        = 'searching...';
     111FCKLang.wikiImgSearchNothing    = 'no images found';
     112FCKLang.wikiImgSearch1Found             = 'one image found';
     113FCKLang.wikiImgSearchSeveral    = 'images found ';
     114FCKLang.wikiImgSearchALot                       = 'images found ';
     115
     116FCKLang.wikiLnk                                                         = 'Link';
     117FCKLang.wikiLnkAutomatic                        = 'Automatic search results';
     118FCKLang.wikiLnkNoSearchAnchor   = 'anchor link... no search for it';
     119FCKLang.wikiLnkNoSearchMail             = 'e-mail link... no search for it';
     120FCKLang.wikiLnkNoSearchExt              = 'external link... no search for it';
     121FCKLang.wikiLnkTooShort                         = 'too short... type more';
     122FCKLang.wikiLnkStartTyping              = 'start typing in the above field';
     123FCKLang.wikiLnkStopTyping                       = 'stop typing to search';
     124FCKLang.wikiLnkSearching                        = 'searching...';
     125FCKLang.wikiLnkSearchNothing    = 'no articles found';
     126FCKLang.wikiLnkSearch1Found             = 'one article found';
     127FCKLang.wikiLnkSearchSeveral    = 'articles found';
     128FCKLang.wikiLnkSearchALot                       = 'articles found';
     129
     130FCKLang.wikiTeX                                                         = 'Formula (TeX markup)';
     131FCKLang.wikiTeXEmpty                                    = 'Please type the formula';
     132
     133FCKLang.wikiSpTag                                                       = 'Current Special Tag';
     134FCKLang.wikiSpParam                                             = 'Special tag parameters';
     135
     136FCKLang.wikiRef                                                         = 'Reference text (Wikitext)';
     137FCKLang.wikiRefName                                             = 'Reference name (optional)';
     138
     139FCKLang.wikiTmpl                                                        = 'Template raw definition (from {{ to }})';
     140FCKLang.wikiTmplEmpty                                   = 'Templates must start with {{ and end with }}. Please check it.';
     141FCKLang.wikiTmpsel                                              =       '(Pick up a template manual here)'
     142
     143
  • plugins/mediawiki/lang/pl.js

     
     1/*
     2 * mediaWiki FCKeditor plugin
     3 *
     4 * Polish language file.
     5 */
     6
     7FCKLang.wikiTabEdit                                             = 'Edycja';
     8FCKLang.wikiTabManual                                   = 'Własny' ;
     9
     10FCKLang.wikiBtnTemplate                         = 'Wstaw/edytuj szablon';
     11FCKLang.wikiBtnReference                        = 'Wstaw/edytuj cytat';
     12FCKLang.wikiBtnFormula                          = 'Wstaw/edytuj formułę matematyczną';
     13FCKLang.wikiBtnSpecial                          = 'Wstaw/edytuj specialny znacznik';
     14FCKLang.wikiCmdTemplate                         = 'Właściwości szablonu';
     15FCKLang.wikiCmdReference                        = 'Właściwości cytatu';
     16FCKLang.wikiCmdFormula                          = 'Właściwości formuły matematycznej';
     17FCKLang.wikiLoadingWikitext             = '&nbsp;Konwertuję format wiki. Proszę czekać...&nbsp;';
     18FCKLang.wikiMnuTemplate                         = 'Właściwości szablonu';
     19FCKLang.wikiMnuMagicWord                        = 'Zmodyfikuj "magiczne słowo"';
     20FCKLang.wikiMnuReference                        = 'Właściwości cytatu';
     21FCKLang.wikiMnuFormula                          = 'Właściwości formuły matematycznej';
     22FCKLang.wikiCmdSpecial                          = 'Właściwości specialnego znacznika';
     23FCKLang.wikiMnuSpecial                          = 'Edytuj specialny znacznik';
     24
     25FCKLang.wikiImgFileName                         = 'Nazwa obrazka';
     26FCKLang.wikiImgNotice1                          = 'Obrazek musi być uprzednio zapisany';
     27FCKLang.wikiImgNotice2                          = 'patrz menu "Prześlij plik" z lewej strony ekranu.';
     28FCKLang.wikiImgCaption                          = 'Tytuł/tekst zastępczy';
     29FCKLang.wikiImgType                                             = "Typ";
     30FCKLang.wikiImgTypeThumb                        = 'Podgląd';
     31FCKLang.wikiImgTypeFrame                        = 'Ramka+podpis';
     32FCKLang.wikiImgTypeBorder                       = 'Ramka';
     33FCKLang.wikiImgAlignCenter              = 'Do środka';
     34
     35FCKLang.wikiImgAutomatic                        = 'Wyniki wyszukiwania';
     36FCKLang.wikiImgTooShort                         = 'za mało liter... napisz coś jeszcze';
     37FCKLang.wikiImgStartTyping              = 'zacznij pisać w polu powyżej';
     38FCKLang.wikiImgStopTyping                       = 'przestań pisać, by rozpocząć wyszukiwanie';
     39FCKLang.wikiImgSearching                        = 'wyszukiwanie...';
     40FCKLang.wikiImgSearchNothing    = 'nie znaleziono żadnego obrazka';
     41FCKLang.wikiImgSearch1Found             = 'znaleziono jeden&nbsp;obrazek';
     42FCKLang.wikiImgSearchSeveral    = 'znaleziono %1&nbsp;obrazki';
     43FCKLang.wikiImgSearchALot                       = 'znaleziono %1&nbsp;obrazków';
     44
     45FCKLang.wikiLnk                                                         = 'Hiperłącze';
     46FCKLang.wikiLnkAutomatic                        = 'Wyniki wyszukiwania';
     47FCKLang.wikiLnkNoSearchAnchor   = 'Kotwica... nie da się wyszukać';
     48FCKLang.wikiLnkNoSearchMail             = 'Adres pocztowy... nie da się wyszukać';
     49FCKLang.wikiLnkNoSearchExt              = 'Łącze do zewnętrzne... nie da się wyszukać';
     50FCKLang.wikiLnkTooShort                         = 'za mało liter aby wyszukać';
     51FCKLang.wikiLnkStartTyping              = 'zacznij pisać w polu powyżej';
     52FCKLang.wikiLnkStopTyping                       = 'przestań pisać, by rozpocząć wyszukiwanie';
     53FCKLang.wikiLnkSearching                        = 'wyszukiwanie...';
     54FCKLang.wikiLnkSearchNothing    = 'nie znaleziono żadnego artykułu';
     55FCKLang.wikiLnkSearch1Found             = 'znaleziono jednen artykuł';
     56FCKLang.wikiLnkSearchSeveral    = 'znaleziono %1 artykuły'
     57FCKLang.wikiLnkSearchALot                       = 'znaleziono %1 artykułów'
     58
     59FCKLang.wikiTeX                                                         = 'Formuła matematyczna (notacja TeX)';
     60FCKLang.wikiTeXEmpty                                    = 'Nie wprowadzono formuły';
     61
     62FCKLang.wikiSpTag                                                       = 'Typ znacznika';
     63FCKLang.wikiSpParam                                             = 'Parametry';
     64
     65FCKLang.wikiRef                                                         = 'Treść cytatu (format wiki)';
     66FCKLang.wikiRefName                                             = 'Nazwa cytatu (opcjonalna)';
     67
     68FCKLang.wikiTmpl                                                        = 'Szablon (np. {{PrzykładowySzablon}})';
     69FCKLang.wikiTmplEmpty                                   = 'Szablon musi zaczynać się znakami {{ i kończyć się znakami }}';
     70FCKLang.wikiTmpsel                                              = '(Wybierz z listy)';
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy