Changeset 174
- Timestamp:
- 2007-03-01 17:08:46 (3 years ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 60 modified
-
editor/dialog/fck_paste.html (modified) (7 diffs)
-
editor/lang/af.js (modified) (2 diffs)
-
editor/lang/ar.js (modified) (2 diffs)
-
editor/lang/bg.js (modified) (2 diffs)
-
editor/lang/bn.js (modified) (2 diffs)
-
editor/lang/bs.js (modified) (2 diffs)
-
editor/lang/ca.js (modified) (2 diffs)
-
editor/lang/cs.js (modified) (2 diffs)
-
editor/lang/da.js (modified) (2 diffs)
-
editor/lang/de.js (modified) (2 diffs)
-
editor/lang/el.js (modified) (2 diffs)
-
editor/lang/en-au.js (modified) (2 diffs)
-
editor/lang/en-ca.js (modified) (2 diffs)
-
editor/lang/en.js (modified) (2 diffs)
-
editor/lang/en-uk.js (modified) (2 diffs)
-
editor/lang/eo.js (modified) (2 diffs)
-
editor/lang/es.js (modified) (2 diffs)
-
editor/lang/et.js (modified) (2 diffs)
-
editor/lang/eu.js (modified) (2 diffs)
-
editor/lang/fa.js (modified) (2 diffs)
-
editor/lang/fi.js (modified) (2 diffs)
-
editor/lang/fo.js (modified) (2 diffs)
-
editor/lang/fr.js (modified) (2 diffs)
-
editor/lang/gl.js (modified) (2 diffs)
-
editor/lang/he.js (modified) (2 diffs)
-
editor/lang/hi.js (modified) (2 diffs)
-
editor/lang/hr.js (modified) (2 diffs)
-
editor/lang/hu.js (modified) (2 diffs)
-
editor/lang/it.js (modified) (2 diffs)
-
editor/lang/ja.js (modified) (2 diffs)
-
editor/lang/km.js (modified) (2 diffs)
-
editor/lang/ko.js (modified) (2 diffs)
-
editor/lang/lt.js (modified) (2 diffs)
-
editor/lang/lv.js (modified) (2 diffs)
-
editor/lang/mn.js (modified) (2 diffs)
-
editor/lang/ms.js (modified) (2 diffs)
-
editor/lang/nb.js (modified) (2 diffs)
-
editor/lang/nl.js (modified) (2 diffs)
-
editor/lang/no.js (modified) (2 diffs)
-
editor/lang/pl.js (modified) (2 diffs)
-
editor/lang/pt-br.js (modified) (2 diffs)
-
editor/lang/pt.js (modified) (2 diffs)
-
editor/lang/ro.js (modified) (2 diffs)
-
editor/lang/ru.js (modified) (2 diffs)
-
editor/lang/sk.js (modified) (2 diffs)
-
editor/lang/sl.js (modified) (2 diffs)
-
editor/lang/sr.js (modified) (2 diffs)
-
editor/lang/sr-latn.js (modified) (2 diffs)
-
editor/lang/sv.js (modified) (2 diffs)
-
editor/lang/th.js (modified) (2 diffs)
-
editor/lang/_translationstatus.txt (modified) (1 diff)
-
editor/lang/tr.js (modified) (2 diffs)
-
editor/lang/uk.js (modified) (2 diffs)
-
editor/lang/vi.js (modified) (2 diffs)
-
editor/lang/zh-cn.js (modified) (2 diffs)
-
editor/lang/zh.js (modified) (2 diffs)
-
editor/_source/commandclasses/fck_othercommands.js (modified) (1 diff)
-
editor/_source/internals/fckcommands.js (modified) (1 diff)
-
editor/_source/internals/fck_ie.js (modified) (3 diffs)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/dialog/fck_paste.html
r135 r174 29 29 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 30 30 <meta name="robots" content="noindex, nofollow" /> 31 31 32 <script type="text/javascript"> 32 33 var oEditor = window.parent.InnerDialogLoaded() ; … … 39 40 // First of all, translate the dialog box texts 40 41 oEditor.FCKLanguageManager.TranslatePage(document) ; 41 42 if ( window.parent.dialogArguments.CustomValue == 'Word' ) 43 { 42 43 var sPastingType = window.parent.dialogArguments.CustomValue ; 44 45 if ( sPastingType == 'Word' || sPastingType == 'Security' ) 46 { 47 if ( sPastingType == 'Security' ) 48 document.getElementById( 'xSecurityMsg' ).style.display = '' ; 49 44 50 var oFrame = document.getElementById('frmData') ; 45 51 oFrame.style.display = '' ; … … 53 59 { 54 60 document.getElementById('txtData').style.display = '' ; 61 } 62 63 if ( sPastingType != 'Word' ) 55 64 document.getElementById('oWordCommands').style.display = 'none' ; 56 }57 65 58 66 window.parent.SetOkButton( true ) ; … … 64 72 var sHtml ; 65 73 66 if ( window.parent.dialogArguments.CustomValue == 'Word' ) 74 var sPastingType = window.parent.dialogArguments.CustomValue ; 75 76 if ( sPastingType == 'Word' || sPastingType == 'Security' ) 67 77 { 68 78 var oFrame = document.getElementById('frmData') ; … … 74 84 oBody = oFrame.contentWindow.document.body ; 75 85 76 // If a plugin creates a FCK.CustomCleanWord function it will be called instead of the default one 77 if ( typeof( FCKTools.CustomCleanWord ) == 'function' ) 78 sHtml = FCK.CustomCleanWord( oBody, document.getElementById('chkRemoveFont').checked, document.getElementById('chkRemoveStyles').checked ) ; 86 if ( sPastingType == 'Word' ) 87 { 88 // If a plugin creates a FCK.CustomCleanWord function it will be called instead of the default one 89 if ( typeof( FCKTools.CustomCleanWord ) == 'function' ) 90 sHtml = FCK.CustomCleanWord( oBody, document.getElementById('chkRemoveFont').checked, document.getElementById('chkRemoveStyles').checked ) ; 91 else 92 sHtml = CleanWord( oBody, document.getElementById('chkRemoveFont').checked, document.getElementById('chkRemoveStyles').checked ) ; 93 } 79 94 else 80 sHtml = CleanWord( oBody, document.getElementById('chkRemoveFont').checked, document.getElementById('chkRemoveStyles').checked ) ; 81 95 sHtml = oBody.innerHTML ; 82 96 83 97 // Fix relative anchor URLs (IE automatically adds the current page URL). … … 218 232 219 233 </script> 234 220 235 </head> 221 236 <body style="overflow: hidden"> … … 223 238 <tr> 224 239 <td> 225 <span fcklang="DlgPasteMsg2">Please paste inside the following box using the keyboard 226 (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.</span> 227 <br /> 228 240 <div id="xSecurityMsg" style="display: none"> 241 <span fcklang="DlgPasteSec">Because of your browser security settings, 242 the editor is not able to access your clipboard data directly. You are required 243 to paste it again in this window.</span><br /> 244 245 </div> 246 <div> 247 <span fcklang="DlgPasteMsg2">Please paste inside the following box using the keyboard 248 (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.</span><br /> 249 250 </div> 229 251 </td> 230 252 </tr> -
FCKeditor/trunk/editor/lang/af.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "U browser se sekuriteit instelling behinder die byvoeg aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+V).",341 340 PasteErrorCut : "U browser se sekuriteit instelling behinder die uitsny aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+X).", 342 341 PasteErrorCopy : "U browser se sekuriteit instelling behinder die kopieerings aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Voeg asseblief die inhoud in die gegewe box by met sleutel kombenasie(<STRONG>Ctrl+V</STRONG>) en druk <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignoreer karakter soort defenisies", 349 349 DlgPasteRemoveStyles : "Verweider Styl defenisies", -
FCKeditor/trunk/editor/lang/ar.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "الإعدادات الأمنية للمتصفح الذي تستخدمه تمنع اللصق التلقائي. فضلاً إستخدم لوحة المفاتيح لفعل ذلك (Ctrl+V).",341 340 PasteErrorCut : "الإعدادات الأمنية للمتصفح الذي تستخدمه تمنع القص التلقائي. فضلاً إستخدم لوحة المفاتيح لفعل ذلك (Ctrl+X).", 342 341 PasteErrorCopy : "الإعدادات الأمنية للمتصفح الذي تستخدمه تمنع النسخ التلقائي. فضلاً إستخدم لوحة المفاتيح لفعل ذلك (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "الصق داخل الصندوق بإستخدام زرّي (<STRONG>Ctrl+V</STRONG>) في لوحة المفاتيح، ثم اضغط زر <STRONG>موافق</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "تجاهل تعريفات أسماء الخطوط", 349 349 DlgPasteRemoveStyles : "إزالة تعريفات الأنماط", -
FCKeditor/trunk/editor/lang/bg.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Настройките за сигурност на вашия бразуър не разрешават на редактора да изпълни вмъкването. За целта използвайте клавиатурата (Ctrl+V).",341 340 PasteErrorCut : "Настройките за сигурност на вашия бразуър не разрешават на редактора да изпълни изрязването. За целта използвайте клавиатурата (Ctrl+X).", 342 341 PasteErrorCopy : "Настройките за сигурност на вашия бразуър не разрешават на редактора да изпълни запаметяването. За целта използвайте клавиатурата (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Вмъкнете тук съдъжанието с клавиатуарата (<STRONG>Ctrl+V</STRONG>) и натиснете <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Игнорирай шрифтовите дефиниции", 349 349 DlgPasteRemoveStyles : "Изтрий стиловите дефиниции", -
FCKeditor/trunk/editor/lang/bn.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "আপনার ব্রাউজারের সুরক্ষা সেটিংস এডিটরকে অটোমেটিক পেস্ট করার অনুমতি দেয়নি। দয়া করে এই কাজের জন্য কিবোর্ড ব্যবহার করুন (Ctrl+V)।",341 340 PasteErrorCut : "আপনার ব্রাউজারের সুরক্ষা সেটিংস এডিটরকে অটোমেটিক কাট করার অনুমতি দেয়নি। দয়া করে এই কাজের জন্য কিবোর্ড ব্যবহার করুন (Ctrl+X)।", 342 341 PasteErrorCopy : "আপনার ব্রাউজারের সুরক্ষা সেটিংস এডিটরকে অটোমেটিক কপি করার অনুমতি দেয়নি। দয়া করে এই কাজের জন্য কিবোর্ড ব্যবহার করুন (Ctrl+C)।", … … 346 345 347 346 DlgPasteMsg2 : "অনুগ্রহ করে নীচের বাক্সে কিবোর্ড ব্যবহার করে (<STRONG>Ctrl+V</STRONG>) পেস্ট করুন এবং <STRONG>OK</STRONG> চাপ দিন", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "ফন্ট ফেস ডেফিনেশন ইগনোর করুন", 349 349 DlgPasteRemoveStyles : "স্টাইল ডেফিনেশন সরিয়ে দিন", -
FCKeditor/trunk/editor/lang/bs.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Sigurnosne postavke vašeg pretraživaèa ne dozvoljavaju operacije automatskog lijepljenja. Molimo koristite kraticu na tastaturi (Ctrl+V).",341 340 PasteErrorCut : "Sigurnosne postavke vašeg pretraživaèa ne dozvoljavaju operacije automatskog rezanja. Molimo koristite kraticu na tastaturi (Ctrl+X).", 342 341 PasteErrorCopy : "Sigurnosne postavke Vašeg pretraživaèa ne dozvoljavaju operacije automatskog kopiranja. Molimo koristite kraticu na tastaturi (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", //MISSING 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING 349 349 DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING -
FCKeditor/trunk/editor/lang/ca.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "La seguretat del vostre navegador no permet executar automàticament les operacions d'enganxat. Si us plau, utilitzeu el teclat (Ctrl+V).",341 340 PasteErrorCut : "La seguretat del vostre navegador no permet executar automàticament les operacions de retallar. Si us plau, utilitzeu el teclat (Ctrl+X).", 342 341 PasteErrorCopy : "La seguretat del vostre navegador no permet executar automàticament les operacions de copiar. Si us plau, utilitzeu el teclat (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Si us plau, enganxeu dins del següent camp utilitzant el teclat (<STRONG>Ctrl+V</STRONG>) i premeu <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignora definicions de font", 349 349 DlgPasteRemoveStyles : "Elimina definicions d'estil", -
FCKeditor/trunk/editor/lang/cs.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Bezpečnostní nastavení Vašeho prohlížeče nedovolují editoru spustit funkci pro vložení textu ze schránky. Prosím vložte text ze schránky pomocí klávesnice (Ctrl+V).",341 340 PasteErrorCut : "Bezpečnostní nastavení Vašeho prohlížeče nedovolují editoru spustit funkci pro vyjmutí zvoleného textu do schránky. Prosím vyjměte zvolený text do schránky pomocí klávesnice (Ctrl+X).", 342 341 PasteErrorCopy : "Bezpečnostní nastavení Vašeho prohlížeče nedovolují editoru spustit funkci pro kopírování zvoleného textu do schránky. Prosím zkopírujte zvolený text do schránky pomocí klávesnice (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Do následujícího pole vložte požadovaný obsah pomocí klávesnice (<STRONG>Ctrl+V</STRONG>) a stiskněte <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignorovat písmo", 349 349 DlgPasteRemoveStyles : "Odstranit styly", -
FCKeditor/trunk/editor/lang/da.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Din browsers sikkerhedsindstillinger tillader ikke editoren at indsætte tekst automatisk!<br>Brug i stedet tastaturet til at indsætte teksten (Ctrl+V).",341 340 PasteErrorCut : "Din browsers sikkerhedsindstillinger tillader ikke editoren at klippe tekst automatisk!<br>Brug i stedet tastaturet til at klippe teksten (Ctrl+X).", 342 341 PasteErrorCopy : "Din browsers sikkerhedsindstillinger tillader ikke editoren at kopiere tekst automatisk!<br>Brug i stedet tastaturet til at kopiere teksten (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Indsæt i feltet herunder (<STRONG>Ctrl+V</STRONG>) og klik <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignorer font definitioner", 349 349 DlgPasteRemoveStyles : "Ignorer typografi", -
FCKeditor/trunk/editor/lang/de.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch einzufügen. Bitte benutzen Sie die System-Zwischenablage über STRG-C (kopieren) und STRG-V (einfügen).",341 340 PasteErrorCut : "Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch auszuschneiden. Bitte benutzen Sie die System-Zwischenablage über STRG-X (ausschneiden) und STRG-V (einfügen).", 342 341 PasteErrorCopy : "Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch kopieren. Bitte benutzen Sie die System-Zwischenablage über STRG-C (kopieren).", … … 346 345 347 346 DlgPasteMsg2 : "Bitte fügen Sie den Text in der folgenden Box über die Tastatur (mit <STRONG>Ctrl+V</STRONG>) ein und bestätigen Sie mit <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignoriere Schriftart-Definitionen", 349 349 DlgPasteRemoveStyles : "Entferne Style-Definitionen", -
FCKeditor/trunk/editor/lang/el.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Οι ρυθμίσεις ασφαλείας του φυλλομετρητή σας δεν επιτρέπουν την επιλεγμένη εργασία επικόλλησης. Χρησιμοποιείστε το πληκτρολόγιο (Ctrl+V).",341 340 PasteErrorCut : "Οι ρυθμίσεις ασφαλείας του φυλλομετρητή σας δεν επιτρέπουν την επιλεγμένη εργασία αποκοπής. Χρησιμοποιείστε το πληκτρολόγιο (Ctrl+X).", 342 341 PasteErrorCopy : "Οι ρυθμίσεις ασφαλείας του φυλλομετρητή σας δεν επιτρέπουν την επιλεγμένη εργασία αντιγραφής. Χρησιμοποιείστε το πληκτρολόγιο (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Παρακαλώ επικολήστε στο ακόλουθο κουτί χρησιμοποιόντας το πληκτρολόγιο (<STRONG>Ctrl+V</STRONG>) και πατήστε <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Αγνόηση προδιαγραφών γραμματοσειράς", 349 349 DlgPasteRemoveStyles : "Αφαίρεση προδιαγραφών στύλ", -
FCKeditor/trunk/editor/lang/en-au.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Your browser security settings don't permit the editor to automatically execute pasting operations. Please use the keyboard for that (Ctrl+V).",341 340 PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).", 342 341 PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<STRONG>Ctrl+V</STRONG>) and hit <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignore Font Face definitions", 349 349 DlgPasteRemoveStyles : "Remove Styles definitions", -
FCKeditor/trunk/editor/lang/en-ca.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Your browser security settings don't permit the editor to automatically execute pasting operations. Please use the keyboard for that (Ctrl+V).",341 340 PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).", 342 341 PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<STRONG>Ctrl+V</STRONG>) and hit <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignore Font Face definitions", 349 349 DlgPasteRemoveStyles : "Remove Styles definitions", -
FCKeditor/trunk/editor/lang/en.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Your browser security settings don't permit the editor to automatically execute pasting operations. Please use the keyboard for that (Ctrl+V).",341 340 PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).", 342 341 PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", 347 DlgPasteSec : "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.", 348 348 DlgPasteIgnoreFont : "Ignore Font Face definitions", 349 349 DlgPasteRemoveStyles : "Remove Styles definitions", -
FCKeditor/trunk/editor/lang/en-uk.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Your browser security settings don't permit the editor to automatically execute pasting operations. Please use the keyboard for that (Ctrl+V).",341 340 PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).", 342 341 PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<STRONG>Ctrl+V</STRONG>) and hit <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignore Font Face definitions", 349 349 DlgPasteRemoveStyles : "Remove Styles definitions", -
FCKeditor/trunk/editor/lang/eo.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras intergluajn operaciojn. Bonvolu uzi la klavaron por tio (ctrl-V).",341 340 PasteErrorCut : "La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras eltondajn operaciojn. Bonvolu uzi la klavaron por tio (ctrl-X).", 342 341 PasteErrorCopy : "La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras kopiajn operaciojn. Bonvolu uzi la klavaron por tio (ctrl-C).", … … 346 345 347 346 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", //MISSING 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING 349 349 DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING -
FCKeditor/trunk/editor/lang/es.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de pegado. Por favor use el teclado (Ctrl+V).",341 340 PasteErrorCut : "La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de cortado. Por favor use el teclado (Ctrl+X).", 342 341 PasteErrorCopy : "La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de copiado. Por favor use el teclado (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Por favor pegue dentro del cuadro utilizando el teclado (<STRONG>Ctrl+V</STRONG>); luego presione <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignorar definiciones de fuentes", 349 349 DlgPasteRemoveStyles : "Remover definiciones de estilo", -
FCKeditor/trunk/editor/lang/et.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Sinu interneti sirvija turvaseaded ei luba redaktoril automaatselt kleepida. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl+V).",341 340 PasteErrorCut : "Sinu interneti sirvija turvaseaded ei luba redaktoril automaatselt lõigata. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl+X).", 342 341 PasteErrorCopy : "Sinu interneti sirvija turvaseaded ei luba redaktoril automaatselt kopeerida. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Palun kleebi järgnevasse kasti kasutades klaviatuuri klahvikombinatsiooni (<STRONG>Ctrl+V</STRONG>) ja vajuta seejärel <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignoreeri kirja definitsioone", 349 349 DlgPasteRemoveStyles : "Eemalda stiilide definitsioonid", -
FCKeditor/trunk/editor/lang/eu.js
r132 r174 339 339 340 340 // Paste Operations / Dialog 341 PasteErrorPaste : "Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki itsastea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl+V).",342 341 PasteErrorCut : "Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki moztea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl+X).", 343 342 PasteErrorCopy : "Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki kopiatzea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl+C).", … … 347 346 348 347 DlgPasteMsg2 : "Mesedez teklatua erabilita (<STRONG>Ctrl+V</STRONG>) ondorego eremuan testua itsatsi eta <STRONG>OK</STRONG> sakatu.", 348 DlgPasteSec : "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.", //MISSING 349 349 DlgPasteIgnoreFont : "Letra Motaren definizioa ezikusi", 350 350 DlgPasteRemoveStyles : "Estilo definizioak kendu", -
FCKeditor/trunk/editor/lang/fa.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "تنظیمات امنیتی مرورگر شما اجازه نمیدهد که ویرایشگر به طور خودکار عملکردهای چسباندن را انجام دهد. لطفا با دکمههای صفحهکلید این کار را انجام دهید (Ctrl+V).",341 340 PasteErrorCut : "تنظیمات امنیتی مرورگر شما اجازه نمیدهد که ویرایشگر به طور خودکار عملکردهای برش را انجام دهد. لطفا با دکمههای صفحهکلید این کار را انجام دهید (Ctrl+X).", 342 341 PasteErrorCopy : "تنظیمات امنیتی مرورگر شما اجازه نمیدهد که ویرایشگر به طور خودکار عملکردهای کپیکردن را انجام دهد. لطفا با دکمههای صفحهکلید این کار را انجام دهید (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "لطفا متن را با کلیدهای (<STRONG>Ctrl+V</STRONG>) در این جعبهٴ متنی بچسبانید و <STRONG>پذیرش</STRONG> را بزنید.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "چشمپوشی از تعاریف نوع قلم", 349 349 DlgPasteRemoveStyles : "چشمپوشی از تعاریف سبک (style)", -
FCKeditor/trunk/editor/lang/fi.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Selaimesi turva-asetukset eivät salli editorin toteuttaa liittämistä. Käytä näppäimistöä liittämiseen (Ctrl+V).",341 340 PasteErrorCut : "Selaimesi turva-asetukset eivät salli editorin toteuttaa leikkaamista. Käytä näppäimistöä leikkaamiseen (Ctrl+X).", 342 341 PasteErrorCopy : "Selaimesi turva-asetukset eivät salli editorin toteuttaa kopioimista. Käytä näppäimistöä kopioimiseen (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Liitä painamalla (<STRONG>Ctrl+V</STRONG>) ja painamalla <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Jätä huomioimatta fonttimääritykset", 349 349 DlgPasteRemoveStyles : "Poista tyylimääritykset", -
FCKeditor/trunk/editor/lang/fo.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Trygdaruppseting alnótskagans forðar tekstviðgeranum í at seta tekstin inn. Vinarliga nýt knappaborðið til at seta tekstin inn (CTRL+V).",341 340 PasteErrorCut : "Trygdaruppseting alnótskagans forðar tekstviðgeranum í at kvetta tekstin. vinarliga nýt knappaborðið til at kvetta tekstin (CTRL+X).", 342 341 PasteErrorCopy : "Trygdaruppseting alnótskagans forðar tekstviðgeranum í at avrita tekstin. Vinarliga nýt knappaborðið til at avrita tekstin (CTRL+C).", … … 346 345 347 346 DlgPasteMsg2 : "Vinarliga koyr tekstin í hendan rútin við knappaborðinum (<strong>CTRL+V</strong>) og klikk á <strong>Góðtak</strong>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Forfjóna Font definitiónirnar", 349 349 DlgPasteRemoveStyles : "Strika Styles definitiónir", -
FCKeditor/trunk/editor/lang/fr.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de coller automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+V).",341 340 PasteErrorCut : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de couper automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+X).", 342 341 PasteErrorCopy : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de copier automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Veuillez coller dans la zone ci-dessous en utilisant le clavier (<STRONG>Ctrl+V</STRONG>) et cliquez sur <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignorer les polices de caractères", 349 349 DlgPasteRemoveStyles : "Supprimer les styles", -
FCKeditor/trunk/editor/lang/gl.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Os axustes de seguridade do seu navegador non permiten que o editor realice automáticamente as tarefas de pegado. Por favor, use o teclado para iso (Ctrl+V).",341 340 PasteErrorCut : "Os axustes de seguridade do seu navegador non permiten que o editor realice automáticamente as tarefas de corte. Por favor, use o teclado para iso (Ctrl+X).", 342 341 PasteErrorCopy : "Os axustes de seguridade do seu navegador non permiten que o editor realice automáticamente as tarefas de copia. Por favor, use o teclado para iso (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Por favor, pegue dentro do seguinte cadro usando o teclado (<STRONG>Ctrl+V</STRONG>) e pulse <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignorar as definicións de Tipografía", 349 349 DlgPasteRemoveStyles : "Eliminar as definicións de Estilos", -
FCKeditor/trunk/editor/lang/he.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "הגדרות האבטחה בדפדפן שלך לא מאפשרות לעורך לבצע פעולות הדבקה אוטומטיות. יש להשתמש במקלדת לשם כך (Ctrl+V).",341 340 PasteErrorCut : "הגדרות האבטחה בדפדפן שלך לא מאפשרות לעורך לבצע פעולות גזירה אוטומטיות. יש להשתמש במקלדת לשם כך (Ctrl+X).", 342 341 PasteErrorCopy : "הגדרות האבטחה בדפדפן שלך לא מאפשרות לעורך לבצע פעולות העתקה אוטומטיות. יש להשתמש במקלדת לשם כך (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "אנא הדבק בתוך הקופסה באמצעות (<STRONG>Ctrl+V</STRONG>) ולחץ על <STRONG>אישור</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "התעלם מהגדרות סוג פונט", 349 349 DlgPasteRemoveStyles : "הסר הגדרות סגנון", -
FCKeditor/trunk/editor/lang/hi.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "आपके ब्राउज़र की सुरक्षा सॅटिन्ग्स ने पेस्ट करने की अनुमति नहीं प्रदान की है। (Ctrl+V) का प्रयोग करें।",341 340 PasteErrorCut : "आपके ब्राउज़र की सुरक्षा सॅटिन्ग्स ने कट करने की अनुमति नहीं प्रदान की है। (Ctrl+X) का प्रयोग करें।", 342 341 PasteErrorCopy : "आपके ब्राआउज़र की सुरक्षा सॅटिन्ग्स ने कॉपी करने की अनुमति नहीं प्रदान की है। (Ctrl+C) का प्रयोग करें।", … … 346 345 347 346 DlgPasteMsg2 : "Ctrl+V का प्रयोग करके पेस्ट करें और ठीक है करें.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "फ़ॉन्ट परिभाषा निकालें", 349 349 DlgPasteRemoveStyles : "स्टाइल परिभाषा निकालें", -
FCKeditor/trunk/editor/lang/hr.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Sigurnosne postavke Vašeg pretraživača ne dozvoljavaju operacije automatskog ljepljenja. Molimo koristite kraticu na tipkovnici (Ctrl+V).",341 340 PasteErrorCut : "Sigurnosne postavke Vašeg pretraživača ne dozvoljavaju operacije automatskog izrezivanja. Molimo koristite kraticu na tipkovnici (Ctrl+X).", 342 341 PasteErrorCopy : "Sigurnosne postavke Vašeg pretraživača ne dozvoljavaju operacije automatskog kopiranja. Molimo koristite kraticu na tipkovnici (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Molimo zaljepite unutar doljnjeg okvira koristeći tipkovnicu (<STRONG>Ctrl+V</STRONG>) i kliknite <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Zanemari definiciju vrste fonta", 349 349 DlgPasteRemoveStyles : "Ukloni definicije stilova", -
FCKeditor/trunk/editor/lang/hu.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "A böngésző biztonsági beállításai nem engedélyezik a szerkesztőnek, hogy végrehajtsa a beillesztés műveletet. Használja az alábbi billentyűkombinációt (Ctrl+V).",341 340 PasteErrorCut : "A böngésző biztonsági beállításai nem engedélyezik a szerkesztőnek, hogy végrehajtsa a kivágás műveletet. Használja az alábbi billentyűkombinációt (Ctrl+X).", 342 341 PasteErrorCopy : "A böngésző biztonsági beállításai nem engedélyezik a szerkesztőnek, hogy végrehajtsa a másolás műveletet. Használja az alábbi billentyűkombinációt (Ctrl+X).", … … 346 345 347 346 DlgPasteMsg2 : "Másolja be az alábbi mezőbe a <STRONG>Ctrl+V</STRONG> billentyűk lenyomásával, majd nyomjon <STRONG>Rendben</STRONG>-t.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Betű formázások megszüntetése", 349 349 DlgPasteRemoveStyles : "Stílusok eltávolítása", -
FCKeditor/trunk/editor/lang/it.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Le impostazioni di sicurezza del browser non permettono di incollare automaticamente il testo. Usa la tastiera (Ctrl+V).",341 340 PasteErrorCut : "Le impostazioni di sicurezza del browser non permettono di tagliare automaticamente il testo. Usa la tastiera (Ctrl+X).", 342 341 PasteErrorCopy : "Le impostazioni di sicurezza del browser non permettono di copiare automaticamente il testo. Usa la tastiera (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Incolla il testo all'interno dell'area sottostante usando la scorciatoia di tastiere (<STRONG>Ctrl+V</STRONG>) e premi <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignora le definizioni di Font", 349 349 DlgPasteRemoveStyles : "Rimuovi le definizioni di Stile", -
FCKeditor/trunk/editor/lang/ja.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "ブラウザーのセキュリティ設定によりエディタの貼り付け操作が自動で実行することができません。実行するには手動でキーボードの(Ctrl+V)を使用してください。",341 340 PasteErrorCut : "ブラウザーのセキュリティ設定によりエディタの切り取り操作が自動で実行することができません。実行するには手動でキーボードの(Ctrl+X)を使用してください。", 342 341 PasteErrorCopy : "ブラウザーのセキュリティ設定によりエディタのコピー操作が自動で実行することができません。実行するには手動でキーボードの(Ctrl+C)を使用してください。", … … 346 345 347 346 DlgPasteMsg2 : "キーボード(<STRONG>Ctrl+V</STRONG>)を使用して、次の入力エリア内で貼って、<STRONG>OK</STRONG>を押してください。", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "FontタグのFace属性を無視します。", 349 349 DlgPasteRemoveStyles : "スタイル定義を削除します。", -
FCKeditor/trunk/editor/lang/km.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Your browser security settings don't permit the editor to automatically execute pasting operations. Please use the keyboard for that (Ctrl+V).", //MISSING341 340 PasteErrorCut : "ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះមិនអាចធ្វើកម្មវិធីតាក់តែងអត្ថបទ កាត់អត្ថបទយកដោយស្វ័យប្រវត្តបានឡើយ ។ សូមប្រើប្រាស់បន្សំ ឃីដូចនេះ (Ctrl+X) ។", 342 341 PasteErrorCopy : "ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះមិនអាចធ្វើកម្មវិធីតាក់តែងអត្ថបទ ចំលងអត្ថបទយកដោយស្វ័យប្រវត្តបានឡើយ ។ សូមប្រើប្រាស់បន្សំ ឃីដូចនេះ (Ctrl+C)។", … … 346 345 347 346 DlgPasteMsg2 : "សូមចំលងអត្ថបទទៅដាក់ក្នុងប្រអប់ដូចខាងក្រោមដោយប្រើប្រាស់ ឃី (<STRONG>Ctrl+V</STRONG>) ហើយចុច <STRONG>OK</STRONG> ។", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "មិនគិតអំពីប្រភេទពុម្ភអក្សរ", 349 349 DlgPasteRemoveStyles : "លប់ម៉ូត", -
FCKeditor/trunk/editor/lang/ko.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "브라우저의 보안설정때문에 붙여넣기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요. (Ctrl+V).",341 340 PasteErrorCut : "브라우저의 보안설정때문에 잘라내기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요. (Ctrl+X).", 342 341 PasteErrorCopy : "브라우저의 보안설정때문에 복사하기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요. (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "키보드의 (<STRONG>Ctrl+V</STRONG>) 를 이용해서 상자안에 붙여넣고 <STRONG>OK</STRONG> 를 누르세요.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "폰트 설정 무시", 349 349 DlgPasteRemoveStyles : "스타일 정의 제거", -
FCKeditor/trunk/editor/lang/lt.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Jūsų naršyklės saugumo nustatymai neleidžia redaktoriui automatiškai įvykdyti įdėjimo operacijų. Tam prašome naudoti klaviatūrą (Ctrl+V).",341 340 PasteErrorCut : "Jūsų naršyklės saugumo nustatymai neleidžia redaktoriui automatiškai įvykdyti iškirpimo operacijų. Tam prašome naudoti klaviatūrą (Ctrl+X).", 342 341 PasteErrorCopy : "Jūsų naršyklės saugumo nustatymai neleidžia redaktoriui automatiškai įvykdyti kopijavimo operacijų. Tam prašome naudoti klaviatūrą (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Žemiau esančiame įvedimo lauke įdėkite tekstą, naudodami klaviatūrą (<STRONG>Ctrl+V</STRONG>) ir spūstelkite mygtuką <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignoruoti šriftų nustatymus", 349 349 DlgPasteRemoveStyles : "Pašalinti stilių nustatymus", -
FCKeditor/trunk/editor/lang/lv.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Jūsu pārlūkprogrammas drošības iestatījumi nepieļauj editoram automātiski veikt ievietošanas darbību. Lūdzu, izmantojiet (Ctrl+V), lai veiktu šo darbību.",341 340 PasteErrorCut : "Jūsu pārlūkprogrammas drošības iestatījumi nepieļauj editoram automātiski veikt izgriešanas darbību. Lūdzu, izmantojiet (Ctrl+X, lai veiktu šo darbību.", 342 341 PasteErrorCopy : "Jūsu pārlūkprogrammas drošības iestatījumi nepieļauj editoram automātiski veikt kopēšanas darbību. Lūdzu, izmantojiet (Ctrl+C), lai veiktu šo darbību.", … … 346 345 347 346 DlgPasteMsg2 : "Lūdzu, ievietojiet tekstu šajā laukumā, izmantojot klaviatūru (<STRONG>Ctrl+V</STRONG>) un apstipriniet ar <STRONG>Darīts!</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignorēt iepriekš norādītos fontus", 349 349 DlgPasteRemoveStyles : "Noņemt norādītos stilus", -
FCKeditor/trunk/editor/lang/mn.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Таны browser-ын хамгаалалтын тохиргоо editor-д автоматаар буулгах үйлдэлийг зөвшөөрөхгүй байна. (Ctrl+V) товчны хослолыг ашиглана уу.",341 340 PasteErrorCut : "Таны browser-ын хамгаалалтын тохиргоо editor-д автоматаар хайчлах үйлдэлийг зөвшөөрөхгүй байна. (Ctrl+X) товчны хослолыг ашиглана уу.", 342 341 PasteErrorCopy : "Таны browser-ын хамгаалалтын тохиргоо editor-д автоматаар хуулах үйлдэлийг зөвшөөрөхгүй байна. (Ctrl+C) товчны хослолыг ашиглана уу.", … … 346 345 347 346 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", //MISSING 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING 349 349 DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING -
FCKeditor/trunk/editor/lang/ms.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Keselamatan perisian browser anda tidak membenarkan operasi tampalan text/imej. Sila gunakan papan kekunci (Ctrl+V).",341 340 PasteErrorCut : "Keselamatan perisian browser anda tidak membenarkan operasi suntingan text/imej. Sila gunakan papan kekunci (Ctrl+X).", 342 341 PasteErrorCopy : "Keselamatan perisian browser anda tidak membenarkan operasi salinan text/imej. Sila gunakan papan kekunci (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", //MISSING 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING 349 349 DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING -
FCKeditor/trunk/editor/lang/nb.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk innliming av tekst. Vennligst brukt snareveien (Ctrl+V).",341 340 PasteErrorCut : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk klipping av tekst. Vennligst brukt snareveien (Ctrl+X).", 342 341 PasteErrorCopy : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk kopiering av tekst. Vennligst brukt snareveien (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Vennligst lim inn i den følgende boksen med tastaturet (<STRONG>Ctrl+V</STRONG>) og trykk <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Fjern skrifttyper", 349 349 DlgPasteRemoveStyles : "Fjern stildefinisjoner", -
FCKeditor/trunk/editor/lang/nl.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "De beveiligingsinstelling van de browser verhinderen het automatisch plakken. Gebruik de sneltoets Ctrl+V van het toetsenbord.",341 340 PasteErrorCut : "De beveiligingsinstelling van de browser verhinderen het automatisch knippen. Gebruik de sneltoets Ctrl+X van het toetsenbord.", 342 341 PasteErrorCopy : "De beveiligingsinstelling van de browser verhinderen het automatisch kopiëren. Gebruik de sneltoets Ctrl+C van het toetsenbord.", … … 346 345 347 346 DlgPasteMsg2 : "Plak de tekst in het volgende vak gebruik makend van je toetstenbord (<STRONG>Ctrl+V</STRONG>) en klik op <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Negeer \"Font Face\"-definities", 349 349 DlgPasteRemoveStyles : "Verwijder \"Style\"-definities", -
FCKeditor/trunk/editor/lang/no.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk innliming av tekst. Vennligst brukt snareveien (Ctrl+V).",341 340 PasteErrorCut : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk klipping av tekst. Vennligst brukt snareveien (Ctrl+X).", 342 341 PasteErrorCopy : "Din nettlesers sikkerhetsinstillinger tillater ikke automatisk kopiering av tekst. Vennligst brukt snareveien (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Vennligst lim inn i den følgende boksen med tastaturet (<STRONG>Ctrl+V</STRONG>) og trykk <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Fjern skrifttyper", 349 349 DlgPasteRemoveStyles : "Fjern stildefinisjoner", -
FCKeditor/trunk/editor/lang/pl.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Ustawienia bezpieczeństwa Twojej przeglądarki nie pozwalają na automatyczne wklejanie tekstu. Użyj skrótu klawiszowego Ctrl+V.",341 340 PasteErrorCut : "Ustawienia bezpieczeństwa Twojej przeglądarki nie pozwalają na automatyczne wycinanie tekstu. Użyj skrótu klawiszowego Ctrl+X.", 342 341 PasteErrorCopy : "Ustawienia bezpieczeństwa Twojej przeglądarki nie pozwalają na automatyczne kopiowanie tekstu. Użyj skrótu klawiszowego Ctrl+C.", … … 346 345 347 346 DlgPasteMsg2 : "Proszę wkleić w poniższym polu używając klawiaturowego skrótu (<STRONG>Ctrl+V</STRONG>) i kliknąć <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignoruj definicje 'Font Face'", 349 349 DlgPasteRemoveStyles : "Usuń definicje Stylów", -
FCKeditor/trunk/editor/lang/pt-br.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "As configurações de segurança do seu navegador não permitem que o editor execute operações de colar automaticamente. Por favor, utilize o teclado para colar (Ctrl+V).",341 340 PasteErrorCut : "As configurações de segurança do seu navegador não permitem que o editor execute operações de recortar automaticamente. Por favor, utilize o teclado para recortar (Ctrl+X).", 342 341 PasteErrorCopy : "As configurações de segurança do seu navegador não permitem que o editor execute operações de copiar automaticamente. Por favor, utilize o teclado para copiar (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Transfira o link usado no box usando o teclado com (<STRONG>Ctrl+V</STRONG>) e <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignorar definições de fonte", 349 349 DlgPasteRemoveStyles : "Remove definições de estilo", -
FCKeditor/trunk/editor/lang/pt.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "A configuração de segurança do navegador não permite a execução automática de operações de colar. Por favor use o teclado (Ctrl+V).",341 340 PasteErrorCut : "A configuração de segurança do navegador não permite a execução automática de operações de cortar. Por favor use o teclado (Ctrl+X).", 342 341 PasteErrorCopy : "A configuração de segurança do navegador não permite a execução automática de operações de copiar. Por favor use o teclado (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Por favor, cole dentro da seguinte caixa usando o teclado (<STRONG>Ctrl+V</STRONG>) e prima <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignorar da definições do Tipo de Letra ", 349 349 DlgPasteRemoveStyles : "Remover as definições de Estilos", -
FCKeditor/trunk/editor/lang/ro.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Setările de securitate ale navigatorului (browser) pe care îl folosiţi nu permit editorului să execute automat operaţiunea de adăugare. Vă rugăm folosiţi tastatura (Ctrl+V).",341 340 PasteErrorCut : "Setările de securitate ale navigatorului (browser) pe care îl folosiţi nu permit editorului să execute automat operaţiunea de tăiere. Vă rugăm folosiţi tastatura (Ctrl+X).", 342 341 PasteErrorCopy : "Setările de securitate ale navigatorului (browser) pe care îl folosiţi nu permit editorului să execute automat operaţiunea de copiere. Vă rugăm folosiţi tastatura (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Vă rugăm adăugaţi în căsuţa următoare folosind tastatura (<STRONG>Ctrl+V</STRONG>) şi apăsaţi <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignoră definiţiile Font Face", 349 349 DlgPasteRemoveStyles : "Şterge definiţiile stilurilor", -
FCKeditor/trunk/editor/lang/ru.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции вставки. Пожалуйста используйте клавиатуру для этого (Ctrl+V).",341 340 PasteErrorCut : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции вырезания. Пожалуйста используйте клавиатуру для этого (Ctrl+X).", 342 341 PasteErrorCopy : "Настройки безопасности вашего браузера не позволяют редактору автоматически выполнять операции копирования. Пожалуйста используйте клавиатуру для этого (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Пожалуйста вставьте текст в прямоугольник используя сочетание клавиш (<STRONG>Ctrl+V</STRONG>) и нажмите <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Игнорировать определения гарнитуры", 349 349 DlgPasteRemoveStyles : "Убрать определения стилей", -
FCKeditor/trunk/editor/lang/sk.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Bezpečnostné nastavenie Vášho prehliadača nedovoľujú editoru spustiť funkciu pre vloženie textu zo schránky. Prosím vložte text zo schránky pomocou klávesnice (Ctrl+V).",341 340 PasteErrorCut : "Bezpečnostné nastavenie Vášho prehliadača nedovoľujú editoru spustiť funkciu pre vystrihnutie zvoleného textu do schránky. Prosím vystrihnite zvolený text do schránky pomocou klávesnice (Ctrl+X).", 342 341 PasteErrorCopy : "Bezpečnostné nastavenie Vášho prehliadača nedovoľujú editoru spustiť funkciu pre kopírovanie zvoleného textu do schránky. Prosím skopírujte zvolený text do schránky pomocou klávesnice (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Prosím vložte nasledovný rámček použitím klávesnice (<STRONG>Ctrl+V</STRONG>) a stlačte <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignorovať nastavenia typu písma", 349 349 DlgPasteRemoveStyles : "Odstrániť formátovanie", -
FCKeditor/trunk/editor/lang/sl.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Varnostne nastavitve brskalnika ne dopuščajo samodejnega lepljenja. Uporabite kombinacijo tipk na tipkovnici (Ctrl+V).",341 340 PasteErrorCut : "Varnostne nastavitve brskalnika ne dopuščajo samodejnega izrezovanja. Uporabite kombinacijo tipk na tipkovnici (Ctrl+X).", 342 341 PasteErrorCopy : "Varnostne nastavitve brskalnika ne dopuščajo samodejnega kopiranja. Uporabite kombinacijo tipk na tipkovnici (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Prosim prilepite v sleči okvir s pomočjo tipkovnice (<STRONG>Ctrl+V</STRONG>) in pritisnite <STRONG>V redu</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Prezri obliko pisave", 349 349 DlgPasteRemoveStyles : "Odstrani nastavitve stila", -
FCKeditor/trunk/editor/lang/sr.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Сигурносна подешавања Вашег претраживача не дозвољавају операције аутоматског лепљења текста. Молимо Вас да користите пречицу са тастатуре (Ctrl+V).",341 340 PasteErrorCut : "Сигурносна подешавања Вашег претраживача не дозвољавају операције аутоматског исецања текста. Молимо Вас да користите пречицу са тастатуре (Ctrl+X).", 342 341 PasteErrorCopy : "Сигурносна подешавања Вашег претраживача не дозвољавају операције аутоматског копирања текста. Молимо Вас да користите пречицу са тастатуре (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Молимо Вас да залепите унутар доње површине користећи тастатурну пречицу (<STRONG>Ctrl+V</STRONG>) и да притиснете <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Игнориши Font Face дефиниције", 349 349 DlgPasteRemoveStyles : "Уклони дефиниције стилова", -
FCKeditor/trunk/editor/lang/sr-latn.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Sigurnosna podešavanja Vašeg pretraživača ne dozvoljavaju operacije automatskog lepljenja teksta. Molimo Vas da koristite prečicu sa tastature (Ctrl+V).",341 340 PasteErrorCut : "Sigurnosna podešavanja Vašeg pretraživača ne dozvoljavaju operacije automatskog isecanja teksta. Molimo Vas da koristite prečicu sa tastature (Ctrl+X).", 342 341 PasteErrorCopy : "Sigurnosna podešavanja Vašeg pretraživača ne dozvoljavaju operacije automatskog kopiranja teksta. Molimo Vas da koristite prečicu sa tastature (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Molimo Vas da zalepite unutar donje povrine koristeći tastaturnu prečicu (<STRONG>Ctrl+V</STRONG>) i da pritisnete <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignoriši definicije fontova", 349 349 DlgPasteRemoveStyles : "Ukloni definicije stilova", -
FCKeditor/trunk/editor/lang/sv.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Säkerhetsinställningar i Er webläsare tillåter inte åtgården Klistra in. Använd (Ctrl+V) istället.",341 340 PasteErrorCut : "Säkerhetsinställningar i Er webläsare tillåter inte åtgården Klipp ut. Använd (Ctrl+X) istället.", 342 341 PasteErrorCopy : "Säkerhetsinställningar i Er webläsare tillåter inte åtgården Kopiera. Använd (Ctrl+C) istället", … … 346 345 347 346 DlgPasteMsg2 : "Var god och klistra in Er text i rutan nedan genom att använda (<STRONG>Ctrl+V</STRONG>) klicka sen på <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignorera typsnittsdefinitioner", 349 349 DlgPasteRemoveStyles : "Radera Stildefinitioner", -
FCKeditor/trunk/editor/lang/th.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "ไม่สามารถวางข้อความที่สำเนามาได้เนื่องจากการกำหนดค่าระดับความปลอดภัย. กรุณาใช้ปุ่มลัดเพื่อวางข้อความแทน (กดปุ่ม Ctrl และตัว V พร้อมกัน).",341 340 PasteErrorCut : "ไม่สามารถตัดข้อความที่เลือกไว้ได้เนื่องจากการกำหนดค่าระดับความปลอดภัย. กรุณาใช้ปุ่มลัดเพื่อวางข้อความแทน (กดปุ่ม Ctrl และตัว X พร้อมกัน).", 342 341 PasteErrorCopy : "ไม่สามารถสำเนาข้อความที่เลือกไว้ได้เนื่องจากการกำหนดค่าระดับความปลอดภัย. กรุณาใช้ปุ่มลัดเพื่อวางข้อความแทน (กดปุ่ม Ctrl และตัว C พร้อมกัน).", … … 346 345 347 346 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", //MISSING 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING 349 349 DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING -
FCKeditor/trunk/editor/lang/_translationstatus.txt
r132 r174 22 22 */ 23 23 24 af.js Found: 40 2 Missing: 025 ar.js Found: 40 2 Missing: 026 bg.js Found: 37 9 Missing: 2327 bn.js Found: 38 7 Missing: 1528 bs.js Found: 23 1 Missing: 17129 ca.js Found: 40 2 Missing: 030 cs.js Found: 38 7 Missing: 1531 da.js Found: 38 7 Missing: 1532 de.js Found: 40 2 Missing: 033 el.js Found: 40 2 Missing: 034 en-au.js Found: 40 2 Missing: 035 en-ca.js Found: 40 2 Missing: 036 en-uk.js Found: 40 2 Missing: 037 eo.js Found: 35 1 Missing: 5138 es.js Found: 38 7 Missing: 1539 et.js Found: 38 7 Missing: 1540 eu.js Found: 38 7 Missing: 1541 fa.js Found: 40 2 Missing: 042 fi.js Found: 38 7 Missing: 1543 fo.js Found: 40 2 Missing: 044 fr.js Found: 40 2 Missing: 045 gl.js Found: 38 7 Missing: 1546 he.js Found: 40 2 Missing: 047 hi.js Found: 40 2 Missing: 048 hr.js Found: 40 2 Missing: 049 hu.js Found: 40 2 Missing: 050 it.js Found: 40 2 Missing: 051 ja.js Found: 40 2 Missing: 024 af.js Found: 401 Missing: 1 25 ar.js Found: 401 Missing: 1 26 bg.js Found: 378 Missing: 24 27 bn.js Found: 386 Missing: 16 28 bs.js Found: 230 Missing: 172 29 ca.js Found: 401 Missing: 1 30 cs.js Found: 386 Missing: 16 31 da.js Found: 386 Missing: 16 32 de.js Found: 401 Missing: 1 33 el.js Found: 401 Missing: 1 34 en-au.js Found: 401 Missing: 1 35 en-ca.js Found: 401 Missing: 1 36 en-uk.js Found: 401 Missing: 1 37 eo.js Found: 350 Missing: 52 38 es.js Found: 386 Missing: 16 39 et.js Found: 386 Missing: 16 40 eu.js Found: 386 Missing: 16 41 fa.js Found: 401 Missing: 1 42 fi.js Found: 386 Missing: 16 43 fo.js Found: 401 Missing: 1 44 fr.js Found: 401 Missing: 1 45 gl.js Found: 386 Missing: 16 46 he.js Found: 401 Missing: 1 47 hi.js Found: 401 Missing: 1 48 hr.js Found: 401 Missing: 1 49 hu.js Found: 401 Missing: 1 50 it.js Found: 401 Missing: 1 51 ja.js Found: 401 Missing: 1 52 52 km.js Found: 376 Missing: 26 53 ko.js Found: 37 4 Missing: 2854 lt.js Found: 38 2 Missing: 2055 lv.js Found: 38 7 Missing: 1556 mn.js Found: 23 1 Missing: 17157 ms.js Found: 35 7 Missing: 4558 nb.js Found: 40 2 Missing: 059 nl.js Found: 40 2 Missing: 060 no.js Found: 40 2 Missing: 061 pl.js Found: 38 7 Missing: 1562 pt-br.js Found: 40 2 Missing: 063 pt.js Found: 38 7 Missing: 1564 ro.js Found: 40 1 Missing: 165 ru.js Found: 40 2 Missing: 066 sk.js Found: 40 2 Missing: 067 sl.js Found: 37 9 Missing: 2368 sr-latn.js Found: 37 4 Missing: 2869 sr.js Found: 37 4 Missing: 2870 sv.js Found: 38 2 Missing: 2071 th.js Found: 35 1 Missing: 5172 tr.js Found: 40 2 Missing: 073 uk.js Found: 40 2 Missing: 074 vi.js Found: 40 2 Missing: 075 zh-cn.js Found: 40 2 Missing: 076 zh.js Found: 40 2 Missing: 053 ko.js Found: 373 Missing: 29 54 lt.js Found: 381 Missing: 21 55 lv.js Found: 386 Missing: 16 56 mn.js Found: 230 Missing: 172 57 ms.js Found: 356 Missing: 46 58 nb.js Found: 401 Missing: 1 59 nl.js Found: 401 Missing: 1 60 no.js Found: 401 Missing: 1 61 pl.js Found: 386 Missing: 16 62 pt-br.js Found: 401 Missing: 1 63 pt.js Found: 386 Missing: 16 64 ro.js Found: 400 Missing: 2 65 ru.js Found: 401 Missing: 1 66 sk.js Found: 401 Missing: 1 67 sl.js Found: 378 Missing: 24 68 sr-latn.js Found: 373 Missing: 29 69 sr.js Found: 373 Missing: 29 70 sv.js Found: 381 Missing: 21 71 th.js Found: 350 Missing: 52 72 tr.js Found: 401 Missing: 1 73 uk.js Found: 401 Missing: 1 74 vi.js Found: 401 Missing: 1 75 zh-cn.js Found: 401 Missing: 1 76 zh.js Found: 401 Missing: 1 -
FCKeditor/trunk/editor/lang/tr.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Gezgin yazılımınızın güvenlik ayarları düzenleyicinin otomatik yapıştırma işlemine izin vermiyor. İşlem için (Ctrl+V) tuşlarını kullanın.",341 340 PasteErrorCut : "Gezgin yazılımınızın güvenlik ayarları düzenleyicinin otomatik kesme işlemine izin vermiyor. İşlem için (Ctrl+X) tuşlarını kullanın.", 342 341 PasteErrorCopy : "Gezgin yazılımınızın güvenlik ayarları düzenleyicinin otomatik kopyalama işlemine izin vermiyor. İşlem için (Ctrl+C) tuşlarını kullanın.", … … 346 345 347 346 DlgPasteMsg2 : "Lütfen aşağıdaki kutunun içine yapıştırın. (<STRONG>Ctrl+V</STRONG>) ve <STRONG>Tamam</STRONG> butonunu tıklayın.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Yazı Tipi tanımlarını yoksay", 349 349 DlgPasteRemoveStyles : "Biçem Tanımlarını çıkar", -
FCKeditor/trunk/editor/lang/uk.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Настройки безпеки вашого браузера не дозволяють редактору автоматично виконувати операції вставки. Будь ласка, використовуйте клавіатуру для цього (Ctrl+V).",341 340 PasteErrorCut : "Настройки безпеки вашого браузера не дозволяють редактору автоматично виконувати операції вирізування. Будь ласка, використовуйте клавіатуру для цього (Ctrl+X).", 342 341 PasteErrorCopy : "Настройки безпеки вашого браузера не дозволяють редактору автоматично виконувати операції копіювання. Будь ласка, використовуйте клавіатуру для цього (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Будь-ласка, вставте з буфера обміну в цю область, користуючись комбінацією клавіш (<STRONG>Ctrl+V</STRONG>) та натисніть <STRONG>OK</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Ігнорувати налаштування шрифтів", 349 349 DlgPasteRemoveStyles : "Видалити налаштування стилів", -
FCKeditor/trunk/editor/lang/vi.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "Các thiết lập bảo mật của trình duyệt không cho phép trình biên tập tự động thực thi lệnh dán. Hãy sử dụng bàn phím cho lệnh này (Ctrl+V).",341 340 PasteErrorCut : "Các thiết lập bảo mật của trình duyệt không cho phép trình biên tập tự động thực thi lệnh cắt. Hãy sử dụng bàn phím cho lệnh này (Ctrl+X).", 342 341 PasteErrorCopy : "Các thiết lập bảo mật của trình duyệt không cho phép trình biên tập tự động thực thi lệnh sao chép. Hãy sử dụng bàn phím cho lệnh này (Ctrl+C).", … … 346 345 347 346 DlgPasteMsg2 : "Hãy dán nội dung vào trong khung bên dưới, sử dụng tổ hợp phím (<STRONG>Ctrl+V</STRONG>) và nhấn vào nút <STRONG>Đồng ý</STRONG>.", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "Chấp nhận các định dạng phông", 349 349 DlgPasteRemoveStyles : "Gỡ bỏ các định dạng Styles", -
FCKeditor/trunk/editor/lang/zh-cn.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "您的浏览器安全设置不允许编辑器自动执行粘贴操作,请使用键盘快捷键(Ctrl+V)来完成。",341 340 PasteErrorCut : "您的浏览器安全设置不允许编辑器自动执行剪切操作,请使用键盘快捷键(Ctrl+X)来完成。", 342 341 PasteErrorCopy : "您的浏览器安全设置不允许编辑器自动执行复制操作,请使用键盘快捷键(Ctrl+C)来完成。", … … 346 345 347 346 DlgPasteMsg2 : "请使用键盘快捷键(<STRONG>Ctrl+V</STRONG>)把内容粘贴到下面的方框里,再按 <STRONG>确定</STRONG>。", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "忽略 Font 标签", 349 349 DlgPasteRemoveStyles : "清理 CSS 样式", -
FCKeditor/trunk/editor/lang/zh.js
r132 r174 338 338 339 339 // Paste Operations / Dialog 340 PasteErrorPaste : "瀏覽器的安全性設定不允許編輯器自動執行貼上動作。請使用快捷鍵 (Ctrl+V) 貼上。",341 340 PasteErrorCut : "瀏覽器的安全性設定不允許編輯器自動執行剪下動作。請使用快捷鍵 (Ctrl+X) 剪下。", 342 341 PasteErrorCopy : "瀏覽器的安全性設定不允許編輯器自動執行複製動作。請使用快捷鍵 (Ctrl+C) 複製。", … … 346 345 347 346 DlgPasteMsg2 : "請使用快捷鍵 (<strong>Ctrl+V</strong>) 貼到下方區域中並按下 <strong>確定</strong>", 347 DlgPasteSec : "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.", //MISSING 348 348 DlgPasteIgnoreFont : "移除字型設定", 349 349 DlgPasteRemoveStyles : "移除樣式設定", -
FCKeditor/trunk/editor/_source/commandclasses/fck_othercommands.js
r172 r174 358 358 return FCK_TRISTATE_OFF ; 359 359 } 360 361 // FCKPasteCommand 362 var FCKPasteCommand = function() 363 { 364 this.Name = 'Paste' ; 365 } 366 367 FCKPasteCommand.prototype = 368 { 369 Execute : function() 370 { 371 if ( FCKBrowserInfo.IsIE ) 372 FCK.Paste() ; 373 else 374 FCK.ExecuteNamedCommand( 'Paste' ) ; 375 }, 376 377 GetState : function() 378 { 379 return FCK.GetNamedCommandState( 'Paste' ) ; 380 } 381 } ; -
FCKeditor/trunk/editor/_source/internals/fckcommands.js
r132 r174 74 74 case 'BGColor' : oCommand = new FCKTextColorCommand('BackColor') ; break ; 75 75 76 case 'Paste' : oCommand = new FCKPasteCommand() ; break ; 76 77 case 'PasteText' : oCommand = new FCKPastePlainTextCommand() ; break ; 77 78 case 'PasteWord' : oCommand = new FCKPasteWordCommand() ; break ; -
FCKeditor/trunk/editor/_source/internals/fck_ie.js
r151 r174 219 219 return false ; 220 220 } 221 222 var sHTML = FCK.GetClipboardHTML() ; 223 224 if ( FCKConfig.AutoDetectPasteFromWord && sHTML.length > 0 ) 225 { 226 var re = /<\w[^>]*(( class="?MsoNormal"?)|(="mso-))/gi ; 227 if ( re.test( sHTML ) ) 221 222 var sHTML = FCK._CheckIsPastingEnabled( true ) ; 223 224 if ( sHTML === false ) 225 FCKTools.RunFunction( FCKDialog.OpenDialog, FCKDialog, ['FCKDialog_Paste', FCKLang.Paste, 'dialog/fck_paste.html', 400, 330, 'Security'] ) ; 226 else 227 { 228 if ( FCKConfig.AutoDetectPasteFromWord && sHTML.length > 0 ) 228 229 { 229 if ( confirm( FCKLang.PasteWordConfirm ) ) 230 var re = /<\w[^>]*(( class="?MsoNormal"?)|(="mso-))/gi ; 231 if ( re.test( sHTML ) ) 230 232 { 231 FCK.PasteFromWord() ; 232 return false ; 233 if ( confirm( FCKLang.PasteWordConfirm ) ) 234 { 235 FCK.PasteFromWord() ; 236 return false ; 237 } 233 238 } 234 239 } 235 } 236 237 // Instead of inserting the retrieved HTML, let's leave the OS work for us 238 // and paste the content (return true); It could give better results. 239 // Also, let's always make a custom implementation (return false), otherwise 240 241 // Instead of inserting the retrieved HTML, let's leave the OS work for us, 242 // by calling FCK.ExecuteNamedCommand( 'Paste' ). It could give better results. 243 244 // Enable the semaphore to avoid a loop. 245 FCK._PasteIsRunning = true ; 246 247 FCK.GetClipboardHTML() ; 248 249 // Removes the semaphore. 250 delete FCK._PasteIsRunning ; 251 } 252 253 // Let's always make a custom implementation (return false), otherwise 240 254 // the new Keyboard Handler may conflict with this code, and the CTRL+V code 241 255 // could result in a simple "V" being pasted. 242 243 // Enable the semaphore to avoid a loop.244 FCK._PasteIsRunning = true ;245 246 FCK.ExecuteNamedCommand( 'Paste' ) ;247 248 // Removes the semaphore.249 delete FCK._PasteIsRunning ;250 251 // "false" means that we have a custom implementation.252 256 return false ; 253 257 } … … 255 259 FCK.PasteAsPlainText = function() 256 260 { 257 // Get the data available in the clipboard and encodes it in HTML. 261 if ( !FCK._CheckIsPastingEnabled() ) 262 { 263 FCKDialog.OpenDialog( 'FCKDialog_Paste', FCKLang.PasteAsText, 'dialog/fck_paste.html', 400, 330, 'PlainText' ) 264 return ; 265 } 266 267 // Get the data available in the clipboard in text format. 258 268 var sText = clipboardData.getData("Text") ; 259 269 … … 266 276 this.InsertHtml( sText ) ; 267 277 } 278 } 279 280 FCK._CheckIsPastingEnabled = function( returnContents ) 281 { 282 // The following seams to be the only reliable way to check is script 283 // pasting operations are enabled in the secutiry settings of IE6 and IE7. 284 // It adds a little bit of overhead to the check, but so far that's the 285 // only way, mainly because of IE7. 286 287 FCK._PasteIsEnabled = false ; 288 289 document.body.attachEvent( 'onpaste', FCK_CheckPasting_Listener ) ; 290 291 // The execCommand in GetClipboardHTML will fire the "onpaste", only if the 292 // security settings are enabled. 293 var oReturn = FCK.GetClipboardHTML() ; 294 295 document.body.detachEvent( 'onpaste', FCK_CheckPasting_Listener ) ; 296 297 if ( FCK._PasteIsEnabled ) 298 { 299 if ( !returnContents ) 300 oReturn = true ; 301 } 302 else 303 oReturn = false ; 304 305 delete FCK._PasteIsEnabled ; 306 307 return oReturn ; 308 } 309 310 function FCK_CheckPasting_Listener() 311 { 312 FCK._PasteIsEnabled = true ; 268 313 } 269 314 -
FCKeditor/trunk/_whatsnew.html
r171 r174 86 86 it may be incompatible with some keyboard layouts. So, the CTRL + ALT + S combination 87 87 has been changed to CTRL + SHIFT + S.</li> 88 <li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/129">#129</a>] In IE, 89 it was not possible to paste if "Allow paste operation via script" was disabled 90 in the browser security settings.</li> 88 91 </ul> 89 92 <h3>