Changeset 2363
- Timestamp:
- 2008-08-19 11:28:15 (3 months ago)
- Location:
- FCKeditor/trunk
- Files:
-
- 62 modified
-
editor/dialog/common/fck_dialog_common.js (modified) (1 diff)
-
editor/dialog/fck_tablecell.html (modified) (4 diffs)
-
editor/lang/af.js (modified) (1 diff)
-
editor/lang/ar.js (modified) (1 diff)
-
editor/lang/bg.js (modified) (1 diff)
-
editor/lang/bn.js (modified) (1 diff)
-
editor/lang/bs.js (modified) (1 diff)
-
editor/lang/ca.js (modified) (1 diff)
-
editor/lang/cs.js (modified) (1 diff)
-
editor/lang/da.js (modified) (1 diff)
-
editor/lang/de.js (modified) (1 diff)
-
editor/lang/el.js (modified) (1 diff)
-
editor/lang/en-au.js (modified) (1 diff)
-
editor/lang/en-ca.js (modified) (1 diff)
-
editor/lang/en.js (modified) (1 diff)
-
editor/lang/en-uk.js (modified) (1 diff)
-
editor/lang/eo.js (modified) (1 diff)
-
editor/lang/es.js (modified) (1 diff)
-
editor/lang/et.js (modified) (1 diff)
-
editor/lang/eu.js (modified) (1 diff)
-
editor/lang/fa.js (modified) (1 diff)
-
editor/lang/fi.js (modified) (1 diff)
-
editor/lang/fo.js (modified) (1 diff)
-
editor/lang/fr-ca.js (modified) (1 diff)
-
editor/lang/fr.js (modified) (1 diff)
-
editor/lang/gl.js (modified) (1 diff)
-
editor/lang/gu.js (modified) (1 diff)
-
editor/lang/he.js (modified) (1 diff)
-
editor/lang/hi.js (modified) (1 diff)
-
editor/lang/hr.js (modified) (1 diff)
-
editor/lang/hu.js (modified) (1 diff)
-
editor/lang/it.js (modified) (1 diff)
-
editor/lang/ja.js (modified) (1 diff)
-
editor/lang/km.js (modified) (1 diff)
-
editor/lang/ko.js (modified) (1 diff)
-
editor/lang/lt.js (modified) (1 diff)
-
editor/lang/lv.js (modified) (1 diff)
-
editor/lang/mn.js (modified) (1 diff)
-
editor/lang/ms.js (modified) (1 diff)
-
editor/lang/nb.js (modified) (1 diff)
-
editor/lang/nl.js (modified) (1 diff)
-
editor/lang/no.js (modified) (1 diff)
-
editor/lang/pl.js (modified) (1 diff)
-
editor/lang/pt-br.js (modified) (1 diff)
-
editor/lang/pt.js (modified) (1 diff)
-
editor/lang/ro.js (modified) (1 diff)
-
editor/lang/ru.js (modified) (1 diff)
-
editor/lang/sk.js (modified) (1 diff)
-
editor/lang/sl.js (modified) (1 diff)
-
editor/lang/sr.js (modified) (1 diff)
-
editor/lang/sr-latn.js (modified) (1 diff)
-
editor/lang/sv.js (modified) (1 diff)
-
editor/lang/th.js (modified) (1 diff)
-
editor/lang/_translationstatus.txt (modified) (1 diff)
-
editor/lang/tr.js (modified) (1 diff)
-
editor/lang/uk.js (modified) (1 diff)
-
editor/lang/vi.js (modified) (1 diff)
-
editor/lang/zh-cn.js (modified) (1 diff)
-
editor/lang/zh.js (modified) (1 diff)
-
editor/_source/internals/fckselection_ie.js (modified) (2 diffs)
-
editor/_source/internals/fcktablehandler_ie.js (modified) (1 diff)
-
_whatsnew.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
FCKeditor/trunk/editor/dialog/common/fck_dialog_common.js
r2362 r2363 311 311 } 312 312 // The style: 313 oDest.style.cssText = oSource.style.cssText ; 313 if ( oSource.style.cssText !== '' ) 314 oDest.style.cssText = oSource.style.cssText ; 314 315 } 315 316 -
FCKeditor/trunk/editor/dialog/fck_tablecell.html
r1795 r2363 33 33 var oEditor = dialog.InnerDialogLoaded() ; 34 34 35 // Gets the document DOM 36 var oDOM = oEditor.FCK.EditorDocument ; 35 var FCKDomTools = oEditor.FCKDomTools ; 37 36 38 37 // Array of selected Cells … … 75 74 GetE('txtBackColor').value = GetAttribute( oCell, 'bgColor' ) ; 76 75 GetE('txtBorderColor').value = GetAttribute( oCell, 'borderColor' ) ; 77 // GetE('cmbFontStyle').value = oCell.className ; 76 GetE('selCellType').value = oCell.nodeName.toLowerCase() ; 78 77 } 79 78 } … … 101 100 SetAttribute( aCells[i], 'bgColor' , GetE('txtBackColor').value ) ; 102 101 SetAttribute( aCells[i], 'borderColor' , GetE('txtBorderColor').value ) ; 103 // SetAttribute( aCells[i], 'className' , GetE('cmbFontStyle').value ) ; 102 103 var cellType = GetE('selCellType').value ; 104 if ( aCells[i].nodeName.toLowerCase() != cellType ) 105 aCells[i] = RenameNode( aCells[i], cellType ) ; 104 106 } 107 108 // The cells need to be reselected, otherwise the caret will appear inside the table borders (Gecko) 109 // or sent back to the beginning of the document (Opera and Safari). 110 // Strangely, IE works ok so no change is needed for IE. 111 if ( !oEditor.FCKBrowserInfo.IsIE ) 112 { 113 var selection = oEditor.FCK.EditorWindow.getSelection() ; 114 selection.removeAllRanges() ; 115 for ( var i = 0 ; i < aCells.length ; i++ ) 116 { 117 var range = oEditor.FCK.EditorDocument.createRange() ; 118 range.selectNode( aCells[i] ) ; 119 selection.addRange( range ) ; 120 } 121 } 105 122 106 123 return true ; … … 203 220 <tr> 204 221 <td nowrap="nowrap"> 222 <span fcklang="DlgCellType">Cell Type</span>:</td> 223 <td colspan="2"> 224 <select id="selCellType"> 225 <option fcklang="DlgCellTypeData" value="td" />Data 226 <option fcklang="DlgCellTypeHeader" value="th" />Header 227 </select> 228 </tr> 229 <tr> 230 <td> 231 </td> 232 <td> 233 </td> 234 <td> 235 </td> 236 </tr> 237 <tr> 238 <td nowrap="nowrap"> 205 239 <span fcklang="DlgCellRowSpan">Rows Span</span>:</td> 206 240 <td> -
FCKeditor/trunk/editor/lang/af.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Onder", 337 337 DlgCellVerAlignBaseline : "Baseline", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Rei strekking", 339 342 DlgCellCollSpan : "Kolom strekking", -
FCKeditor/trunk/editor/lang/ar.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "أسفل", 337 337 DlgCellVerAlignBaseline : "على السطر", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "إمتداد الصفوف", 339 342 DlgCellCollSpan : "إمتداد الأعمدة", -
FCKeditor/trunk/editor/lang/bg.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Долу", 337 337 DlgCellVerAlignBaseline : "По базовата линия", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "повече от един ред", 339 342 DlgCellCollSpan : "повече от една колона", -
FCKeditor/trunk/editor/lang/bn.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "নীচে", 337 337 DlgCellVerAlignBaseline : "মূলরেখা", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "রো স্প্যান", 339 342 DlgCellCollSpan : "কলাম স্প্যান", -
FCKeditor/trunk/editor/lang/bs.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Dno", 337 337 DlgCellVerAlignBaseline : "Bazno", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Spajanje æelija", 339 342 DlgCellCollSpan : "Spajanje kolona", -
FCKeditor/trunk/editor/lang/ca.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Bottom", 337 337 DlgCellVerAlignBaseline : "Baseline", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Rows Span", 339 342 DlgCellCollSpan : "Columns Span", -
FCKeditor/trunk/editor/lang/cs.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Dolů", 337 337 DlgCellVerAlignBaseline : "Na účaří", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Sloučené řádky", 339 342 DlgCellCollSpan : "Sloučené sloupce", -
FCKeditor/trunk/editor/lang/da.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Nederst", 337 337 DlgCellVerAlignBaseline : "Grundlinje", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Højde i antal rækker", 339 342 DlgCellCollSpan : "Bredde i antal kolonner", -
FCKeditor/trunk/editor/lang/de.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Unten", 337 337 DlgCellVerAlignBaseline : "Grundlinie", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Zeilen zusammenfassen", 339 342 DlgCellCollSpan : "Spalten zusammenfassen", -
FCKeditor/trunk/editor/lang/el.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Κάτω (Bottom)", 337 337 DlgCellVerAlignBaseline : "Γραμμή Βάσης (Baseline)", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Αριθμός Γραμμών (Rows Span)", 339 342 DlgCellCollSpan : "Αριθμός Κολωνών (Columns Span)", -
FCKeditor/trunk/editor/lang/en-au.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Bottom", 337 337 DlgCellVerAlignBaseline : "Baseline", 338 DlgCellType : "Cell Type", 339 DlgCellTypeData : "Data", 340 DlgCellTypeHeader : "Header", 338 341 DlgCellRowSpan : "Rows Span", 339 342 DlgCellCollSpan : "Columns Span", -
FCKeditor/trunk/editor/lang/en-ca.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Bottom", 337 337 DlgCellVerAlignBaseline : "Baseline", 338 DlgCellType : "Cell Type", 339 DlgCellTypeData : "Data", 340 DlgCellTypeHeader : "Header", 338 341 DlgCellRowSpan : "Rows Span", 339 342 DlgCellCollSpan : "Columns Span", -
FCKeditor/trunk/editor/lang/en.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Bottom", 337 337 DlgCellVerAlignBaseline : "Baseline", 338 DlgCellType : "Cell Type", 339 DlgCellTypeData : "Data", 340 DlgCellTypeHeader : "Header", 338 341 DlgCellRowSpan : "Rows Span", 339 342 DlgCellCollSpan : "Columns Span", -
FCKeditor/trunk/editor/lang/en-uk.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Bottom", 337 337 DlgCellVerAlignBaseline : "Baseline", 338 DlgCellType : "Cell Type", 339 DlgCellTypeData : "Data", 340 DlgCellTypeHeader : "Header", 338 341 DlgCellRowSpan : "Rows Span", 339 342 DlgCellCollSpan : "Columns Span", -
FCKeditor/trunk/editor/lang/eo.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Malsupre", 337 337 DlgCellVerAlignBaseline : "Je Malsupro de Teksto", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Linioj Kunfanditaj", 339 342 DlgCellCollSpan : "Kolumnoj Kunfanditaj", -
FCKeditor/trunk/editor/lang/es.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "ie", 337 337 DlgCellVerAlignBaseline : "Línea de Base", 338 DlgCellType : "Tipo de celda", 339 DlgCellTypeData : "Datos", 340 DlgCellTypeHeader : "Encabezado", 338 341 DlgCellRowSpan : "Abarcar Filas", 339 342 DlgCellCollSpan : "Abarcar Columnas", -
FCKeditor/trunk/editor/lang/et.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Alla", 337 337 DlgCellVerAlignBaseline : "Baasjoonele", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Reaulatus", 339 342 DlgCellCollSpan : "Veeruulatus", -
FCKeditor/trunk/editor/lang/eu.js
r2362 r2363 337 337 DlgCellVerAlignBottom : "Behean", 338 338 DlgCellVerAlignBaseline : "Oinan", 339 DlgCellType : "Cell Type", //MISSING 340 DlgCellTypeData : "Data", //MISSING 341 DlgCellTypeHeader : "Header", //MISSING 339 342 DlgCellRowSpan : "Lerroak Hedatu", 340 343 DlgCellCollSpan : "Zutabeak Hedatu", -
FCKeditor/trunk/editor/lang/fa.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "پائین", 337 337 DlgCellVerAlignBaseline : "خطپایه", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "گستردگی سطرها", 339 342 DlgCellCollSpan : "گستردگی ستونها", -
FCKeditor/trunk/editor/lang/fi.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Alas", 337 337 DlgCellVerAlignBaseline : "Tekstin alas", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Rivin jatkuvuus", 339 342 DlgCellCollSpan : "Sarakkeen jatkuvuus", -
FCKeditor/trunk/editor/lang/fo.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Niðast", 337 337 DlgCellVerAlignBaseline : "Basislinja", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Røðir, meskin fevnir um", 339 342 DlgCellCollSpan : "Kolonnur, meskin fevnir um", -
FCKeditor/trunk/editor/lang/fr-ca.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Bas", 337 337 DlgCellVerAlignBaseline : "Bas du texte", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Lignes fusionnées", 339 342 DlgCellCollSpan : "Colonnes fusionnées", -
FCKeditor/trunk/editor/lang/fr.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Bas", 337 337 DlgCellVerAlignBaseline : "Bas du texte", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Lignes fusionnées", 339 342 DlgCellCollSpan : "Colonnes fusionnées", -
FCKeditor/trunk/editor/lang/gl.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Abaixo", 337 337 DlgCellVerAlignBaseline : "Liña de Base", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Ocupar Filas", 339 342 DlgCellCollSpan : "Ocupar Columnas", -
FCKeditor/trunk/editor/lang/gu.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "નીચે", 337 337 DlgCellVerAlignBaseline : "મૂળ રેખા", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "પંક્તિ સ્પાન", 339 342 DlgCellCollSpan : "કૉલમ/ઊભી કટાર સ્પાન", -
FCKeditor/trunk/editor/lang/he.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "לתחתית", 337 337 DlgCellVerAlignBaseline : "קו תחתית", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "טווח שורות", 339 342 DlgCellCollSpan : "טווח עמודות", -
FCKeditor/trunk/editor/lang/hi.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "नीचे", 337 337 DlgCellVerAlignBaseline : "मूलरेखा", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "पंक्ति स्पैन", 339 342 DlgCellCollSpan : "कालम स्पैन", -
FCKeditor/trunk/editor/lang/hr.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Donje", 337 337 DlgCellVerAlignBaseline : "Bazno", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Spajanje redova", 339 342 DlgCellCollSpan : "Spajanje kolona", -
FCKeditor/trunk/editor/lang/hu.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "Aljára", 337 337 DlgCellVerAlignBaseline : "Egyvonalba", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Sorok egyesítése", 339 342 DlgCellCollSpan : "Oszlopok egyesítése", -
FCKeditor/trunk/editor/lang/it.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "In Basso", 337 337 DlgCellVerAlignBaseline : "Linea base", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "Righe occupate", 339 342 DlgCellCollSpan : "Colonne occupate", -
FCKeditor/trunk/editor/lang/ja.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "下", 337 337 DlgCellVerAlignBaseline : "ベースライン", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "縦幅(行数)", 339 342 DlgCellCollSpan : "横幅(列数)", -
FCKeditor/trunk/editor/lang/km.js
r2362 r2363 336 336 DlgCellVerAlignBottom : "ខាងក្រោម", 337 337 DlgCellVerAlignBaseline : "បន្ទាត់ជាមូលដ្ឋាន", 338 DlgCellType : "Cell Type", //MISSING 339 DlgCellTypeData : "Data", //MISSING 340 DlgCellTypeHeader : "Header", //MISSING 338 341 DlgCellRowSpan : "បញ្ជូលជួរផ្តេក", 339 342 DlgCellCollSpan : "បញ្ជូលជួរឈរ", -
FCKeditor/trunk/editor/lang/ko.js