You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by sn...@apache.org on 2009/09/27 05:11:43 UTC

svn commit: r819248 [3/8] - in /roller/trunk/apps/weblogger/web/roller-ui/authoring/editors: ./ xinha-0.95/ xinha-0.95/examples/ xinha-0.95/images/ xinha-0.95/images/de/ xinha-0.95/images/fr/ xinha-0.95/lang/ xinha-0.95/modules/ xinha-0.95/modules/Colo...

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/XinhaLoader.js
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/XinhaLoader.js?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/XinhaLoader.js (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/XinhaLoader.js Sun Sep 27 03:11:38 2009
@@ -0,0 +1,173 @@
+/* This compressed file is part of Xinha. For uncompressed sources, forum, and bug reports, go to xinha.org */
+/* This file is part of version 0.95 released Mon, 12 May 2008 17:33:15 +0200 */
+/* The URL of the most recent version of this file is http://svn.xinha.webfactional.com/trunk/XinhaLoader.js */
+var Xinha={};
+_editor_url=_editor_url.replace(/\x2f*$/,"/");
+Xinha.agt=navigator.userAgent.toLowerCase();
+Xinha.is_ie=((Xinha.agt.indexOf("msie")!=-1)&&(Xinha.agt.indexOf("opera")==-1));
+Xinha.ie_version=parseFloat(Xinha.agt.substring(Xinha.agt.indexOf("msie")+5));
+Xinha.is_opera=(Xinha.agt.indexOf("opera")!=-1);
+Xinha.is_khtml=(Xinha.agt.indexOf("khtml")!=-1);
+Xinha.is_webkit=(Xinha.agt.indexOf("applewebkit")!=-1);
+Xinha.is_safari=(Xinha.agt.indexOf("safari")!=-1);
+Xinha.opera_version=navigator.appVersion.substring(0,navigator.appVersion.indexOf(" "))*1;
+Xinha.is_mac=(Xinha.agt.indexOf("mac")!=-1);
+Xinha.is_mac_ie=(Xinha.is_ie&&Xinha.is_mac);
+Xinha.is_win_ie=(Xinha.is_ie&&!Xinha.is_mac);
+Xinha.is_gecko=(navigator.product=="Gecko"&&!Xinha.is_safari);
+Xinha.isRunLocally=document.URL.toLowerCase().search(/^file:/)!=-1;
+Xinha.is_designMode=(typeof document.designMode!="undefined"&&!Xinha.is_ie);
+Xinha.isSupportedBrowser=Xinha.is_gecko||(Xinha.is_opera&&Xinha.opera_version>=9.1)||Xinha.ie_version>=5.5||Xinha.is_safari;
+Xinha.loadPlugins=function(_1,_2){
+if(!Xinha.isSupportedBrowser){
+return;
+}
+Xinha.loadStyle(typeof _editor_css=="string"?_editor_css:"Xinha.css","XinhaCoreDesign");
+Xinha.createLoadingMessages(xinha_editors);
+var _3=Xinha.loadingMessages;
+Xinha._loadback(_editor_url+"XinhaCore.js",function(){
+Xinha.removeLoadingMessages(xinha_editors);
+Xinha.createLoadingMessages(xinha_editors);
+_2();
+});
+return false;
+};
+Xinha._loadback=function(_4,_5,_6,_7){
+var T=!Xinha.is_ie?"onload":"onreadystatechange";
+var S=document.createElement("script");
+S.type="text/javascript";
+S.src=_4;
+if(_5){
+S[T]=function(){
+if(Xinha.is_ie&&(!(/loaded|complete/.test(window.event.srcElement.readyState)))){
+return;
+}
+_5.call(_6?_6:this,_7);
+S[T]=null;
+};
+}
+document.getElementsByTagName("head")[0].appendChild(S);
+};
+Xinha.getElementTopLeft=function(_a){
+var _b=curtop=0;
+if(_a.offsetParent){
+_b=_a.offsetLeft;
+curtop=_a.offsetTop;
+while(_a=_a.offsetParent){
+_b+=_a.offsetLeft;
+curtop+=_a.offsetTop;
+}
+}
+return {top:curtop,left:_b};
+};
+Xinha.findPosX=function(_c){
+var _d=0;
+if(_c.offsetParent){
+return Xinha.getElementTopLeft(_c).left;
+}else{
+if(_c.x){
+_d+=_c.x;
+}
+}
+return _d;
+};
+Xinha.findPosY=function(_e){
+var _f=0;
+if(_e.offsetParent){
+return Xinha.getElementTopLeft(_e).top;
+}else{
+if(_e.y){
+_f+=_e.y;
+}
+}
+return _f;
+};
+Xinha.createLoadingMessages=function(_10){
+if(Xinha.loadingMessages||!Xinha.isSupportedBrowser){
+return;
+}
+Xinha.loadingMessages=[];
+for(var i=0;i<_10.length;i++){
+if(!document.getElementById(_10[i])){
+continue;
+}
+Xinha.loadingMessages.push(Xinha.createLoadingMessage(document.getElementById(_10[i])));
+}
+};
+Xinha.createLoadingMessage=function(_12,_13){
+if(document.getElementById("loading_"+_12.id)||!Xinha.isSupportedBrowser){
+return;
+}
+var _14=document.createElement("div");
+_14.id="loading_"+_12.id;
+_14.className="loading";
+_14.style.left=(Xinha.findPosX(_12)+_12.offsetWidth/2)-106+"px";
+_14.style.top=(Xinha.findPosY(_12)+_12.offsetHeight/2)-50+"px";
+var _15=document.createElement("div");
+_15.className="loading_main";
+_15.id="loading_main_"+_12.id;
+_15.appendChild(document.createTextNode(Xinha._lc("Loading in progress. Please wait!")));
+var _16=document.createElement("div");
+_16.className="loading_sub";
+_16.id="loading_sub_"+_12.id;
+_13=_13?_13:Xinha._lc("Loading Core");
+_16.appendChild(document.createTextNode(_13));
+_14.appendChild(_15);
+_14.appendChild(_16);
+document.body.appendChild(_14);
+return _16;
+};
+Xinha.loadStyle=function(_17,id){
+var url=_editor_url||"";
+url+=_17;
+var _1a=document.getElementsByTagName("head")[0];
+var _1b=document.createElement("link");
+_1b.rel="stylesheet";
+_1b.href=url;
+if(id){
+_1b.id=id;
+}
+_1a.appendChild(_1b);
+};
+Xinha._lc=function(_1c){
+return _1c;
+};
+Xinha._addEvent=function(el,_1e,_1f){
+if(document.addEventListener){
+el.addEventListener(_1e,_1f,true);
+}else{
+el.attachEvent("on"+_1e,_1f);
+}
+};
+Xinha.addOnloadHandler=function(_20){
+var _21=function(){
+if(arguments.callee.done){
+return;
+}
+arguments.callee.done=true;
+if(Xinha.onloadTimer){
+clearInterval(Xinha.onloadTimer);
+}
+_20.call();
+};
+if(Xinha.is_ie){
+document.write("<sc"+"ript id=__ie_onload defer src=javascript:void(0)></script>");
+var _22=document.getElementById("__ie_onload");
+_22.onreadystatechange=function(){
+if(this.readyState=="loaded"){
+_21();
+}
+};
+}else{
+if(/WebKit/i.test(navigator.userAgent)){
+Xinha.onloadTimer=setInterval(function(){
+if(/loaded|complete/.test(document.readyState)){
+_21();
+}
+},10);
+}else{
+document.addEventListener("DOMContentLoaded",_21,false);
+}
+}
+};
+

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/XinhaLoader_readme.txt
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/XinhaLoader_readme.txt?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/XinhaLoader_readme.txt (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/XinhaLoader_readme.txt Sun Sep 27 03:11:38 2009
@@ -0,0 +1,5 @@
+The XinhaLoader is a subset of Xinha only containing functions to fetch further files from the server and displaying a loading message. 
+It gives visual feedback to the user quite quickly so they don't have to watch the plain textarea and wonder if anything is happening.
+
+Usage in short: Follow the NewbieGuide, but load XinhaLoader.js instead of XinhaCore.js. 
+Make shure you define xinha_editors before calling Xinha.loadPlugins! This is different to earlier versions of the NewbieGuide (steps 1 and 2 reversed)
\ No newline at end of file

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/compression_readme.txt
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/compression_readme.txt?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/compression_readme.txt (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/compression_readme.txt Sun Sep 27 03:11:38 2009
@@ -0,0 +1,8 @@
+You can use the contrib/compress.php to batch-convert the current Xinha snapshot. To use this script, open it in a text editor, comment out the die() command at the top and open it in your browser.
+ 
+You can use the contrib/compress.bat to compress JavaScript files by drag&drop in Windows.
+
+Please be aware that the language files cannot be compressed.
+
+If you want the original files to be kept, open compress.bat and remvove the # in the line
+# FOR %%V IN (%*) DO del %%V_uncompressed.js
\ No newline at end of file

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/examples/full_example.css
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/examples/full_example.css?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/examples/full_example.css (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/examples/full_example.css Sun Sep 27 03:11:38 2009
@@ -0,0 +1,48 @@
+   /*--------------------------------------:noTabs=true:tabSize=2:indentSize=2:--
+    --  Xinha example CSS file.  This is ripped from Trac ;)
+    --
+    --  $HeadURL:http://svn.xinha.webfactional.com/trunk/examples/files/full_example.css $
+    --  $LastChangedDate:2008-02-04 01:43:21 +0100 (Mo, 04 Feb 2008) $
+    --  $LastChangedRevision:962 $
+    --  $LastChangedBy:ray $
+    --------------------------------------------------------------------------*/
+
+ body {
+   background: #fff;
+   color: #000;
+   margin: 10px;
+  }
+  body, th, td {
+   font: normal 13px verdana,arial,'Bitstream Vera Sans',helvetica,sans-serif;
+  }
+  h1, h2, h3, h4 {
+   font-family: arial,verdana,'Bitstream Vera Sans',helvetica,sans-serif;
+   font-weight: bold;
+   letter-spacing: -0.018em;
+  }
+  h1 { font-size: 21px; margin: .15em 1em 0 0 }
+  h2 { font-size: 16px; margin: 2em 0 .5em; }
+  h3 { font-size: 14px; margin: 1.5em 0 .5em; }
+  hr { border: none;  border-top: 1px solid #ccb; margin: 2em 0; }
+  address { font-style: normal }
+  img { border: none }
+
+  :link, :visited {
+   text-decoration: none;
+   color: #b00;
+   border-bottom: 1px dotted #bbb;
+  }
+  :link:hover, :visited:hover {
+   background-color: #eee;
+   color: #555;
+  }
+  h1 :link, h1 :visited ,h2 :link, h2 :visited, h3 :link, h3 :visited,
+  h4 :link, h4 :visited, h5 :link, h5 :visited, h6 :link, h6 :visited {
+   color: inherit;
+  }
+
+  .area_holder
+  {
+    margin:10px;
+  }
+  label {font-size: 11px;}
\ No newline at end of file

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/htmlarea.js
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/htmlarea.js?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/htmlarea.js (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/htmlarea.js Sun Sep 27 03:11:38 2009
@@ -0,0 +1,11 @@
+/* This compressed file is part of Xinha. For uncompressed sources, forum, and bug reports, go to xinha.org */
+/* This file is part of version 0.95 released Mon, 12 May 2008 17:33:15 +0200 */
+/* The URL of the most recent version of this file is http://svn.xinha.webfactional.com/trunk/htmlarea.js */
+if(typeof _editor_url=="string"){
+_editor_url=_editor_url.replace(/\x2f*$/,"/");
+}else{
+alert("WARNING: _editor_url is not set!  You should set this variable to the editor files path; it should preferably be an absolute path, like in '/htmlarea/', but it can be relative if you prefer.  Further we will try to load the editor files correctly but we'll probably fail.");
+_editor_url="";
+}
+document.write("<script type=\"text/javascript\" src=\""+_editor_url+"XinhaCore.js\"></script>");
+

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/de/bold.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/de/bold.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/de/bold.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/de/italic.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/de/italic.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/de/italic.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/de/underline.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/de/underline.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/de/underline.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_about.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_about.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_about.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align_center.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align_center.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align_center.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align_justify.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align_justify.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align_justify.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align_left.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align_left.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align_left.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align_right.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align_right.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_align_right.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_blank.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_blank.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_blank.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_buttons_main.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_buttons_main.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_buttons_main.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_charmap.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_charmap.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_charmap.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_clearfonts.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_clearfonts.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_clearfonts.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_color_bg.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_color_bg.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_color_bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_color_fg.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_color_fg.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_color_fg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_copy.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_copy.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_copy.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_custom.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_custom.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_custom.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_cut.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_cut.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_cut.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_delete.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_delete.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_delete.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_bold.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_bold.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_bold.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_italic.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_italic.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_italic.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_strike.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_strike.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_strike.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_sub.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_sub.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_sub.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_sup.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_sup.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_sup.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_underline.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_underline.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_format_underline.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_help.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_help.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_help.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_hr.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_hr.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_hr.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_html.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_html.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_html.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_image.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_image.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_image.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_indent_less.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_indent_less.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_indent_less.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_indent_more.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_indent_more.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_indent_more.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_killword.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_killword.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_killword.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_left_to_right.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_left_to_right.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_left_to_right.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_link.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_link.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_link.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_list_bullet.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_list_bullet.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_list_bullet.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_list_num.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_list_num.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_list_num.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_overwrite.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_overwrite.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_overwrite.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_paste.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_paste.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_paste.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_print.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_print.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_print.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_redo.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_redo.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_redo.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_right_to_left.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_right_to_left.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_right_to_left.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_rmformat.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_rmformat.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_rmformat.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_save.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_save.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_save.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_save.png
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_save.png?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_save.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_saveas.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_saveas.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_saveas.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_selectall.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_selectall.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_selectall.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_show_border.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_show_border.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_show_border.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_splitblock.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_splitblock.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_splitblock.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_splitcel.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_splitcel.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_splitcel.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_undo.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_undo.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_undo.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_word_cleaner.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_word_cleaner.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/ed_word_cleaner.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fr/bold.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fr/bold.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fr/bold.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fr/strikethrough.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fr/strikethrough.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fr/strikethrough.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fr/underline.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fr/underline.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fr/underline.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fullscreen_maximize.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fullscreen_maximize.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fullscreen_maximize.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fullscreen_minimize.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fullscreen_minimize.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/fullscreen_minimize.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/insert_table.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/insert_table.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/insert_table.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/insertfilelink.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/insertfilelink.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/insertfilelink.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/insertmacro.png
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/insertmacro.png?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/insertmacro.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/tidy.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/tidy.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/tidy.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/toggle_borders.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/toggle_borders.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/toggle_borders.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/xinha_logo.gif
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/xinha_logo.gif?rev=819248&view=auto
==============================================================================
Binary file - no diff available.

Propchange: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/images/xinha_logo.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/b5.js
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/b5.js?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/b5.js (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/b5.js Sun Sep 27 03:11:38 2009
@@ -0,0 +1,29 @@
+// I18N constants -- UTF-8
+// by Dave Lo -- dlo@interactivetools.com
+{
+  "Bold": "粗體",
+  "Italic": "斜體",
+  "Underline": "底線",
+  "Strikethrough": "刪除線",
+  "Subscript": "下標",
+  "Superscript": "上標",
+  "Justify Left": "位置靠左",
+  "Justify Center": "位置居中",
+  "Justify Right": "位置靠右",
+  "Justify Full": "位置左右平等",
+  "Ordered List": "順序清單",
+  "Bulleted List": "無序清單",
+  "Decrease Indent": "減小行前空白",
+  "Increase Indent": "加寬行前空白",
+  "Font Color": "文字顏色",
+  "Background Color": "背景顏色",
+  "Horizontal Rule": "水平線",
+  "Insert Web Link": "插入連結",
+  "Insert/Modify Image": "插入圖形",
+  "Insert Table": "插入表格",
+  "Toggle HTML Source": "切換HTML原始碼",
+  "Enlarge Editor": "放大",
+  "About this editor": "關於 Xinha",
+  "Help using editor": "說明",
+  "Current style": "字體例子"
+}

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/ch.js
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/ch.js?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/ch.js (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/ch.js Sun Sep 27 03:11:38 2009
@@ -0,0 +1,56 @@
+// I18N constants
+
+// LANG: "ch", ENCODING: UTF-8
+// Samuel Stone, http://stonemicro.com/
+
+{
+  "Bold": "粗體",
+  "Italic": "斜體",
+  "Underline": "底線",
+  "Strikethrough": "刪線",
+  "Subscript": "下標",
+  "Superscript": "上標",
+  "Justify Left": "靠左",
+  "Justify Center": "居中",
+  "Justify Right": "靠右",
+  "Justify Full": "整齊",
+  "Ordered List": "順序清單",
+  "Bulleted List": "無序清單",
+  "Decrease Indent": "伸排",
+  "Increase Indent": "縮排",
+  "Font Color": "文字顏色",
+  "Background Color": "背景顏色",
+  "Horizontal Rule": "水平線",
+  "Insert Web Link": "插入連結",
+  "Insert/Modify Image": "插入圖像",
+  "Insert Table": "插入表格",
+  "Toggle HTML Source": "切換HTML原始碼",
+  "Enlarge Editor": "伸出編輯系統",
+  "About this editor": "關於 Xinha",
+  "Help using editor": "說明",
+  "Current style": "字體例子",
+  "Undoes your last action": "回原",
+  "Redoes your last action": "重来",
+  "Cut selection": "剪制选项",
+  "Copy selection": "复制选项",
+  "Paste from clipboard": "贴上",
+  "Direction left to right": "从左到右",
+  "Direction right to left": "从右到左",
+  "OK": "好",
+  "Cancel": "取消",
+  "Path": "途徑",
+  "You are in TEXT MODE.  Use the [<>] button to switch back to WYSIWYG.": "你在用純字編輯方式.  用 [<>] 按鈕轉回 所見即所得 編輯方式.",
+  "The full screen mode is known to cause problems with Internet Explorer, due to browser bugs that we weren": "整頁式在Internet Explorer 上常出問題, 因為這是 Internet Explorer 的無名問題,我們無法解決。你可能看見一些垃圾,或遇到其他問題。我們已警告了你. 如果要轉到 正頁式 請按 好.",
+  "The Paste button does not work in Mozilla based web browsers (technical security reasons). Press CTRL-V on your keyboard to paste directly.": "The Paste button does not work in Mozilla based web browsers (technical security reasons). Press CTRL-V on your keyboard to paste directly.",
+  "Cancel": "取消",
+  "Insert/Modify Link": "插入/改寫連結",
+  "New window (_blank)": "新窗户(_blank)",
+  "None (use implicit)": "無(use implicit)",
+  "Other": "其他",
+  "Same frame (_self)": "本匡 (_self)",
+  "Target:": "目標匡:",
+  "Title (tooltip):": "主題 (tooltip):",
+  "Top frame (_top)": "上匡 (_top)",
+  "URL:": "網址:",
+  "You must enter the URL where this link points to": "你必須輸入你要连结的網址"
+}

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/cz.js
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/cz.js?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/cz.js (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/cz.js Sun Sep 27 03:11:38 2009
@@ -0,0 +1,50 @@
+// I18N constants
+
+// LANG: "cz", ENCODING: UTF-8
+// Author: Jiri Löw, <ji...@jirilow.com>
+
+// FOR TRANSLATORS:
+//
+//   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
+//      (at least a valid email address)
+//
+//   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
+//      (if this is not possible, please include a comment
+//       that states what encoding is necessary.)
+
+{
+  "Bold": "Tučně",
+  "Italic": "Kurzíva",
+  "Underline": "Podtržení",
+  "Strikethrough": "Přeškrtnutí",
+  "Subscript": "Dolní index",
+  "Superscript": "Horní index",
+  "Justify Left": "Zarovnat doleva",
+  "Justify Center": "Na střed",
+  "Justify Right": "Zarovnat doprava",
+  "Justify Full": "Zarovnat do stran",
+  "Ordered List": "Seznam",
+  "Bulleted List": "Odrážky",
+  "Decrease Indent": "Předsadit",
+  "Increase Indent": "Odsadit",
+  "Font Color": "Barva písma",
+  "Background Color": "Barva pozadí",
+  "Horizontal Rule": "Vodorovná čára",
+  "Insert Web Link": "Vložit odkaz",
+  "Insert/Modify Image": "Vložit obrázek",
+  "Insert Table": "Vložit tabulku",
+  "Toggle HTML Source": "Přepnout HTML",
+  "Enlarge Editor": "Nové okno editoru",
+  "About this editor": "O této aplikaci",
+  "Help using editor": "Nápověda aplikace",
+  "Current style": "Zvolený styl",
+  "Undoes your last action": "Vrátí poslední akci",
+  "Redoes your last action": "Opakuje poslední akci",
+  "Cut selection": "Vyjmout",
+  "Copy selection": "Kopírovat",
+  "Paste from clipboard": "Vložit",
+  "OK": "OK",
+  "Cancel": "Zrušit",
+  "Path": "Cesta",
+  "You are in TEXT MODE.  Use the [<>] button to switch back to WYSIWYG.": "Jste v TEXTOVÉM REŽIMU.  Použijte tlačítko [<>] pro přepnutí do WYSIWIG."
+}

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/da.js
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/da.js?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/da.js (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/da.js Sun Sep 27 03:11:38 2009
@@ -0,0 +1,30 @@
+// LANG: "da", ENCODING: UTF-8
+// Author: rene, <re...@laerke.net>
+
+{
+  "Bold": "Fed",
+  "Italic": "Kursiv",
+  "Underline": "Understregning",
+  "Strikethrough": "Overstregning ",
+  "Subscript": "Sænket skrift",
+  "Superscript": "Hævet skrift",
+  "Justify Left": "Venstrejuster",
+  "Justify Center": "Centrer",
+  "Justify Right": "Højrejuster",
+  "Justify Full": "Lige margener",
+  "Ordered List": "Opstilling med tal",
+  "Bulleted List": "Opstilling med punkttegn",
+  "Decrease Indent": "Formindsk indrykning",
+  "Increase Indent": "Forøg indrykning",
+  "Font Color": "Skriftfarve",
+  "Background Color": "Baggrundsfarve",
+  "Horizontal Rule": "Horisontal linie",
+  "Insert Web Link": "Indsæt hyperlink",
+  "Insert/Modify Image": "Indsæt billede",
+  "Insert Table": "Indsæt tabel",
+  "Toggle HTML Source": "HTML visning",
+  "Enlarge Editor": "Vis editor i popup",
+  "About this editor": "Om htmlarea",
+  "Help using editor": "Hjælp",
+  "Current style": "Anvendt stil"
+}

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/de.js
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/de.js?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/de.js (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/de.js Sun Sep 27 03:11:38 2009
@@ -0,0 +1,169 @@
+// I18N constants
+// LANG: "de", ENCODING: UTF-8
+{
+  "Bold": "Fett",
+  "Italic": "Kursiv",
+  "Underline": "Unterstrichen",
+  "Strikethrough": "Durchgestrichen",
+  "Subscript": "Tiefgestellt",
+  "Superscript": "Hochgestellt",
+  "Justify Left": "Linksbündig",
+  "Justify Center": "Zentriert",
+  "Justify Right": "Rechtsbündig",
+  "Justify Full": "Blocksatz",
+  "Ordered List": "Nummerierte Liste",
+  "Bulleted List": "Aufzählungsliste",
+  "Decrease Indent": "Einzug verkleinern",
+  "Increase Indent": "Einzug vergrößern",
+  "Font Color": "Schriftfarbe",
+  "Background Color": "Hindergrundfarbe",
+  "Horizontal Rule": "Horizontale Linie",
+  "Insert Web Link": "Hyperlink einfügen",
+  "Insert/Modify Image": "Bild einfügen/verändern",
+  "Insert Table": "Tabelle einfügen",
+  "Toggle HTML Source": "HTML Quelltext ein/ausschalten",
+  "Enlarge Editor": "Editor vergrößern",
+  "About this editor": "Über diesen Editor",
+  "Help using editor": "Hilfe",
+  "Current style": "Derzeitiger Stil",
+  "Undoes your last action": "Rückgängig",
+  "Redoes your last action": "Wiederholen",
+  "Cut selection": "Ausschneiden",
+  "Copy selection": "Kopieren",
+  "Paste from clipboard": "Einfügen aus der Zwischenablage",
+  "Direction left to right": "Textrichtung von Links nach Rechts",
+  "Direction right to left": "Textrichtung von Rechts nach Links",
+  "Remove formatting": "Formatierung entfernen",
+  "Select all": "Alles markieren",
+  "Print document": "Dokument ausdrucken",
+  "Clear MSOffice tags": "MSOffice filter",
+  "Clear Inline Font Specifications": "Zeichensatz Formatierungen entfernen",
+  "Would you like to clear font typefaces?": "Wollen Sie Zeichensatztypen entfernen",
+  "Would you like to clear font sizes?": "Wollen Sie Zeichensatzgrößen entfernen",
+  "Would you like to clear font colours?": "Wollen sie Zeichensatzfarben entfernen",
+  "Split Block": "Block teilen",
+  "Toggle Borders": "Tabellenränder ein/ausblenden",
+  "Save as": "speichern unter",
+  "Insert/Overwrite": "Einfügen/Überschreiben",
+  "&mdash; format &mdash;": "&mdash; Format &mdash;",
+  "Heading 1": "Überschrift 1",
+  "Heading 2": "Überschrift 2",
+  "Heading 3": "Überschrift 3",
+  "Heading 4": "Überschrift 4",
+  "Heading 5": "Überschrift 5",
+  "Heading 6": "Überschrift 6",
+  "Normal": "Normal (Absatz)",
+  "Address": "Adresse",
+  "Formatted": "Formatiert",
+
+  //dialogs
+  "OK": "OK",
+  "Cancel": "Abbrechen",
+  "Path": "Pfad",
+  "You are in TEXT MODE.  Use the [<>] button to switch back to WYSIWYG.": "Sie sind im Text-Modus. Benutzen Sie den [<>] Button, um in den visuellen Modus (WYSIWIG) zu gelangen.",
+   "The Paste button does not work in Mozilla based web browsers (technical security reasons). Press CTRL-V on your keyboard to paste directly.": "Aus Sicherheitsgründen dürfen Skripte normalerweise nicht auf Ausschneiden/Kopieren/Einfügen zugreifen. Benutzen Sie bitte die entsprechenden Tastatur-Kommandos (Strg + x/c/v).",
+
+  "You need to select some text before create a link": "Sie müssen einen Text markieren, um einen Link zu erstellen",
+  "Your Document is not well formed. Check JavaScript console for details.": "Ihr Dokument ist in keinem sauberen Format. Benutzen Sie die Javascript Console für weitere Informationen.",
+
+  "Alignment:": "Ausrichtung:",
+  "Not set": "nicht eingestellt",
+  "Left": "links",
+  "Right": "rechts",
+  "Texttop": "oben bündig",
+  "Absmiddle": "mittig",
+  "Baseline": "Grundlinie",
+  "Absbottom": "unten bündig",
+  "Bottom": "unten",
+  "Middle": "zentriert",
+  "Top": "oben",
+
+  "Layout": "Layout",
+  "Spacing": "Abstand",
+  "Horizontal:": "horizontal:",
+  "Horizontal padding": "horizontaler Inhaltsabstand",
+  "Vertical:": "vertikal:",
+  "Vertical padding": "vertikaler Inhaltsabstand",
+  "Border thickness:": "Randstärke:",
+  "Leave empty for no border": "leer lassen für keinen Rand",
+
+  //Insert Link
+  "Insert/Modify Link": "Verknüpfung hinzufügen/ändern",
+  "None (use implicit)": "k.A. (implizit)",
+  "New window (_blank)": "Neues Fenster (_blank)",
+  "Same frame (_self)": "Selber Rahmen (_self)",
+  "Top frame (_top)": "Oberster Rahmen (_top)",
+  "Other": "Anderes",
+  "Target:": "Ziel:",
+  "Title (tooltip):": "Titel (Tooltip):",
+  "URL:": "URL:",
+  "You must enter the URL where this link points to": "Sie müssen eine Ziel-URL angeben für die Verknüpfung angeben",
+
+  // Insert Table
+  "Insert Table": "Tabelle einfügen",
+  "Rows:": "Zeilen:",
+  "Number of rows": "Zeilenanzahl",
+  "Cols:": "Spalten:",
+  "Number of columns": "Spaltenanzahl",
+  "Width:": "Breite:",
+  "Width of the table": "Tabellenbreite",
+  "Percent": "Prozent",
+  "Pixels": "Pixel",
+  "Em": "Geviert",
+  "Width unit": "Größeneinheit",
+  "Fixed width columns": "Spalten mit fester Breite",
+  "Positioning of this table": "Positionierung der Tabelle",
+  "Cell spacing:": "Zellenabstand:",
+  "Space between adjacent cells": "Raum zwischen angrenzenden Zellen",
+  "Cell padding:": "Innenabstand:",
+  "Space between content and border in cell": "Raum zwischen Inhalt und Rand der Zelle",
+  "You must enter a number of rows": "Bitte geben Sie die Anzahl der Zeilen an",
+  "You must enter a number of columns": "Bitte geben Sie die Anzahl der Spalten an",
+
+  // Insert Image
+  "Insert Image": "Bild einfügen",
+  "Image URL:": "Bild URL:",
+  "Enter the image URL here": "Bitte geben sie hier die Bild URL ein",
+  "Preview": "Voransicht",
+  "Preview the image in a new window": "Voransicht des Bildes in einem neuen Fenster",
+  "Alternate text:": "Alternativer Text:",
+  "For browsers that don't support images": "für Browser, die keine Bilder unterstützen",
+  "Positioning of this image": "Positionierung dieses Bildes",
+  "Image Preview:": "Bild Voransicht:",
+  "You must enter the URL": "Bitte geben Sie die URL ein",
+
+  "button_bold": "de/bold.gif",
+  "button_italic": "de/italic.gif",
+  "button_underline": "de/underline.gif",
+
+  // Editor Help
+  "Keyboard shortcuts": "Tastaturkürzel",
+  "The editor provides the following key combinations:": "Der Editor unterstützt die folgenden kombinationen:",
+  "new paragraph": "Neuer Absatz(Paragraph)",
+  "insert linebreak": "Harter Umbruch einfügen",
+  "Set format to paragraph": "Setze Formatierung auf Absatz",
+  "Clean content pasted from Word": "Von Word eingefügter Text bereinigen",
+  "Headings": "Überschrift Typ 1 bis 6",
+  "Close": "Schließen",
+
+  // Loading messages
+  "Loading in progress. Please wait!": "Editor wird geladen. Bitte warten !",
+  "Loading plugin $plugin" : "Plugin $plugin wird geladen",
+  "Register plugin $plugin" : "Plugin $plugin wird registriert", 
+  "Constructing object": "Objekt wird generiert",
+  "Generate Xinha framework": "Xinha Framework wird generiert",
+  "Init editor size":"Größe wird berechnet", 
+  "Create Toolbar": "Werkzeugleiste wird generiert",
+  "Create Statusbar" : "Statusleiste wird generiert",
+  "Register right panel" : "Rechtes Panel wird generiert", 
+  "Register left panel" : "Linkes Panel wird generiert", 
+  "Register bottom panel" : "Unteres Panel wird generiert", 
+  "Register top panel" : "Oberes Panel wird generiert", 
+  "Finishing" : "Laden wird abgeschlossen", 
+  
+  // ColorPicker
+  "Click a color..." : "Farbe wählen",
+  "Sample" : "Beispiel",
+  "Web Safe: " : "Web Safe: ",
+  "Color: " : "Farbe: "
+};
\ No newline at end of file

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/ee.js
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/ee.js?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/ee.js (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/ee.js Sun Sep 27 03:11:38 2009
@@ -0,0 +1,50 @@
+// I18N constants
+
+// LANG: "ee", ENCODING: UTF-8
+// Author: Martin Raie, <al...@hot.ee>
+
+// FOR TRANSLATORS:
+//
+//   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
+//      (at least a valid email address)
+//
+//   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
+//      (if this is not possible, please include a comment
+//       that states what encoding is necessary.)
+
+{
+  "Bold": "Paks",
+  "Italic": "Kursiiv",
+  "Underline": "Allakriipsutatud",
+  "Strikethrough": "Läbikriipsutatud",
+  "Subscript": "Allindeks",
+  "Superscript": "Ülaindeks",
+  "Justify Left": "Joonda vasakule",
+  "Justify Center": "Joonda keskele",
+  "Justify Right": "Joonda paremale",
+  "Justify Full": "Rööpjoonda",
+  "Ordered List": "Nummerdus",
+  "Bulleted List": "Täpploend",
+  "Decrease Indent": "Vähenda taanet",
+  "Increase Indent": "Suurenda taanet",
+  "Font Color": "Fondi värv",
+  "Background Color": "Tausta värv",
+  "Horizontal Rule": "Horisontaaljoon",
+  "Insert Web Link": "Lisa viit",
+  "Insert/Modify Image": "Lisa pilt",
+  "Insert Table": "Lisa tabel",
+  "Toggle HTML Source": "HTML/tavaline vaade",
+  "Enlarge Editor": "Suurenda toimeti aken",
+  "About this editor": "Teave toimeti kohta",
+  "Help using editor": "Spikker",
+  "Current style": "Kirjastiil",
+  "Undoes your last action": "Võta tagasi",
+  "Redoes your last action": "Tee uuesti",
+  "Cut selection": "Lõika",
+  "Copy selection": "Kopeeri",
+  "Paste from clipboard": "Kleebi",
+  "OK": "OK",
+  "Cancel": "Loobu",
+  "Path": "Path",
+  "You are in TEXT MODE.  Use the [<>] button to switch back to WYSIWYG.": "Sa oled tekstireziimis.  Kasuta nuppu [<>] lülitamaks tagasi WYSIWIG reziimi."
+}

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/el.js
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/el.js?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/el.js (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/el.js Sun Sep 27 03:11:38 2009
@@ -0,0 +1,55 @@
+// I18N constants
+
+// LANG: "el", ENCODING: UTF-8
+// Author: Dimitris Glezos, dimitris@glezos.com
+
+{
+  "Bold": "ΞˆΞ½Ο„ΞΏΞ½Ξ±",
+  "Italic": "Πλάγια",
+  "Underline": "Ξ�πογραμμισμένα",
+  "Strikethrough": "Διαγραμμένα",
+  "Subscript": "ΔΡίκτης",
+  "Superscript": "ΔΡίκτης",
+  "Justify Left": "Στοίχιση ΑριστΡρά",
+  "Justify Center": "Στοίχιση ΞšΞ­Ξ½Ο„ΟΞΏ",
+  "Justify Right": "Στοίχιση ΔΡξιά",
+  "Justify Full": "Ξ Ξ»Ξ�ρης Στοίχιση",
+  "Ordered List": "Αρίθμηση",
+  "Bulleted List": "ΞšΞΏΟ…ΞΊΞΊΞ―Ξ΄Ξ΅Ο‚",
+  "Decrease Indent": "ΞœΞ΅Ξ―Ο‰ΟƒΞ· ΕσοχΞ�Ο‚",
+  "Increase Indent": "Αύξηση ΕσοχΞ�Ο‚",
+  "Font Color": "Χρώμα ΓραμματοσΡιράς",
+  "Background Color": "Χρώμα Ξ¦ΟŒΞ½Ο„ΞΏΟ…",
+  "Horizontal Rule": "ΞŸΟΞΉΞΆΟŒΞ½Ο„ΞΉΞ± ΓραμμΞ�",
+  "Insert Web Link": "ΕισαγωγΞ� Συνδέσμου",
+  "Insert/Modify Image": "ΕισαγωγΞ�/Ξ�ροποποίηση Ξ•ΞΉΞΊΟŒΞ½Ξ±Ο‚",
+  "Insert Table": "ΕισαγωγΞ� Ξ Ξ―Ξ½Ξ±ΞΊΞ±",
+  "Toggle HTML Source": "ΕναλλαγΞ� σΡ/Ξ±Ο€ΟŒ HTML",
+  "Enlarge Editor": "ΞœΞ΅Ξ³Ξ­Ξ½ΞΈΟ…Ξ½ΟƒΞ· ΡπΡξΡργαστΞ�",
+  "About this editor": "ΠληροφορίΡς",
+  "Help using editor": "Ξ’ΞΏΞ�θΡια",
+  "Current style": "Παρών στυλ",
+  "Undoes your last action": "ΑναίρΡση τΡλΡυταίας ΡνέργΡιας",
+  "Redoes your last action": "Επαναφορά Ξ±Ο€ΟŒ αναίρΡση",
+  "Cut selection": "ΑποκοπΞ�",
+  "Copy selection": "ΑντιγραφΞ�",
+  "Paste from clipboard": "Ξ•Ο€ΞΉΞΊΟŒΞ»Ξ»Ξ·ΟƒΞ·",
+  "Direction left to right": "ΞšΞ±Ο„Ξ΅ΟΞΈΟ…Ξ½ΟƒΞ· αριστΡρά προς δΡξιά",
+  "Direction right to left": "ΞšΞ±Ο„Ξ΅ΟΞΈΟ…Ξ½ΟƒΞ· Ξ±Ο€ΟŒ δΡξιά προς τα αριστΡρά",
+  "OK": "OK",
+  "Cancel": "Ακύρωση",
+  "Path": "ΔιαδρομΞ�",
+  "You are in TEXT MODE.  Use the [<>] button to switch back to WYSIWYG.": "ΕίστΡ σΡ TEXT MODE.  ΧρησιμοποιΞ�στΡ το κουμπί [<>] Ξ³ΞΉΞ± Ξ½Ξ± ΡπανέρθΡτΡ στο WYSIWIG.",
+  "The full screen mode is known to cause problems with Internet Explorer, due to browser bugs that we weren": "Ξ— κατάσταση πλΞ�ρης ΞΏΞΈΟŒΞ½Ξ·Ο‚ έχΡι προβλΞ�ματα ΞΌΞ΅ τον Internet Explorer, Ξ»ΟŒΞ³Ο‰ σφαλμάτων στον ίδιο τον browser.  Αν το σύστημα σας Ρίναι Windows 9x μπορΡί ΞΊΞ±ΞΉ Ξ½Ξ± χρΡιαΟÂ
 ƒÎŸÂ„ΡίτΡ reboot. Αν ΡίστΡ σίγουροι, πατΞ�στΡ ΟΚ.",
+  "Cancel": "Ακύρωση",
+  "Insert/Modify Link": "ΕισαγωγΞ�/Ξ�ροποποίηση σύνδΡσμου",
+  "New window (_blank)": "Νέο παράθυρο (_blank)",
+  "None (use implicit)": "Κανένα (χρΞ�ση Ξ±Ο€ΟŒΞ»Ο…Ο„ΞΏΟ…)",
+  "Other": "Αλλο",
+  "Same frame (_self)": "Ίδιο frame (_self)",
+  "Target:": "Target:",
+  "Title (tooltip):": "Ξ�ίτλος (tooltip):",
+  "Top frame (_top)": "Πάνω frame (_top)",
+  "URL:": "URL:",
+  "You must enter the URL where this link points to": "ΠρέπΡι Ξ½Ξ± ΡισάγΡτΡ το URL που οδηγΡί Ξ±Ο…Ο„ΟŒΟ‚ ΞΏ σύνδΡσμος"
+}

Added: roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/es.js
URL: http://svn.apache.org/viewvc/roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/es.js?rev=819248&view=auto
==============================================================================
--- roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/es.js (added)
+++ roller/trunk/apps/weblogger/web/roller-ui/authoring/editors/xinha-0.95/lang/es.js Sun Sep 27 03:11:38 2009
@@ -0,0 +1,167 @@
+// I18N constants
+// LANG: "de", ENCODING: UTF-8
+{
+  "Bold": "Negrita",
+  "Italic": "Cursiva",
+  "Underline": "Subrayado",
+  "Strikethrough": "Tachado",
+  "Subscript": "Subíndice",
+  "Superscript": "Superíndice",
+  "Justify Left": "Alinear a la izquierda",
+  "Justify Center": "Alinear al centro",
+  "Justify Right": "Alinear a la derecha",
+  "Justify Full": "Justificar",
+  "Ordered List": "Lista numerada",
+  "Bulleted List": "Lista no numerada",
+  "Decrease Indent": "Reducir sangría",
+  "Increase Indent": "Aumentar sangría",
+  "Font Color": "Color de la fuente",
+  "Background Color": "Color de fondo",
+  "Horizontal Rule": "Regla horizontal",
+  "Insert Web Link": "Insertar enlace web",
+  "Insert/Modify Image": "Insertar/modificar imagen",
+  "Insert Table": "Insertar una tabla",
+  "Toggle HTML Source": "Ver HTML",
+  "Enlarge Editor": "Editor a pantalla completa",
+  "About this editor": "Sobre este Editor",
+  "Help using editor": "Ayuda",
+  "Current style": "Estilo actual",
+  "Undoes your last action": "Deshacer",
+  "Redoes your last action": "Rehacer",
+  "Cut selection": "Cortar",
+  "Copy selection": "Copiar",
+  "Paste from clipboard": "Pegar desde el portapapeles",
+  "Direction left to right": "Dirección de izquierda a derecha",
+  "Direction right to left": "Dirección de derecha a izquierda",
+  "Remove formatting": "Borrar formato",
+  "Select all": "Seleccionar todo",
+  "Print document": "Imprimir documento",
+  "Clear MSOffice tags": "Borrar etiquetas de MSOffice",
+  "Clear Inline Font Specifications": "Borrar las etiquetas de fuente",
+  "Would you like to clear font typefaces?": "¿Desea eliminar las definiciaones de tipo de fuente?",
+  "Would you like to clear font sizes?": "¿Desea eliminar las definiciones de tamaño de fuente?",
+  "Would you like to clear font colours?": "¿Desea eliminar las definiciones de color de fuente?",
+  "Split Block": "Dividir el bloque",
+  "Toggle Borders": "Añadir/Quitar bordes",
+  "Save as": "Guardar como",
+  "Insert/Overwrite": "Insertar/Sobreescribir",
+  "&mdash; format &mdash;": "&mdash; formato &mdash;",
+  "&mdash; font &mdash;": "&mdash; fuente &mdash;",
+  "&mdash; size &mdash;": "&mdash; tamaño &mdash;",
+  "Heading 1": "Cabecera 1",
+  "Heading 2": "Cabecera 2",
+  "Heading 3": "Cabecera 3",
+  "Heading 4": "Cabecera 4",
+  "Heading 5": "Cabecera 5",
+  "Heading 6": "Cabecera 6",
+  "Normal": "Normal",
+  "Address": "Dirección",
+  "Formatted": "Formateado",
+
+  //dialogs
+  "OK": "Aceptar",
+  "Cancel": "Cancelar",
+  "Path": "Ruta",
+  "You are in TEXT MODE.  Use the [<>] button to switch back to WYSIWYG.": "Se encuentra en MODO TEXTO. Use el botón [<>] para cambiar de nuevo al modo WYSIWYG",
+   "The Paste button does not work in Mozilla based web browsers (technical security reasons). Press CTRL-V on your keyboard to paste directly.": "El botón de pegar no funciona en los navegadores de Mozilla por motivos de seguridad. Presione CTRL-V en su teclado para pegarlo directamente",
+
+  "You need to select some text before create a link": "Necesita seleccionar algún texto antes de crear un link",
+  "Your Document is not well formed. Check JavaScript console for details.": "Su documento no está bien formado. Compruebe la consola de JavaScript para obtener más detalles",
+
+  "Alignment:": "Alineación:",
+  "Not set": "No definido",
+  "Left": "Izquierda",
+  "Right": "Derecha",
+  "Texttop": "Texto Superior",
+  "Absmiddle": "Medio Absoluto",
+  "Baseline": "Línea base",
+  "Absbottom": "Inferior absoluto",
+  "Bottom": "Inferior",
+  "Middle": "Medio",
+  "Top": "Superior",
+
+  "Layout": "Distribución",
+  "Spacing": "Espaciado",
+  "Horizontal:": "horizontal:",
+  "Horizontal padding": "Relleno horizontal",
+  "Vertical:": "Vertical:",
+  "Vertical padding": "Relleno Vertical",
+  "Border thickness:": "Tamaño del borde:",
+  "Leave empty for no border": "Vacío si no desea ningún borde",
+
+  //Insert Link
+  "Insert/Modify Link": "Insertar/Modificar un enlace",
+  "None (use implicit)": "Vacío ( usar implícito )",
+  "New window (_blank)": "Nueva ventana (_blank)",
+  "Same frame (_self)": "Mismo marco (_self)",
+  "Top frame (_top)": "Marco superior (_top)",
+  "Other": "Otro",
+  "Target:": "Destino:",
+  "Title (tooltip):": "Título (Tooltip):",
+  "URL:": "URL:",
+  "You must enter the URL where this link points to": "Debe introducir la URL a donde apunta este enlace",
+
+  // Insert Table
+  "Insert Table": "Añadir una tabla",
+  "Rows:": "Filas:",
+  "Number of rows": "Número de filas",
+  "Cols:": "Columnas:",
+  "Number of columns": "Número de columnas",
+  "Width:": "Ancho:",
+  "Width of the table": "Ancho de la tabla",
+  "Percent": "Porcentaje",
+  "Pixels": "Pixels",
+  "Em": "Em",
+  "Width unit": "Unidad de anchura",
+  "Fixed width columns": "Columnas de ancho fijo",
+  "Positioning of this table": "Posición de esta tabla",
+  "Cell spacing:": "Espaciado entre celdas:",
+  "Space between adjacent cells": "Espaciado entre celdas adyacentes",
+  "Cell padding:": "Relleno de celdas:",
+  "Space between content and border in cell": "Escapcio entre el contenido y el borde de la celda",
+  "You must enter a number of rows": "Debe introducir un número de filas",
+  "You must enter a number of columns": "Debe introducir un número de columnas",
+
+  // Insert Image
+  "Insert Image": "Insertar una imagen",
+  "Image URL:": "Imagen URL:",
+  "Enter the image URL here": "",
+  "Preview": "Previsualizar",
+  "Preview the image in a new window": "Previsualizar en una nueva ventana",
+  "Alternate text:": "Texto alternativo:",
+  "For browsers that don't support images": "Para navegadores que no soportan imágenes",
+  "Positioning of this image": "Posición de la imagen",
+  "Image Preview:": "Previsualización de la imagen:",
+  "You must enter the URL": "Debe introducir la URL",
+
+  // Editor Help
+  "Keyboard shortcuts": "Atajos de teclado",
+  "The editor provides the following key combinations:": "El editor proporciona las siguientes combinaciones:",
+  "new paragraph": "Nuevo parrafo",
+  "insert linebreak": "Insertar salto de línea",
+  "Set format to paragraph": "EStablecer el formato a parrafo",
+  "Clean content pasted from Word": "Limpiar el contenido pegado desde Word",
+  "Headings": "Cabeceras",
+  "Close": "Cerrar",
+
+  // Loading messages
+  "Loading in progress. Please wait!": "Carga en proceso. Por favor espere.",
+  "Loading plugin $plugin" : "Cargando el plugin $plugin",
+  "Register plugin $plugin" : "Registro de plugin $plugin", 
+  "Constructing object": "Construyendo objeto",
+  "Generate Xinha framework": "Generar Xinha framework",
+  "Init editor size":"Iniciar el tamaño del editor", 
+  "Create Toolbar": "Crear barra de herramientas",
+  "Create Statusbar" : "Crear barra de estado",
+  "Register right panel" : "Registrar panel derecho", 
+  "Register left panel" : "Registrar panel izquierdo", 
+  "Register bottom panel" : "Registar panel inferior", 
+  "Register top panel" : "Registar panel superior", 
+  "Finishing" : "Finalizando",
+  
+  // ColorPicker
+  "Click a color..." : "Seleccione un color...",
+  "Sample" : "Muestra",
+  "Web Safe: " : "Color web: ",
+  "Color: " : "Color: "
+}
\ No newline at end of file