2003-05-06 11:14:31 +00:00
////////////////////////////////////////////////////////////////////////////////
//
// HTML Text Editing Component for hosting in Web Pages
// Copyright (C) 2001 Ramesys (Contracting Services) Limited
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU LesserGeneral Public License
// along with this program; if not a copy can be obtained from
//
// http://www.gnu.org/copyleft/lesser.html
//
// or by writing to:
//
// Free Software Foundation, Inc.
// 59 Temple Place - Suite 330,
// Boston,
// MA 02111-1307,
// USA.
//
// Original Developer:
//
// Austin David France
// Ramesys (Contracting Services) Limited
// Mentor House
// Ainsworth Street
// Blackburn
// Lancashire
// BB1 6AY
// United Kingdom
// email: Austin.France@Ramesys.com
//
// Home Page: http://richtext.sourceforge.net/
// Support: http://richtext.sourceforge.net/
//
////////////////////////////////////////////////////////////////////////////////
//
// Authors & Contributers:
//
// OZ Austin David France [austin.france@ramesys.com]
// Primary Developer
//
// TE Torbj<62> rn Engedal [torbjoen@stud.ntnu.no]
// Doc. Translator
//
// GE Herfurth, Gerrit [gerrit.herfurth@gs-druckfarben.de]
//
// BC Bill Chalmers [bill_paula@btinternet.com]
//
// History:
//
// OZ 16-02-2002
// Initial Implementation
//
// TE 17-02-2002
// Norwegian Translation
//
// GE 05-06-2002
// German Translation
//
// OZ 01-07-2002
// Extended EN translation to include table editing. Other languages
// to follow.
//
// BC 21-07-2002
// Fixed bug no: 584424, trying to set lang equal to local[lang] caused error
// if the users local lang was not in the predefined locale array.
//
// BC 31-07-2002
// Added french translation courtesy of Arnaud Vatel.
//
// OZ 27-08-2002
// Added Russian Translation - submitted by Artem Orlov [art@ural.ru]
//
// OZ 27-08-2002
// Added Turkish Translation - submitted by Fatih BOY <fatih_boy@yahoo.com>
//
// OZ 27-08-2002
// Fix bug where missing text in non-en/us language was not falling back
// to en/us text.
//
// OZ 27-08-2002
// Added Italiano Translation - submitted by Angelo Del Mazza <delmazza@a99.it>
//
// BC 04-09-2002
// Added Dutch Translation - Courtesy of levOOware, Marja Ribbers-de Vroed
//
// BC 31-10-2002
// Added Portugese (Brazilian) Translation - Courtesy of Ricardo Colombani de Sousa <colombani@ig.com.br>
//
// BC 31-10-2002
// Added Danish Translation - Courtesy of Morten Flyger <flyger@email.dk>
//
// BC 31-10-2002
// Added bold, underline and italic icons sources for en-us
////////////////////////////////////////////////////////////////////////////////
var locale = new Object ;
// locale.getLanguage(): Called to work out what language to use.
locale . getLanguage = function ( )
{
return locale . language ? locale . language : navigator . userLanguage ;
}
// locale.getString(): Called to return the language variant of a @code string.
// this routin will fall back to en-us is no language variant is found. If no
// english version exists, the code is returned.
locale . getString = function ( str , lang )
{
// If not supplied, pick up the language to use
if ( ! lang ) lang = locale . getLanguage ( ) ;
// Get references to required languages
if ( ! locale [ lang ] )
{
enus = lang = locale [ "en-us" ] ;
}
else
{
lang = locale [ lang ] ;
enus = locale [ "en-us" ] ;
}
// Find the end of the text code
var i = str . indexOf ( '@{' ) ;
while ( i != - 1 )
{
// Find the closing }
var j = str . indexOf ( '}' , i + 1 ) ;
// Extrace the language code
var code = str . substr ( i + 2 , j - i - 2 ) ;
// Return the language version of the text
if ( lang [ code ] ) {
str = str . substr ( 0 , i ) + lang [ code ] + str . substr ( i + j + 1 ) ;
} else {
if ( enus [ code ] ) {
str = str . substr ( 0 , i ) + enus [ code ] + str . substr ( i + j + 1 ) ;
}
}
// Find the next code if any
i = str . indexOf ( '@{' , i + 1 ) ;
}
// Untranslated
return str ;
}
// locale.setLocale(): Called once the editor has loaded to replace all language
// codes in alt, title and innerText with thier language counterparts.
locale . setLocale = function ( )
{
// Work out which language to apply
var lang = locale . getLanguage ( ) ;
// Enumerate all elements within the document
for ( var i = 0 ; i < document . all . length ; i ++ )
{
// Get a reference to this element
var el = document . all ( i ) ;
// Translate the alt attribute (alternate image text) if required
if ( el . alt && el . alt . indexOf ( '@{' ) != - 1 ) {
el . alt = locale . getString ( el . alt , lang ) ;
}
// Translate the title attribute (tooltip) if required
if ( el . title && el . title . indexOf ( '@{' ) != - 1 ) {
el . title = locale . getString ( el . title , lang ) ;
}
// Translate the src attribute (image/script source url) if required
if ( el . src && el . src . indexOf ( '@{' ) != - 1 ) {
el . src = locale . getString ( el . src , lang ) ;
}
// Translate bottom level (leaf nodes) innerText if required.
if ( ! el . children . length && el . innerText && el . innerText . indexOf ( '@{' ) != - 1 ) {
el . innerText = locale . getString ( el . innerText , lang ) ;
}
}
}
// Arrange for translation to occur when the document has loaded
window . attachEvent ( "onload" , locale . setLocale ) ;
////////////////////////////////////////////////////////////////////////////////
//
// English (American & British)
//
////////////////////////////////////////////////////////////////////////////////
var o = locale [ "en-us" ] = locale [ "en-gb" ] = new Object ;
// Icon Titles (alt="")
o [ "PostTopic" ] = "Post Topic" ;
o [ "Cut" ] = "Cut" ;
o [ "Copy" ] = "Copy" ;
o [ "Paste" ] = "Paste" ;
o [ "SpellCheck" ] = "Spell Check" ;
o [ "SelectAll" ] = "Select All" ;
o [ "RemoveFormatting" ] = "Remove Formatting" ;
o [ "InsertLink" ] = "Insert Link" ;
o [ "RemoveLink" ] = "Remove Link" ;
o [ "InsertImage" ] = "Insert Image" ;
o [ "InsertTable" ] = "Insert Table" ;
o [ "EditTable" ] = "Edit Table" ;
o [ "InsertLine" ] = "Insert Horizontal Line" ;
o [ "InsertSmily" ] = "Insert Smily 8-)" ;
o [ "InsertCharacter" ] = "Insert special character" ;
o [ "About" ] = "About Richtext Editor" ;
o [ "Bold" ] = "Bold" ;
o [ "Italic" ] = "Italic" ;
o [ "Underline" ] = "Underline" ;
o [ "Strikethrough" ] = "Strikethrough" ;
o [ "AlignLeft" ] = "Align Left" ;
o [ "Center" ] = "Center" ;
o [ "AlignRight" ] = "Align Right" ;
o [ "AlignBlock" ] = "Align Block" ;
o [ "NumberedList" ] = "Numbered List" ;
o [ "BulettedList" ] = "Buletted List" ;
o [ "DecreaseIndent" ] = "Decrease Indent" ;
o [ "IncreaseIndent" ] = "Increase Indent" ;
o [ "HistoryBack" ] = "History back" ;
o [ "HistoryForward" ] = "History forward" ;
o [ "TextColor" ] = "Text Color" ;
o [ "BackgroundColor" ] = "Background Color" ;
o [ "RemoveColspan" ] = "Remove Colspan" ;
o [ "RemoveRowspan" ] = "Remove Rowspan" ;
o [ "IncreaseColspan" ] = "Increase Colspan" ;
o [ "IncreaseRowspan" ] = "Increase Rowspan" ;
o [ "AddColumn" ] = "Add Column" ;
o [ "AddRow" ] = "Add Row" ;
o [ "RemoveColumn" ] = "Remove Column" ;
o [ "RemoveRow" ] = "Remove Row" ;
// Label Text
o [ "Style" ] = "Style" ;
o [ "Font" ] = "Font" ;
o [ "Size" ] = "Size" ;
o [ "Source" ] = "Source" ;
// Titles
o [ "SourceTitle" ] = "Click here to toggle between WYSIWYG and Source mode." ;
// Image Sources
o [ "icon_post" ] = "images/icon_post.gif" ;
o [ "hdr_tables" ] = "images/hdr_tables.gif" ;
o [ "icon_bold" ] = "images/icon_bold.gif" ;
o [ "icon_underline" ] = "images/icon_underline.gif" ;
o [ "icon_italic" ] = "images/icon_italic.gif" ;
////////////////////////////////////////////////////////////////////////////////
//
// Norwegian Bokm<6B> l
//
////////////////////////////////////////////////////////////////////////////////
var o = locale [ "no" ] = new Object ;
// Icon Titles (alt="")
o [ "PostTopic" ] = "Send" ;
o [ "Cut" ] = "Klipp" ;
o [ "Copy" ] = "Kopier" ;
o [ "Paste" ] = "Lim" ;
o [ "SpellCheck" ] = "Stavekontroll" ;
o [ "SelectAll" ] = "Marker alt" ;
o [ "RemoveFormatting" ] = "Fjern formatering" ;
o [ "InsertLink" ] = "Sett inn link" ;
o [ "RemoveLink" ] = "Fjern link" ;
o [ "InsertImage" ] = "Sett inn bilde" ;
o [ "InsertTable" ] = "Sett inn tabell" ;
o [ "EditTable" ] = "Endre tabell" ;
o [ "InsertLine" ] = "Sett inn horisontal linje" ;
o [ "InsertSmily" ] = "Sett inn smily 8-)" ;
o [ "InsertCharacter" ] = "Sett inn spesialtegn" ;
o [ "About" ] = "Om Richtext Editor" ;
o [ "Bold" ] = "Fet" ;
o [ "Italic" ] = "Kursiv" ;
o [ "Underline" ] = "Understrekning" ;
o [ "Strikethrough" ] = "Gjennomstrekning" ;
o [ "AlignLeft" ] = "Venstrejustering" ;
o [ "Center" ] = "Sentrering" ;
o [ "AlignRight" ] = "H<> yrejustering" ;
o [ "AlignBlock" ] = "Blokkjustering" ;
o [ "NumberedList" ] = "Nummerert liste" ;
o [ "BulettedList" ] = "Punktliste" ;
o [ "DecreaseIndent" ] = "Mink innrykksverdi" ;
o [ "IncreaseIndent" ] = "<22> k innrykksverdi" ;
o [ "HistoryBack" ] = "Historie bakover" ;
o [ "HistoryForward" ] = "Historie forover" ;
o [ "TextColor" ] = "Tekstfarge" ;
o [ "BackgroundColor" ] = "Bakgrunnsfarge" ;
// Label Text
o [ "Style" ] = "Stil" ;
o [ "Font" ] = "Type" ;
o [ "Size" ] = "St<53> rrelse" ;
o [ "Source" ] = "Kilde" ;
// Titles
o [ "SourceTitle" ] = "Klikk her for <20> bytte mellom WYSIWYG og kilde modus." ;
// Image Sources
o [ "icon_post" ] = "images/lang/no.icon_post.gif" ;
////////////////////////////////////////////////////////////////////////////////
//
// German
//
////////////////////////////////////////////////////////////////////////////////
var o = locale [ "de" ] = new Object ;
// Icon Titles (alt="")
o [ "PostTopic" ] = "Speichern" ;
o [ "Cut" ] = "Ausschneiden" ;
o [ "Copy" ] = "Kopieren" ;
o [ "Paste" ] = "Einf<6E> gen" ;
o [ "SpellCheck" ] = "Rechschreibpr<70> fung" ;
o [ "SelectAll" ] = "Alles markieren" ;
o [ "RemoveFormatting" ] = "Formatierung entfernen" ;
o [ "InsertLink" ] = "Link einf<6E> gen" ;
o [ "RemoveLink" ] = "Link entfernen" ;
o [ "InsertImage" ] = "Bild einf<6E> gen" ;
o [ "InsertTable" ] = "Tabelle einf<6E> gen" ;
o [ "EditTable" ] = "Tabelle bearbeiten" ;
o [ "InsertLine" ] = "Horizontale Linie einf<6E> gen" ;
o [ "InsertSmily" ] = "Smily 8-) einf<6E> gen" ;
o [ "InsertCharacter" ] = "Sonderzeichen einf<6E> gen" ;
o [ "About" ] = "<22> ber Richtext Editor" ;
o [ "Bold" ] = "Fett" ;
o [ "Italic" ] = "Kursiv" ;
o [ "Underline" ] = "Unterstrichen" ;
o [ "Strikethrough" ] = "Durchgestrichen" ;
o [ "AlignLeft" ] = "Linksb<73> ndig" ;
o [ "Center" ] = "Zentriert" ;
o [ "AlignRight" ] = "Rechtsb<73> ndig" ;
o [ "AlignBlock" ] = "Blocksatz" ;
o [ "NumberedList" ] = "Nummerierung" ;
o [ "BulettedList" ] = "Aufz<66> hlungszeichen" ;
o [ "DecreaseIndent" ] = "Einzug verkleinern" ;
o [ "IncreaseIndent" ] = "Einzug vergr<67> <72> ern" ;
o [ "HistoryBack" ] = "R<> ckg<6B> ngig" ;
o [ "HistoryForward" ] = "Wiederherstellen" ;
o [ "TextColor" ] = "Zeichenfarbe" ;
o [ "BackgroundColor" ] = "Hintergrundfarbe" ;
// Label Text
o [ "Style" ] = "Absatzformat" ;
o [ "Font" ] = "Schriftart" ;
o [ "Size" ] = "Gr<47> <72> e" ;
o [ "Source" ] = "Quelltext" ;
// Titles
o [ "SourceTitle" ] = "Hier klicken, um zwischen WYSIWYG- und Quelltext-Modus umzuschalten." ;
// Image Sources
o [ "icon_post" ] = "images/lang/de.icon_post.gif" ;
////////////////////////////////////////////////////////////////////////////////
//
// Fran<61> ais
//
////////////////////////////////////////////////////////////////////////////////
var o = locale [ "fr" ] = new Object ;
// Icon Titles (alt="")
o [ "PostTopic" ] = "Poster le sujet" ;
o [ "Cut" ] = "Couper" ;
o [ "Copy" ] = "Copier" ;
o [ "Paste" ] = "Coller" ;
o [ "Find Text" ] = "Rechercher" ;
o [ "SpellCheck" ] = "V<> rifier l'orthographe" ;
o [ "SelectAll" ] = "S<> lectionner tout" ;
o [ "RemoveFormatting" ] = "Supprimer le formattage" ;
o [ "InsertLink" ] = "Ins<6E> rer un lien" ;
o [ "RemoveLink" ] = "Supprimer un lien" ;
o [ "InsertImage" ] = "Ins<6E> rer une image" ;
o [ "InsertTable" ] = "Ins<6E> rer un tableau" ;
o [ "EditTable" ] = "Editer le tableau" ;
o [ "InsertLine" ] = "Ins<6E> rer une ligne horizontale" ;
o [ "InsertSmily" ] = "Ins<6E> rer un Smiley 8-)" ;
o [ "InsertCharacter" ] = "Ins<6E> rer des caract<63> res sp<73> ciaux" ;
o [ "About" ] = "A propos de Richtext Editor" ;
o [ "Bold" ] = "Gras" ;
o [ "Italic" ] = "Italique" ;
o [ "Underline" ] = "Soulign<67> " ;
o [ "Strikethrough" ] = "Barr<72> " ;
o [ "AlignLeft" ] = "Align<67> <20> gauche" ;
o [ "Center" ] = "Centr<74> " ;
o [ "AlignRight" ] = "Align<67> <20> droite" ;
o [ "AlignBlock" ] = "Justifi<66> " ;
o [ "NumberedList" ] = "Liste num<75> rot<6F> e" ;
o [ "BulettedList" ] = "Liste <20> puces" ;
o [ "DecreaseIndent" ] = "Diminuer le retrait" ;
o [ "IncreaseIndent" ] = "Augmenter le retrait" ;
o [ "HistoryBack" ] = "Annuler" ;
o [ "HistoryForward" ] = "R<> tablir" ;
o [ "TextColor" ] = "Couleur du texte" ;
o [ "BackgroundColor" ] = "Couleur de l'arri<72> re plan" ;
o [ "RemoveColspan" ] = "Fractionner la cellule" ;
o [ "RemoveRowspan" ] = "Fusionner la cellule" ;
o [ "IncreaseColspan" ] = "Augmenter l'<27> tendue de la colonne" ;
o [ "IncreaseRowspan" ] = "Augmenter l'<27> tendue de la ligne" ;
o [ "AddColumn" ] = "Ajouter une colonne" ;
o [ "AddRow" ] = "Ajouter une ligne" ;
o [ "RemoveColumn" ] = "Supprimer une colonne" ;
o [ "RemoveRow" ] = "Supprimer une ligne" ;
// Label Text
o [ "Style" ] = "Style" ;
o [ "Font" ] = "Police" ;
o [ "Size" ] = "Taille" ;
o [ "Source" ] = "Code source" ;
// Titles
o [ "SourceTitle" ] = "Cliquez ici pour basculer entre Aper<65> u et mode Source." ;
// Image Sources
o [ "icon_post" ] = "images/icon_post.gif" ;
////////////////////////////////////////////////////////////////////////////////
//
// Russian (Windows 1251)
// by Artem Orlov [art@ural.ru]
//
////////////////////////////////////////////////////////////////////////////////
var o = locale [ "ru" ] = locale [ "ru" ] = new Object ;
// Icon Titles (alt="")
o [ "PostTopic" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "Cut" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "Copy" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "Paste" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "SpellCheck" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "SelectAll" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> " ;
o [ "RemoveFormatting" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "InsertLink" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "RemoveLink" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "InsertImage" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "InsertTable" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "EditTable" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "InsertLine" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "InsertSmily" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> 8-)" ;
o [ "InsertCharacter" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "About" ] = "<22> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "Bold" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "Italic" ] = " <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "Underline" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "Strikethrough" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "AlignLeft" ] = "<22> <> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> " ;
o [ "Center" ] = "<22> <> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "AlignRight" ] = "<22> <> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> " ;
o [ "AlignBlock" ] = "<22> <> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "NumberedList" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "BulettedList" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "DecreaseIndent" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "IncreaseIndent" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "HistoryBack" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "HistoryForward" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "TextColor" ] = "<22> <> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "BackgroundColor" ] = "<22> <> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> " ;
o [ "RemoveColspan" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "RemoveRowspan" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "IncreaseColspan" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "IncreaseRowspan" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "AddColumn" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "AddRow" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "RemoveColumn" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "RemoveRow" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
// Label Text
o [ "Style" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "Font" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "Size" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> " ;
o [ "Source" ] = "<22> <20> <> <EFBFBD> <EFBFBD> HTML" ;
// Titles
o [ "SourceTitle" ] = "<22> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> WYSIWYG and <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <20> <> <EFBFBD> <EFBFBD> HTML." ;
////////////////////////////////////////////////////////////////////////////////
//
// T<> rk<72> e
// Fatih BOY <fatih_boy@yahoo.com> tarafindan T<> rk<72> eye <20> evirilmistir.
//
// Turkish
// Translated into Turkish by Fatih BOY <fatih_boy@yahoo.com>
//
////////////////////////////////////////////////////////////////////////////////
var o = locale [ "tr" ] = new Object ;
// Icon Titles (alt="")
o [ "PostTopic" ] = "Konuyu G<> nder" ;
o [ "Cut" ] = "Kes" ;
o [ "Copy" ] = "Kopyala" ;
o [ "Paste" ] = "Yap<61> <70> t<EFBFBD> r" ;
o [ "SpellCheck" ] = "Dil Kontrol<6F> " ;
o [ "SelectAll" ] = "Hepsini Se<53> " ;
o [ "RemoveFormatting" ] = "Bi<42> imlemeyi Kald<6C> r" ;
o [ "InsertLink" ] = "K<> pr<70> Ekle" ;
//o["InsertLink"] = "Link Ekle";
o [ "RemoveLink" ] = "K<> pr<70> y<EFBFBD> Kald<6C> r" ;
//o["RemoveLink"] = "Link'i Kald<6C> r";
o [ "InsertImage" ] = "Resim Ekle" ;
o [ "InsertTable" ] = "Tablo Ekle" ;
o [ "EditTable" ] = "Tabloyu D<> zenle" ;
o [ "InsertLine" ] = "Yatay <20> izgi Ekle" ;
o [ "InsertSmily" ] = "G<> l<EFBFBD> mseme Ekle 8-)" ;
o [ "InsertCharacter" ] = "<22> zel Karakter Ekle" ;
o [ "About" ] = "Richtext Edit<69> r<EFBFBD> Hakk<6B> nda" ;
o [ "Bold" ] = "Kal<61> n" ;
o [ "Italic" ] = "Yatay" ;
o [ "Underline" ] = "Alt<6C> <20> izili" ;
o [ "Strikethrough" ] = "<22> izili" ;
o [ "AlignLeft" ] = "Sola Daya" ;
o [ "Center" ] = "Ortala" ;
o [ "AlignRight" ] = "Sa<53> a Daya" ;
o [ "AlignBlock" ] = "Blokla" ;
o [ "NumberedList" ] = "Numaral<61> Liste" ;
o [ "BulettedList" ] = "Buletted Liste" ;
o [ "DecreaseIndent" ] = "Sat<61> r aral<61> <6C> <EFBFBD> n<EFBFBD> Azalt" ;
o [ "IncreaseIndent" ] = "Sat<61> r Aral<61> <6C> <EFBFBD> n<EFBFBD> Artt<74> r" ;
o [ "HistoryBack" ] = "Ge<47> mi<6D> - Geri" ;
o [ "HistoryForward" ] = "Ge<47> mi<6D> - <20> leri" ;
o [ "TextColor" ] = "Yaz<61> Rengi" ;
o [ "BackgroundColor" ] = "Artalan Rengi" ;
o [ "RemoveColspan" ] = "Colspan'<27> Kald<6C> r" ;
o [ "RemoveRowspan" ] = "Rowspan'<27> Kald<6C> r" ;
o [ "IncreaseColspan" ] = "Colspan'<27> Artt<74> r" ;
o [ "IncreaseRowspan" ] = "Rowspan'<27> Artt<74> r" ;
o [ "AddColumn" ] = "S<> tunu Kald<6C> r" ;
o [ "AddRow" ] = "Sat<61> r Ekle" ;
o [ "RemoveColumn" ] = "S<> tun Ekle" ;
o [ "RemoveRow" ] = "Sat<61> r<EFBFBD> Kald<6C> r" ;
// Label Text
o [ "Style" ] = "Stil" ;
o [ "Font" ] = "Font" ;
o [ "Size" ] = "Boyut" ;
o [ "Source" ] = "Kaynak" ;
// Titles
o [ "SourceTitle" ] = "Edit<69> r ile kaynak modlar<61> aras<61> nda ge<67> i<EFBFBD> i<> in t<> klay<61> n<EFBFBD> z." ;
// Image Sources
o [ "icon_post" ] = "images/lang/tr.icon_post.gif" ;
o [ "hdr_tables" ] = "images/lang/tr.hdr_tables.gif" ;
////////////////////////////////////////////////////////////////////////////////
//
// Italiano: delmazza@a99.it - Angelo Del Mazza - Area99 http://www.a99.it
//
////////////////////////////////////////////////////////////////////////////////
var o = locale [ "it" ] = new Object ;
// Icon Titles (alt="")
o [ "PostTopic" ] = "Invia Articolo" ;
o [ "Cut" ] = "Taglia" ;
o [ "Copy" ] = "Copia" ;
o [ "Paste" ] = "Incolla" ;
o [ "SpellCheck" ] = "Controlla Ortografia" ;
o [ "SelectAll" ] = "Seleziona Tutto" ;
o [ "RemoveFormatting" ] = "Rimuovi Formattazione" ;
o [ "InsertLink" ] = "Insrisci Link" ;
o [ "RemoveLink" ] = "Rimuovi Link" ;
o [ "InsertImage" ] = "Inserisci Immagine" ;
o [ "InsertTable" ] = "Inserisci Tabella" ;
o [ "EditTable" ] = "Modifica Tabella" ;
o [ "InsertLine" ] = "Inserisci Linea Orizzontale" ;
o [ "InsertSmily" ] = "Inserisci Smily 8-)" ;
o [ "InsertCharacter" ] = "Inserisci Carattere Speciale" ;
o [ "About" ] = "Info su Richtext Editor" ;
o [ "Bold" ] = "Grassetto" ;
o [ "Italic" ] = "Italico" ;
o [ "Underline" ] = "Sottolineato" ;
o [ "Strikethrough" ] = "Barrato" ;
o [ "AlignLeft" ] = "Allinea a Sinistra" ;
o [ "Center" ] = "Centrato" ;
o [ "AlignRight" ] = "Alline a Destra" ;
o [ "AlignBlock" ] = "Allinea Blocco" ;
o [ "NumberedList" ] = "Elenco Numerato" ;
o [ "BulettedList" ] = "Elenco Puntato" ;
o [ "DecreaseIndent" ] = "Diminuisci Rientro" ;
o [ "IncreaseIndent" ] = "Incrementa Rientro" ;
o [ "HistoryBack" ] = "Indietro" ;
o [ "HistoryForward" ] = "Avanti" ;
o [ "TextColor" ] = "Colore Testo" ;
o [ "BackgroundColor" ] = "Colore Sfondo" ;
o [ "RemoveColspan" ] = "Rimuovi Colspan" ;
o [ "RemoveRowspan" ] = "Rimuovi Rowspan" ;
o [ "IncreaseColspan" ] = "Incrementa Colspan" ;
o [ "IncreaseRowspan" ] = "Incrementa Rowspan" ;
o [ "AddColumn" ] = "Aggiungi Colonna" ;
o [ "AddRow" ] = "Aggiungi Riga" ;
o [ "RemoveColumn" ] = "Rimuovi Colonna" ;
o [ "RemoveRow" ] = "Rimuovi Riga" ;
// Label Text
o [ "Style" ] = "Stile" ;
o [ "Font" ] = "Carattere" ;
o [ "Size" ] = "Dimensione" ;
o [ "Source" ] = "Sorgente" ;
// Titles
o [ "SourceTitle" ] = "Clicca per passare in modalit<69> WYSIWYG o Sorgente" ;
// Image Sources
o [ "icon_post" ] = "images/lang/it.icon_post.gif" ;
o [ "hdr_tables" ] = "images/hdr_tables.gif" ;
////////////////////////////////////////////////////////////////////////////////
//
// Dutch Translation - Courtesy of FlevOOware, Marja Ribbers-de Vroed
// <marja@flevooware.nl>
//
////////////////////////////////////////////////////////////////////////////////
var o = locale [ "nl" ] = new Object ;
// Icon Titles (alt="")
o [ "PostTopic" ] = "Opslaan" ;
o [ "Cut" ] = "Knippen" ;
o [ "Copy" ] = "Kopieren" ;
o [ "Paste" ] = "Plakken" ;
o [ "SpellCheck" ] = "Controleer spelling" ;
o [ "SelectAll" ] = "Selecteer alles" ;
o [ "RemoveFormatting" ] = "Opmaak verwijderen" ;
o [ "InsertLink" ] = "Link invoegen" ;
o [ "RemoveLink" ] = "Link verwijderen" ;
o [ "InsertImage" ] = "Afbeelding invoegen" ;
o [ "InsertTable" ] = "Tabel invoegen" ;
o [ "EditTable" ] = "Tabel wijzigen" ;
o [ "InsertLine" ] = "Horizontale lijn invoegen" ;
o [ "InsertSmily" ] = "Smiley 8-) invoegen" ;
o [ "InsertCharacter" ] = "Karakter invoegen" ;
o [ "About" ] = "Over Richtext Editor" ;
o [ "Bold" ] = "Vet" ;
o [ "Italic" ] = "Cursief" ;
o [ "Underline" ] = "Onderstreept" ;
o [ "Strikethrough" ] = "Doorgehaald" ;
o [ "AlignLeft" ] = "Links uitlijnen" ;
o [ "Center" ] = "Centreren" ;
o [ "AlignRight" ] = "Rechts uitlijnen" ;
o [ "AlignBlock" ] = "Uitlijnen als blok" ;
o [ "NumberedList" ] = "Lijst met nummering" ;
o [ "BulettedList" ] = "Lijst met opsommingstekens" ;
o [ "DecreaseIndent" ] = "Inspringing verkleinen" ;
o [ "IncreaseIndent" ] = "Inspringing vergroten" ;
o [ "HistoryBack" ] = "Herstel" ;
o [ "HistoryForward" ] = "Opnieuw" ;
o [ "TextColor" ] = "Tekstkleur" ;
o [ "BackgroundColor" ] = "Achtergrondkleur" ;
o [ "RemoveColspan" ] = "Verwijder Colspan" ;
o [ "RemoveRowspan" ] = "Verwijder Rowspan" ;
o [ "IncreaseColspan" ] = "Verhoog Colspan" ;
o [ "IncreaseRowspan" ] = "Verlaag Rowspan" ;
o [ "AddColumn" ] = "Voeg kolom toe" ;
o [ "AddRow" ] = "Voeg rij toe" ;
o [ "RemoveColumn" ] = "Verwijder kolom" ;
o [ "RemoveRow" ] = "Verwijder rij" ;
// Label Text
o [ "Style" ] = "Stijl" ;
o [ "Font" ] = "Lettertype" ;
o [ "Size" ] = "Grootte" ;
o [ "Source" ] = "HTML-brontekst" ;
// Titles
o [ "SourceTitle" ] = "Klik hier om te wisselen tussen WYSIWYG-en HTML-brontekst-modus." ;
// Image Sources
o [ "icon_post" ] = "images/icon_post.gif" ;
o [ "hdr_tables" ] = "images/hdr_tables.gif" ;
////////////////////////////////////////////////////////////////////////////////
//
// Portuguese (Brazilian)
// Courtesy of Ricardo Colombani de Sousa <colombani@ig.com.br>
//
////////////////////////////////////////////////////////////////////////////////
var o = locale [ "pt-br" ] = new Object ;
// Icon Titles (alt="")
o [ "PostTopic" ] = "Enviar" ;
o [ "Cut" ] = "Recortar" ;
o [ "Copy" ] = "Copiar" ;
o [ "Paste" ] = "Colar" ;
o [ "SpellCheck" ] = "Corretor Ortogr<67> fico" ;
o [ "SelectAll" ] = "Selecionar Tudo" ;
o [ "RemoveFormatting" ] = "Remover Formata<74> <61> o" ;
o [ "InsertLink" ] = "Inserir Link" ;
o [ "RemoveLink" ] = "Remover Link" ;
o [ "InsertImage" ] = "Inserir Imagem" ;
o [ "InsertTable" ] = "Inserir Tabela" ;
o [ "EditTable" ] = "Editar Tabela" ;
o [ "InsertLine" ] = "Inserir Linha Horizontal" ;
o [ "InsertSmily" ] = "Inserir Emoticon 8-)" ;
2003-07-21 00:59:21 +00:00
o [ "InsertCharacter" ] = "Inserir car<61> ter Especial" ;
2003-05-06 11:14:31 +00:00
o [ "About" ] = "Sobre o Richtext Editor" ;
o [ "Bold" ] = "Negrito" ;
o [ "Italic" ] = "It<49> lico" ;
o [ "Underline" ] = "Sublinhado" ;
o [ "Strikethrough" ] = "Riscado" ;
o [ "AlignLeft" ] = "Alinhar <20> Esquerda" ;
o [ "Center" ] = "Centralizar" ;
o [ "AlignRight" ] = "Alinhar <20> Direita" ;
o [ "AlignBlock" ] = "Justificar" ;
o [ "NumberedList" ] = "Lista Numerada" ;
o [ "BulettedList" ] = "Lista com Marcadores" ;
o [ "DecreaseIndent" ] = "Diminuir Identa<74> <61> o" ;
o [ "IncreaseIndent" ] = "Aumentar Identa<74> <61> o" ;
o [ "HistoryBack" ] = "Desfazer" ;
o [ "HistoryForward" ] = "Refazer" ;
o [ "TextColor" ] = "Cor de Texto" ;
o [ "BackgroundColor" ] = "Cor de Fundo" ;
o [ "RemoveColspan" ] = "Remover Colspan" ;
o [ "RemoveRowspan" ] = "Remover Rowspan" ;
o [ "IncreaseColspan" ] = "Aumentar Colspan" ;
o [ "IncreaseRowspan" ] = "Aumentar Rowspan" ;
o [ "AddColumn" ] = "Adicionar Coluna" ;
o [ "AddRow" ] = "Adicionar Linha" ;
o [ "RemoveColumn" ] = "Remover Coluna" ;
o [ "RemoveRow" ] = "Remover Linha" ;
// Label Text
o [ "Style" ] = "Estilo" ;
o [ "Font" ] = "Fonte" ;
o [ "Size" ] = "Tamanho" ;
o [ "Source" ] = "C<> digo fonte" ;
// Titles
o [ "SourceTitle" ] = "Clique aqui para alternar entre modo de edi<64> <69> o e modo c<> digo fonte." ;
// Image Sources
o [ "icon_post" ] = "images/lang/br.icon_post.gif" ;
o [ "hdr_tables" ] = "images/lang/br.hdr_tables.gif" ;
o [ "icon_bold" ] = "images/lang/br.icon_bold.gif" ;
o [ "icon_italic" ] = "images/icon_italic.gif" ;
o [ "icon_underline" ] = "images/lang/br.icon_underline.gif" ;
////////////////////////////////////////////////////////////////////////////////
//
// Danish - translated by Morten Flyger (flyger@email.dk)
//
////////////////////////////////////////////////////////////////////////////////
var o = locale [ "da" ] = new Object ;
// Icon Titles (alt="")
o [ "PostTopic" ] = "Gem" ;
o [ "Cut" ] = "Klip" ;
o [ "Copy" ] = "Kopiere" ;
o [ "Paste" ] = "Inds<64> t" ;
o [ "SpellCheck" ] = "Stavekontrol" ;
o [ "SelectAll" ] = "Markere alt" ;
o [ "RemoveFormatting" ] = "Fjern formatering" ;
o [ "InsertLink" ] = "Inds<64> t link" ;
o [ "RemoveLink" ] = "Fjern link" ;
o [ "InsertImage" ] = "Inds<64> t billede" ;
o [ "InsertTable" ] = "Inds<64> t tabel" ;
o [ "EditTable" ] = "<22> ndre tabel" ;
o [ "InsertLine" ] = "Inds<64> t horisontal linje" ;
o [ "InsertSmily" ] = "Inds<64> t smily 8-)" ;
o [ "InsertCharacter" ] = "Inds<64> t specialtegn" ;
o [ "About" ] = "Om Richtext Editor" ;
o [ "Bold" ] = "Fed" ;
o [ "Italic" ] = "Kursiv" ;
o [ "Underline" ] = "Understregning" ;
o [ "Strikethrough" ] = "Gennemstregning" ;
o [ "AlignLeft" ] = "Venstrejustering" ;
o [ "Center" ] = "Centrering" ;
o [ "AlignRight" ] = "H<> jrejustering" ;
o [ "AlignBlock" ] = "Blokjustering" ;
o [ "NumberedList" ] = "Nummereret liste" ;
o [ "BulettedList" ] = "Punktopstilling" ;
o [ "DecreaseIndent" ] = "Mindske indrykningsv<73> rdi" ;
o [ "IncreaseIndent" ] = "<22> ge indrykningsv<73> rdi" ;
o [ "HistoryBack" ] = "Historie tilbage" ;
o [ "HistoryForward" ] = "Historie frem" ;
o [ "TextColor" ] = "Tekstfarve" ;
o [ "BackgroundColor" ] = "Baggrundsfarve" ;
// Label Text
o [ "Style" ] = "Stil" ;
o [ "Font" ] = "Type" ;
o [ "Size" ] = "St<53> rrelse" ;
o [ "Source" ] = "Kilde" ;
// Titles
o [ "SourceTitle" ] = "Klik her for at skifte imellem WYSIWYG og kilde fremtr<74> delsesform." ;
// Image Sources
o [ "icon_post" ] = "images/lang/no.icon_post.gif" ;
o [ "icon_bold" ] = "images/lang/da_icon_bold.gif" ;
o [ "icon_italic" ] = "images/lang/da_icon_italic.gif" ;
o [ "icon_underline" ] = "images/lang/da_icon_underline.gif" ;
////////////////////////////////////////////////////////////////////////////////
//
// Espa<70> ol (es-mx)
//
////////////////////////////////////////////////////////////////////////////////
var o = locale [ "es-mx" ] = new Object ;
// Icon Titles (alt="")
o [ "PostTopic" ] = "Colcar" ;
o [ "Cut" ] = "Cortar" ;
o [ "Copy" ] = "Copiar" ;
o [ "Paste" ] = "Pegar" ;
o [ "SpellCheck" ] = "Checar orograf<61> a" ;
o [ "SelectAll" ] = "Seleccionar todo" ;
o [ "RemoveFormatting" ] = "Quitar formato" ;
o [ "InsertLink" ] = "Insertar liga" ;
o [ "RemoveLink" ] = "Quitar liga" ;
o [ "InsertImage" ] = "Insertar imagen" ;
o [ "InsertTable" ] = "Insertar tabla" ;
o [ "EditTable" ] = "Editar tabla" ;
o [ "InsertLine" ] = "Insertar l<> nea horizontal" ;
o [ "InsertSmily" ] = "Insertar carita 8-)" ;
o [ "InsertCharacter" ] = "Insertar caracter especial" ;
o [ "About" ] = "Sobre el editor" ;
o [ "Bold" ] = "Negrita" ;
o [ "Italic" ] = "Cursiva" ;
o [ "Underline" ] = "Subrayado" ;
o [ "Strikethrough" ] = "Tachado" ;
o [ "AlignLeft" ] = "Alinear a la izquierda" ;
o [ "Center" ] = "Centrar" ;
o [ "AlignRight" ] = "Alinear a la derecha" ;
o [ "AlignBlock" ] = "Alinear justificado" ;
o [ "NumberedList" ] = "Lista numerada" ;
o [ "BulettedList" ] = "Lista no numerada" ;
o [ "DecreaseIndent" ] = "Sangr<67> a decreciente" ;
o [ "IncreaseIndent" ] = "Sangr<67> a creciente" ;
o [ "HistoryBack" ] = "Deshacer" ;
o [ "HistoryForward" ] = "Rehacer" ;
o [ "TextColor" ] = "Color de texto" ;
o [ "BackgroundColor" ] = "Color de fondo" ;
o [ "RemoveColspan" ] = "Separar columnas" ;
o [ "RemoveRowspan" ] = "Separar filas" ;
o [ "IncreaseColspan" ] = "Juntar columnas" ;
o [ "IncreaseRowspan" ] = "Juntar filas" ;
o [ "AddColumn" ] = "Agregar columnas" ;
o [ "AddRow" ] = "Agregar fila" ;
o [ "RemoveColumn" ] = "Quitar columna" ;
o [ "RemoveRow" ] = "Quitar fila" ;
// Label Text
o [ "Style" ] = "Est." ;
o [ "Font" ] = "Fte." ;
o [ "Size" ] = "Tam." ;
o [ "Source" ] = "C<> d." ;
// Titles
o [ "SourceTitle" ] = "Cambiar entre editor visual y de c<> digo fuente." ;
// Image Sources
o [ "icon_post" ] = "images/icon_post.gif" ;
o [ "hdr_tables" ] = "images/hdr_tables.gif" ;
////////////////////////////////////////////////////////////////////////////////
//
// Espa<70> ol Alfabetizaci<63> n Internacional (es-es) Traducci<63> n de Emmanuelle //Guti<74> rrez (emmanuelle@sidar.org)
//
////////////////////////////////////////////////////////////////////////////////
var o = locale [ "es" ] = locale [ "es-es" ] = new Object ;
// Icon Titles (alt="")
o [ "PostTopic" ] = "Responder" ;
o [ "Cut" ] = "Cortar" ;
o [ "Copy" ] = "Copiar" ;
o [ "Paste" ] = "Pegar" ;
o [ "SpellCheck" ] = "Revisi<73> n ortogr<67> fica" ;
o [ "SelectAll" ] = "Seleccionar todo" ;
o [ "RemoveFormatting" ] = "Eliminar formato" ;
o [ "InsertLink" ] = "Insertar enlace" ;
o [ "RemoveLink" ] = "Eliminar enlace" ;
o [ "InsertImage" ] = "Insertar Imagen" ;
o [ "InsertTable" ] = "Insertar Tabla" ;
o [ "EditTable" ] = "Editar Tabla" ;
o [ "InsertLine" ] = "Insertar l<> nea horizontal" ;
o [ "InsertSmily" ] = "Insertar Emoticon 8-)" ;
o [ "InsertCharacter" ] = "Insertar car<61> cter especial" ;
o [ "About" ] = "Acerca del Editor de texto enriquecido" ;
o [ "Bold" ] = "Negrita" ;
o [ "Italic" ] = "It<49> lica" ;
o [ "Underline" ] = "Subrayado" ;
o [ "Strikethrough" ] = "Tachado" ;
o [ "AlignLeft" ] = "Alinear a la izquierda" ;
o [ "Center" ] = "Centrado" ;
o [ "AlignRight" ] = "Alinear a la derecha" ;
o [ "AlignBlock" ] = "Alinear bloque" ;
o [ "NumberedList" ] = "Lista numerada" ;
o [ "BulettedList" ] = "Lista con vi<76> etas" ;
o [ "DecreaseIndent" ] = "Disminuir sangrado" ;
o [ "IncreaseIndent" ] = "Incrementar sangrado" ;
o [ "HistoryBack" ] = "Deshacer" ;
o [ "HistoryForward" ] = "Rehacer" ;
o [ "TextColor" ] = "Color del Texto" ;
o [ "BackgroundColor" ] = "Color del Fondo" ;
o [ "RemoveColspan" ] = "Separar Columnas" ;
o [ "RemoveRowspan" ] = "Separar Filas" ;
o [ "IncreaseColspan" ] = "Juntar Columnas" ;
o [ "IncreaseRowspan" ] = "Juntar Filas" ;
o [ "AddColumn" ] = "A<> adir Columna" ;
o [ "AddRow" ] = "A<> adir Fila" ;
o [ "RemoveColumn" ] = "Eliminar Columna" ;
o [ "RemoveRow" ] = "Eliminar Fila" ;
// Label Text
o [ "Style" ] = "Estilo" ;
o [ "Font" ] = "Fuente" ;
o [ "Size" ] = "Tama<6D> o" ;
o [ "Source" ] = "C<> digo" ;
// Titles
o [ "SourceTitle" ] = "Cambiar entre vista edici<63> n y c<> digo." ;
// Image Sources
o [ "icon_post" ] = "images/icon_post.gif" ;
o [ "hdr_tables" ] = "images/hdr_tables.gif" ;
////////////////////////////////////////////////////////////////////////////