[freeside-commits] freeside/httemplate/elements/fckeditor/editor/lang _getfontformat.html, NONE, 1.1 _translationstatus.txt, NONE, 1.1 af.js, NONE, 1.1 ar.js, NONE, 1.1 bg.js, NONE, 1.1 bn.js, NONE, 1.1 bs.js, NONE, 1.1 ca.js, NONE, 1.1 cs.js, NONE, 1.1 da.js, NONE, 1.1 de.js, NONE, 1.1 el.js, NONE, 1.1 en-au.js, NONE, 1.1 en-ca.js, NONE, 1.1 en-uk.js, NONE, 1.1 en.js, NONE, 1.1 eo.js, NONE, 1.1 es.js, NONE, 1.1 et.js, NONE, 1.1 eu.js, NONE, 1.1 fa.js, NONE, 1.1 fi.js, NONE, 1.1 fo.js, NONE, 1.1 fr.js, NONE, 1.1 gl.js, NONE, 1.1 he.js, NONE, 1.1 hi.js, NONE, 1.1 hr.js, NONE, 1.1 hu.js, NONE, 1.1 it.js, NONE, 1.1 ja.js, NONE, 1.1 km.js, NONE, 1.1 ko.js, NONE, 1.1 lt.js, NONE, 1.1 lv.js, NONE, 1.1 mn.js, NONE, 1.1 ms.js, NONE, 1.1 nb.js, NONE, 1.1 nl.js, NONE, 1.1 no.js, NONE, 1.1 pl.js, NONE, 1.1 pt-br.js, NONE, 1.1 pt.js, NONE, 1.1 ro.js, NONE, 1.1 ru.js, NONE, 1.1 sk.js, NONE, 1.1 sl.js, NONE, 1.1 sr-latn.js, NONE, 1.1 sr.js, NONE, 1.1 sv.js, NONE, 1.1 th.js, NONE, 1.1 tr.js, NONE, 1.1 uk.js, NONE, 1.1 vi.js, NONE, 1.1 zh-cn.js, NONE, 1.1 zh.js, NONE, 1.1

Ivan,,, ivan at wavetail.420.am
Wed Aug 1 15:26:36 PDT 2007


Update of /home/cvs/cvsroot/freeside/httemplate/elements/fckeditor/editor/lang
In directory wavetail:/tmp/cvs-serv23435/httemplate/elements/fckeditor/editor/lang

Added Files:
	_getfontformat.html _translationstatus.txt af.js ar.js bg.js 
	bn.js bs.js ca.js cs.js da.js de.js el.js en-au.js en-ca.js 
	en-uk.js en.js eo.js es.js et.js eu.js fa.js fi.js fo.js fr.js 
	gl.js he.js hi.js hr.js hu.js it.js ja.js km.js ko.js lt.js 
	lv.js mn.js ms.js nb.js nl.js no.js pl.js pt-br.js pt.js ro.js 
	ru.js sk.js sl.js sr-latn.js sr.js sv.js th.js tr.js uk.js 
	vi.js zh-cn.js zh.js 
Log Message:
event refactor, landing on HEAD!

--- NEW FILE: ar.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: th.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: lt.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: km.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: ru.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: pt-br.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: ms.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: zh-cn.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: _getfontformat.html ---
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!--
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
 * Copyright (C) 2003-2007 Frederico Caldeira Knabben
 *
 * == BEGIN LICENSE ==
 *
 * Licensed under the terms of any of the following licenses at your
 * choice:
 *
 *  - GNU General Public License Version 2 or later (the "GPL")
 *    http://www.gnu.org/licenses/gpl.html
 *
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
 *    http://www.gnu.org/licenses/lgpl.html
 *
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
 *    http://www.mozilla.org/MPL/MPL-1.1.html
 *
 * == END LICENSE ==
-->
<html>
	<head>
		<title></title>
	</head>
	<script language="javascript">

window.onload = function()
{
	var oRange = document.selection.createRange() ;

	var sNormal ;
	var sFormats = '' ;
	for ( var i = 1 ; i <= 9 ; i++ )
	{
		oRange.moveToElementText( document.getElementById( 'x' + i ) ) ;
		sFormats += oRange.queryCommandValue( 'FormatBlock' ) ;
		if ( i == 1 )
			sNormal = sFormats ;
		sFormats += ';' ;
	}

	document.getElementById('xFontFormats').innerHTML = sFormats + sNormal + ' (DIV)' ;
}
	</script>
	<body>
		<table width="70%" align="center">
			<tr>
				<td>
					<h3>FontFormats Localization</h3>
					<p>
						IE has some limits when handling the "Font Format". It actually uses localized
						strings to retrieve the current format value. This makes it very difficult to
						make a system that works on every single computer in the world.
					</p>
					<p>
						With FCKeditor, this problem impacts in the "Format" toolbar command that
						doesn't reflects the format of the current cursor position.
					</p>
					<p>
						There is only one way to make it work. We must localize FCKeditor using the
						strings used by IE. In this way, we will have the expected behavior at least
						when using FCKeditor in the same language as the browser. So, when localizing
						FCKeditor, go to a computer with IE in the target language, open this page and
						use the following string to the "FontFormats" value:
					</p>
					<div style="white-space: nowrap">
						FontFormats : "<span id="xFontFormats" style="COLOR: #000099"></span>",
					</div>
				</td>
			</tr>
		</table>
		<div style="DISPLAY: none">
			<p id="x1">&nbsp;</p>
			<pre id="x2">&nbsp;</pre>
			<address id="x3">&nbsp;</address>
			<h1 id="x4">&nbsp;</h1>
			<h2 id="x5">&nbsp;</h2>
			<h3 id="x6">&nbsp;</h3>
			<h4 id="x7">&nbsp;</h4>
			<h5 id="x8">&nbsp;</h5>
			<h6 id="x9">&nbsp;</h6>
		</div>
	</body>
</html>

--- NEW FILE: fr.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: ro.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: pl.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: sl.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: it.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: cs.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: ko.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: hu.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: en-uk.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: eu.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: de.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: af.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: ca.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: lv.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: bg.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: fi.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: sr-latn.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: mn.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: fo.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: hi.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: uk.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: sr.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: nl.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: no.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: nb.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: _translationstatus.txt ---
/*
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
 * Copyright (C) 2003-2007 Frederico Caldeira Knabben
 *
 * == BEGIN LICENSE ==
 *
 * Licensed under the terms of any of the following licenses at your
 * choice:
 *
 *  - GNU General Public License Version 2 or later (the "GPL")
 *    http://www.gnu.org/licenses/gpl.html
 *
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
 *    http://www.gnu.org/licenses/lgpl.html
 *
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
 *    http://www.mozilla.org/MPL/MPL-1.1.html
 *
 * == END LICENSE ==
 *
 * Translations Status.
 */

af.js      Found: 401   Missing: 1
ar.js      Found: 401   Missing: 1
bg.js      Found: 378   Missing: 24
bn.js      Found: 386   Missing: 16
bs.js      Found: 230   Missing: 172
ca.js      Found: 402   Missing: 0
cs.js      Found: 400   Missing: 2
da.js      Found: 386   Missing: 16
de.js      Found: 401   Missing: 1
el.js      Found: 401   Missing: 1
en-au.js   Found: 402   Missing: 0
en-ca.js   Found: 402   Missing: 0
en-uk.js   Found: 402   Missing: 0
eo.js      Found: 350   Missing: 52
es.js      Found: 386   Missing: 16
et.js      Found: 402   Missing: 0
eu.js      Found: 386   Missing: 16
fa.js      Found: 402   Missing: 0
fi.js      Found: 402   Missing: 0
fo.js      Found: 401   Missing: 1
fr.js      Found: 401   Missing: 1
gl.js      Found: 386   Missing: 16
he.js      Found: 402   Missing: 0
hi.js      Found: 401   Missing: 1
hr.js      Found: 401   Missing: 1
hu.js      Found: 401   Missing: 1
it.js      Found: 401   Missing: 1
ja.js      Found: 401   Missing: 1
km.js      Found: 376   Missing: 26
ko.js      Found: 373   Missing: 29
lt.js      Found: 381   Missing: 21
lv.js      Found: 386   Missing: 16
mn.js      Found: 230   Missing: 172
ms.js      Found: 356   Missing: 46
nb.js      Found: 400   Missing: 2
nl.js      Found: 401   Missing: 1
no.js      Found: 400   Missing: 2
pl.js      Found: 386   Missing: 16
pt-br.js   Found: 401   Missing: 1
pt.js      Found: 386   Missing: 16
ro.js      Found: 400   Missing: 2
ru.js      Found: 401   Missing: 1
sk.js      Found: 401   Missing: 1
sl.js      Found: 378   Missing: 24
sr-latn.js Found: 373   Missing: 29
sr.js      Found: 373   Missing: 29
sv.js      Found: 401   Missing: 1
th.js      Found: 398   Missing: 4
tr.js      Found: 401   Missing: 1
uk.js      Found: 402   Missing: 0
vi.js      Found: 401   Missing: 1
zh-cn.js   Found: 401   Missing: 1
zh.js      Found: 401   Missing: 1

--- NEW FILE: eo.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: hr.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: en-au.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: da.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: vi.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: tr.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: en-ca.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: el.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: zh.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: bn.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: ja.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: sk.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: en.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: pt.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: et.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: he.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: gl.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: es.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: fa.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: bs.js ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: sv.js ---
(This appears to be a binary file; contents omitted.)



More information about the freeside-commits mailing list