Changeset 2329 for FCKeditor/branches
- Timestamp:
- 2008-08-05 12:13:32 (4 months ago)
- Location:
- FCKeditor/branches/versions/2.6.x
- Files:
-
- 26 modified
-
_dev/build_release.bat (modified) (2 diffs)
-
editor/dialog/fck_anchor.html (modified) (2 diffs)
-
editor/dialog/fck_spellerpages.html (modified) (1 diff)
-
editor/lang/ca.js (modified) (4 diffs)
-
editor/lang/cs.js (modified) (4 diffs)
-
editor/lang/de.js (modified) (3 diffs)
-
editor/lang/en-au.js (modified) (3 diffs)
-
editor/lang/en-ca.js (modified) (3 diffs)
-
editor/lang/en-uk.js (modified) (3 diffs)
-
editor/lang/es.js (modified) (4 diffs)
-
editor/lang/fr-ca.js (modified) (3 diffs)
-
editor/lang/fr.js (modified) (4 diffs)
-
editor/lang/he.js (modified) (5 diffs)
-
editor/lang/hi.js (modified) (4 diffs)
-
editor/lang/hr.js (modified) (4 diffs)
-
editor/lang/ja.js (modified) (4 diffs)
-
editor/lang/nb.js (modified) (24 diffs)
-
editor/lang/nl.js (modified) (4 diffs)
-
editor/lang/no.js (modified) (24 diffs)
-
editor/lang/_translationstatus.txt (modified) (4 diffs)
-
editor/lang/vi.js (modified) (11 diffs)
-
editor/lang/zh-cn.js (modified) (1 diff)
-
editor/lang/zh.js (modified) (1 diff)
-
editor/_source/internals/fck_gecko.js (modified) (1 diff)
-
editor/_source/internals/fckselection_ie.js (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/branches/versions/2.6.x/_dev/build_release.bat
r2288 r2329 1 @ECHO OFF1 @ECHO OFF 2 2 3 3 :: … … 26 26 27 27 :: Update this variable for each new release. 28 SET RELEASER_VERSION=2.6.3 Beta28 SET RELEASER_VERSION=2.6.3 29 29 30 30 CLS -
FCKeditor/branches/versions/2.6.x/editor/dialog/fck_anchor.html
r2288 r2329 120 120 121 121 if ( aNewAnchors.length == 0 ) 122 { 123 // Nothing was selected, so now just create a normal A 124 if ( FCKBrowserInfo.IsIE ) 125 aNewAnchors.push( oEditor.FCK.InsertElement( '<a name="' + FCKTools.HTMLEncode( sNewName ).replace( '"', '"' ) + '">' ) ) ; 126 else 127 { 128 var n = oEditor.FCK.InsertElement( 'a' ) ; 129 n.name = sNewName ; 130 aNewAnchors.push( n ) ; 131 } 132 } 122 aNewAnchors.push( oEditor.FCK.InsertElement( 'a' ) ) ; 133 123 else 134 124 { … … 142 132 { 143 133 oAnchor = aNewAnchors[i] ; 134 135 // Set the name 136 if ( FCKBrowserInfo.IsIE ) 137 { 138 // Setting anchor names directly in IE will trash the HTML code stored 139 // in FCKTempBin after undos. See #2263. 140 var replaceAnchor = oEditor.FCK.EditorDocument.createElement( '<a name="' + 141 FCKTools.HTMLEncode( sNewName ).replace( '"', '"' ) + '">' ) ; 142 oEditor.FCKDomTools.MoveChildren( oAnchor, replaceAnchor ) ; 143 oAnchor.parentNode.replaceChild( replaceAnchor, oAnchor ) ; 144 oAnchor = replaceAnchor ; 145 } 146 else 147 oAnchor.name = sNewName ; 144 148 145 149 // IE does require special processing to show the Anchor's image -
FCKeditor/branches/versions/2.6.x/editor/dialog/fck_spellerpages.html
r2288 r2329 54 54 if ( numberOCorrections > 0 ) 55 55 { 56 oEditor.FCKUndo.SaveUndoStep() ; 56 57 oEditor.FCK.EditorDocument.body.innerHTML = document.getElementById('txtHtml').value ; 57 58 if ( oEditor.FCKBrowserInfo.IsIE ) -
FCKeditor/branches/versions/2.6.x/editor/lang/ca.js
r2288 r2329 44 44 InsertLinkLbl : "Enllaç", 45 45 InsertLink : "Insereix/Edita enllaç", 46 RemoveLink : "Elimina enllaç",47 VisitLink : "O pen Link", //MISSING46 RemoveLink : "Elimina l'enllaç", 47 VisitLink : "Obre l'enllaç", 48 48 Anchor : "Insereix/Edita àncora", 49 49 AnchorDelete : "Elimina àncora", … … 74 74 IncreaseIndent : "Augmenta el sagnat", 75 75 Blockquote : "Bloc de cita", 76 CreateDiv : "Crea te Div Container", //MISSING77 EditDiv : "Edit Div Container", //MISSING78 DeleteDiv : " Remove Div Container", //MISSING76 CreateDiv : "Crea un contenidor Div", 77 EditDiv : "Edita el contenidor Div", 78 DeleteDiv : "Elimina el contenidor Div", 79 79 Undo : "Desfés", 80 80 Redo : "Refés", … … 161 161 NoActiveX : "Les preferències del navegador poden limitar algunes funcions d'aquest editor. Cal habilitar l'opció \"Executa controls ActiveX i plug-ins\". Poden sorgir errors i poden faltar algunes funcions.", 162 162 BrowseServerBlocked : "El visualitzador de recursos no s'ha pogut obrir. Assegura't de que els bloquejos de finestres emergents estan desactivats.", 163 DialogBlocked : "No ha estat possible obrir una finestra de diàleg. Assegur a't deque els bloquejos de finestres emergents estan desactivats.",164 VisitLinkBlocked : " It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING163 DialogBlocked : "No ha estat possible obrir una finestra de diàleg. Assegureu-vos que els bloquejos de finestres emergents estan desactivats.", 164 VisitLinkBlocked : "No ha estat possible obrir una nova finestra. Assegureu-vos que els bloquejos de finestres emergents estan desactivats.", 165 165 166 166 // Dialogs … … 520 520 521 521 // Div Dialog 522 DlgDivGeneralTab : "General", //MISSING523 DlgDivAdvancedTab : "A dvanced", //MISSING524 DlgDivStyle : " Style", //MISSING525 DlgDivInlineStyle : " Inline Style" //MISSING522 DlgDivGeneralTab : "General", 523 DlgDivAdvancedTab : "Avançat", 524 DlgDivStyle : "Estil", 525 DlgDivInlineStyle : "Estil en línia" 526 526 }; -
FCKeditor/branches/versions/2.6.x/editor/lang/cs.js
r2288 r2329 45 45 InsertLink : "Vložit/změnit odkaz", 46 46 RemoveLink : "Odstranit odkaz", 47 VisitLink : "O pen Link", //MISSING47 VisitLink : "Otevřít odkaz", 48 48 Anchor : "Vložít/změnit záložku", 49 49 AnchorDelete : "Odstranit kotvu", … … 74 74 IncreaseIndent : "Zvětšit odsazení", 75 75 Blockquote : "Citace", 76 CreateDiv : " Create Div Container", //MISSING77 EditDiv : " Edit Div Container", //MISSING78 DeleteDiv : " Remove Div Container", //MISSING76 CreateDiv : "Vytvořit Div kontejner", 77 EditDiv : "Upravit Div kontejner", 78 DeleteDiv : "Odstranit Div kontejner", 79 79 Undo : "Zpět", 80 80 Redo : "Znovu", … … 162 162 BrowseServerBlocked : "Průzkumník zdrojů nelze otevřít. Prověřte, zda nemáte aktivováno blokování popup oken.", 163 163 DialogBlocked : "Nelze otevřít dialogové okno. Prověřte, zda nemáte aktivováno blokování popup oken.", 164 VisitLinkBlocked : " It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING164 VisitLinkBlocked : "Není možné otevřít nové okno. Prověřte, zda všechny nástroje pro blokování vyskakovacích oken jsou vypnuty.", 165 165 166 166 // Dialogs … … 520 520 521 521 // Div Dialog 522 DlgDivGeneralTab : " General", //MISSING523 DlgDivAdvancedTab : " Advanced", //MISSING524 DlgDivStyle : "Styl e", //MISSING525 DlgDivInlineStyle : " Inline Style" //MISSING522 DlgDivGeneralTab : "Obecné", 523 DlgDivAdvancedTab : "Rozšířené", 524 DlgDivStyle : "Styl", 525 DlgDivInlineStyle : "Vložený styl" 526 526 }; -
FCKeditor/branches/versions/2.6.x/editor/lang/de.js
r2288 r2329 45 45 InsertLink : "Link einfügen/editieren", 46 46 RemoveLink : "Link entfernen", 47 VisitLink : " Open Link", //MISSING47 VisitLink : "Link aufrufen", 48 48 Anchor : "Anker einfügen/editieren", 49 49 AnchorDelete : "Anker entfernen", … … 74 74 IncreaseIndent : "Einzug erhöhen", 75 75 Blockquote : "Zitatblock", 76 CreateDiv : " Create Div Container", //MISSING77 EditDiv : " Edit Div Container", //MISSING78 DeleteDiv : " Remove Div Container", //MISSING76 CreateDiv : "Erzeuge Div Block", 77 EditDiv : "Bearbeite Div Block", 78 DeleteDiv : "Entferne Div Block", 79 79 Undo : "Rückgängig", 80 80 Redo : "Wiederherstellen", … … 520 520 521 521 // Div Dialog 522 DlgDivGeneralTab : " General", //MISSING523 DlgDivAdvancedTab : " Advanced", //MISSING524 DlgDivStyle : "Style", //MISSING525 DlgDivInlineStyle : "Inline Style" //MISSING522 DlgDivGeneralTab : "Allgemein", 523 DlgDivAdvancedTab : "Erweitert", 524 DlgDivStyle : "Style", 525 DlgDivInlineStyle : "Inline Style" 526 526 }; -
FCKeditor/branches/versions/2.6.x/editor/lang/en-au.js
r2288 r2329 361 361 PasteFromWord : "Paste from Word", 362 362 363 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (< STRONG>Ctrl+V</STRONG>) and hit <STRONG>OK</STRONG>.",363 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", 364 364 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.", 365 365 DlgPasteIgnoreFont : "Ignore Font Face definitions", … … 507 507 Templates : "Templates", 508 508 DlgTemplatesTitle : "Content Templates", 509 DlgTemplatesSelMsg : "Please select the template to open in the editor<br >(the actual contents will be lost):",509 DlgTemplatesSelMsg : "Please select the template to open in the editor<br />(the actual contents will be lost):", 510 510 DlgTemplatesLoading : "Loading templates list. Please wait...", 511 511 DlgTemplatesNoTpl : "(No templates defined)", … … 520 520 521 521 // Div Dialog 522 DlgDivGeneralTab : "General", //MISSING523 DlgDivAdvancedTab : "Advanced", //MISSING524 DlgDivStyle : "Style", //MISSING525 DlgDivInlineStyle : "Inline Style" //MISSING522 DlgDivGeneralTab : "General", 523 DlgDivAdvancedTab : "Advanced", 524 DlgDivStyle : "Style", 525 DlgDivInlineStyle : "Inline Style" 526 526 }; -
FCKeditor/branches/versions/2.6.x/editor/lang/en-ca.js
r2288 r2329 361 361 PasteFromWord : "Paste from Word", 362 362 363 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (< STRONG>Ctrl+V</STRONG>) and hit <STRONG>OK</STRONG>.",363 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", 364 364 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.", 365 365 DlgPasteIgnoreFont : "Ignore Font Face definitions", … … 507 507 Templates : "Templates", 508 508 DlgTemplatesTitle : "Content Templates", 509 DlgTemplatesSelMsg : "Please select the template to open in the editor<br >(the actual contents will be lost):",509 DlgTemplatesSelMsg : "Please select the template to open in the editor<br />(the actual contents will be lost):", 510 510 DlgTemplatesLoading : "Loading templates list. Please wait...", 511 511 DlgTemplatesNoTpl : "(No templates defined)", … … 520 520 521 521 // Div Dialog 522 DlgDivGeneralTab : "General", //MISSING523 DlgDivAdvancedTab : "Advanced", //MISSING524 DlgDivStyle : "Style", //MISSING525 DlgDivInlineStyle : "Inline Style" //MISSING522 DlgDivGeneralTab : "General", 523 DlgDivAdvancedTab : "Advanced", 524 DlgDivStyle : "Style", 525 DlgDivInlineStyle : "Inline Style" 526 526 }; -
FCKeditor/branches/versions/2.6.x/editor/lang/en-uk.js
r2288 r2329 361 361 PasteFromWord : "Paste from Word", 362 362 363 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (< STRONG>Ctrl+V</STRONG>) and hit <STRONG>OK</STRONG>.",363 DlgPasteMsg2 : "Please paste inside the following box using the keyboard (<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.", 364 364 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.", 365 365 DlgPasteIgnoreFont : "Ignore Font Face definitions", … … 507 507 Templates : "Templates", 508 508 DlgTemplatesTitle : "Content Templates", 509 DlgTemplatesSelMsg : "Please select the template to open in the editor<br >(the actual contents will be lost):",509 DlgTemplatesSelMsg : "Please select the template to open in the editor<br />(the actual contents will be lost):", 510 510 DlgTemplatesLoading : "Loading templates list. Please wait...", 511 511 DlgTemplatesNoTpl : "(No templates defined)", … … 520 520 521 521 // Div Dialog 522 DlgDivGeneralTab : "General", //MISSING523 DlgDivAdvancedTab : "Advanced", //MISSING524 DlgDivStyle : "Style", //MISSING525 DlgDivInlineStyle : "Inline Style" //MISSING522 DlgDivGeneralTab : "General", 523 DlgDivAdvancedTab : "Advanced", 524 DlgDivStyle : "Style", 525 DlgDivInlineStyle : "Inline Style" 526 526 }; -
FCKeditor/branches/versions/2.6.x/editor/lang/es.js
r2288 r2329 45 45 InsertLink : "Insertar/Editar Vínculo", 46 46 RemoveLink : "Eliminar Vínculo", 47 VisitLink : " Open Link", //MISSING47 VisitLink : "Abrir enlace", 48 48 Anchor : "Referencia", 49 49 AnchorDelete : "Eliminar Referencia", … … 74 74 IncreaseIndent : "Aumentar Sangría", 75 75 Blockquote : "Cita", 76 CreateDiv : "Crea te Div Container", //MISSING77 EditDiv : "Edit Div Container", //MISSING78 DeleteDiv : " Remove Div Container", //MISSING76 CreateDiv : "Crear contenedor (div)", 77 EditDiv : "Editar contenedor (div)", 78 DeleteDiv : "Eliminar contenedor (div)", 79 79 Undo : "Deshacer", 80 80 Redo : "Rehacer", … … 162 162 BrowseServerBlocked : "La ventana de visualización del servidor no pudo ser abierta. Verifique que su navegador no esté bloqueando las ventanas emergentes (pop up).", 163 163 DialogBlocked : "No se ha podido abrir la ventana de diálogo. Verifique que su navegador no esté bloqueando las ventanas emergentes (pop up).", 164 VisitLinkBlocked : " It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING164 VisitLinkBlocked : "Nose ha podido abrir la ventana. Asegurese de que todos los bloqueadores de popups están deshabilitados.", 165 165 166 166 // Dialogs … … 520 520 521 521 // Div Dialog 522 DlgDivGeneralTab : "General", //MISSING523 DlgDivAdvancedTab : "A dvanced", //MISSING524 DlgDivStyle : " Style", //MISSING525 DlgDivInlineStyle : " Inline Style" //MISSING522 DlgDivGeneralTab : "General", 523 DlgDivAdvancedTab : "Avanzado", 524 DlgDivStyle : "Estilo", 525 DlgDivInlineStyle : "Estilos CSS" 526 526 }; -
FCKeditor/branches/versions/2.6.x/editor/lang/fr-ca.js
r2288 r2329 45 45 InsertLink : "Insérer/modifier le lien", 46 46 RemoveLink : "Supprimer le lien", 47 VisitLink : " Open Link", //MISSING47 VisitLink : "Suivre le lien", 48 48 Anchor : "Insérer/modifier l'ancre", 49 49 AnchorDelete : "Supprimer l'ancre", … … 74 74 IncreaseIndent : "Augmenter le retrait", 75 75 Blockquote : "Citation", 76 CreateDiv : "Cr eate Div Container", //MISSING77 EditDiv : " Edit Div Container", //MISSING78 DeleteDiv : " Remove Div Container", //MISSING76 CreateDiv : "Créer Balise Div", 77 EditDiv : "Modifier Balise Div", 78 DeleteDiv : "Supprimer Balise Div", 79 79 Undo : "Annuler", 80 80 Redo : "Refaire", … … 520 520 521 521 // Div Dialog 522 DlgDivGeneralTab : "G eneral", //MISSING523 DlgDivAdvancedTab : "A dvanced", //MISSING524 DlgDivStyle : "Style", //MISSING525 DlgDivInlineStyle : " Inline Style" //MISSING522 DlgDivGeneralTab : "Général", 523 DlgDivAdvancedTab : "Avancé", 524 DlgDivStyle : "Style", 525 DlgDivInlineStyle : "Attribut Style" 526 526 }; -
FCKeditor/branches/versions/2.6.x/editor/lang/fr.js
r2288 r2329 45 45 InsertLink : "Insérer/modifier le lien", 46 46 RemoveLink : "Supprimer le lien", 47 VisitLink : " Open Link", //MISSING47 VisitLink : "Suivre le lien", 48 48 Anchor : "Insérer/modifier l'ancre", 49 49 AnchorDelete : "Supprimer l'ancre", … … 74 74 IncreaseIndent : "Augmenter le retrait", 75 75 Blockquote : "Citation", 76 CreateDiv : "Cr eate Div Container", //MISSING77 EditDiv : " Edit Div Container", //MISSING78 DeleteDiv : " Remove Div Container", //MISSING76 CreateDiv : "Créer Balise Div", 77 EditDiv : "Modifier Balise Div", 78 DeleteDiv : "Supprimer Balise Div", 79 79 Undo : "Annuler", 80 80 Redo : "Refaire", … … 162 162 BrowseServerBlocked : "Le navigateur n'a pas pu être ouvert. Assurez-vous que les bloqueurs de popups soient désactivés.", 163 163 DialogBlocked : "La fenêtre de dialogue n'a pas pu s'ouvrir. Assurez-vous que les bloqueurs de popups soient désactivés.", 164 VisitLinkBlocked : "I t was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING164 VisitLinkBlocked : "Impossible d'ouvrir une nouvelle fenêtre. Assurez-vous que les bloqueurs de popups soient désactivés.", 165 165 166 166 // Dialogs … … 520 520 521 521 // Div Dialog 522 DlgDivGeneralTab : "G eneral", //MISSING523 DlgDivAdvancedTab : "A dvanced", //MISSING524 DlgDivStyle : "Style", //MISSING525 DlgDivInlineStyle : " Inline Style" //MISSING522 DlgDivGeneralTab : "Général", 523 DlgDivAdvancedTab : "Avancé", 524 DlgDivStyle : "Style", 525 DlgDivInlineStyle : "Attribut Style" 526 526 }; -
FCKeditor/branches/versions/2.6.x/editor/lang/he.js
r2288 r2329 45 45 InsertLink : "הוספת/עריכת קישור", 46 46 RemoveLink : "הסרת הקישור", 47 VisitLink : " Open Link", //MISSING47 VisitLink : "פתח קישור", 48 48 Anchor : "הוספת/עריכת נקודת עיגון", 49 49 AnchorDelete : "הסר נקודת עיגון", … … 74 74 IncreaseIndent : "הגדלת אינדנטציה", 75 75 Blockquote : "בלוק ציטוט", 76 CreateDiv : " Create Div Container", //MISSING77 EditDiv : " Edit Div Container", //MISSING78 DeleteDiv : " Remove Div Container", //MISSING76 CreateDiv : "צור מיכל(תג)DIV", 77 EditDiv : "ערוך מיכל (תג)DIV", 78 DeleteDiv : "הסר מיכל(תג) DIV", 79 79 Undo : "ביטול צעד אחרון", 80 80 Redo : "חזרה על צעד אחרון", … … 162 162 BrowseServerBlocked : "לא ניתן לגשת לדפדפן משאבים.אנא וודא שחוסם חלונות הקופצים לא פעיל.", 163 163 DialogBlocked : "לא היה ניתן לפתוח חלון דיאלוג. אנא וודא שחוסם חלונות קופצים לא פעיל.", 164 VisitLinkBlocked : " It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING164 VisitLinkBlocked : "לא ניתן לפתוח חלון חדש.נא לוודא שחוסמי החלונות הקופצים לא פעילים.", 165 165 166 166 // Dialogs … … 172 172 DlgOpOther : "<אחר>", 173 173 DlgInfoTab : "מידע", 174 DlgAlertUrl : "אנ ההזן URL",174 DlgAlertUrl : "אנא הזן URL", 175 175 176 176 // General Dialogs Labels … … 520 520 521 521 // Div Dialog 522 DlgDivGeneralTab : " General", //MISSING523 DlgDivAdvancedTab : " Advanced", //MISSING524 DlgDivStyle : " Style", //MISSING525 DlgDivInlineStyle : " Inline Style" //MISSING522 DlgDivGeneralTab : "כללי", 523 DlgDivAdvancedTab : "מתקדם", 524 DlgDivStyle : "סגנון", 525 DlgDivInlineStyle : "סגנון בתוך השורה" 526 526 }; -
FCKeditor/branches/versions/2.6.x/editor/lang/hi.js
r2288 r2329 45 45 InsertLink : "लिंक इन्सर्ट/संपादन", 46 46 RemoveLink : "लिंक हटायें", 47 VisitLink : " Open Link", //MISSING47 VisitLink : "लिंक खोलें", 48 48 Anchor : "ऐंकर इन्सर्ट/संपादन", 49 49 AnchorDelete : "ऐंकर हटायें", … … 74 74 IncreaseIndent : "इन्डॅन्ट बढ़ायें", 75 75 Blockquote : "ब्लॉक-कोट", 76 CreateDiv : " Create Div Container", //MISSING77 EditDiv : " Edit Div Container", //MISSING78 DeleteDiv : " Remove Div Container", //MISSING76 CreateDiv : "डिव (Div) कन्टेनर बनायें", 77 EditDiv : "डिव (Div) कन्टेनर बदलें", 78 DeleteDiv : "डिव कन्टेनर हटायें", 79 79 Undo : "अन्डू", 80 80 Redo : "रीडू", … … 160 160 UnknownToolbarSet : "टूलबार सॅट \"%1\" उपलब्ध नहीं है", 161 161 NoActiveX : "आपके ब्राउज़र् की सुरक्शा सेटिंग्स् एडिटर की कुछ् फ़ीचरों को सीमित कर्