forked from extern/egroupware
a3a85a862d
eGW code to use it, is in phpgwapi/inc/class.html.inc.php the translations (via eGW standard translation system) are in phpgwapi/inc/htmlarea-lang.php
37 lines
1.1 KiB
JavaScript
37 lines
1.1 KiB
JavaScript
// I18N constants
|
|
|
|
HTMLArea.I18N = {
|
|
|
|
// the following should be the filename without .js extension
|
|
// it will be used for automatically load plugin language.
|
|
lang: "es",
|
|
|
|
tooltips: {
|
|
bold: "Negritas",
|
|
italic: "Cursiva",
|
|
underline: "Subrayado",
|
|
strikethrough: "Texto Cruzado",
|
|
subscript: "Subscript",
|
|
superscript: "Superscript",
|
|
justifyleft: "Alinear a la Izquierda",
|
|
justifycenter: "Centrar",
|
|
justifyright: "Alinear a la Derecha",
|
|
justifyfull: "Justificar",
|
|
orderedlist: "Lista Ordenada",
|
|
unorderedlist: "Lista No Ordenada",
|
|
outdent: "Aumentar Sangría",
|
|
indent: "Disminuir Sangría",
|
|
forecolor: "Color del Texto",
|
|
backcolor: "Color del Fondo",
|
|
horizontalrule: "Línea Horizontal",
|
|
createlink: "Insertar Enlace",
|
|
insertimage: "Insertar Imagen",
|
|
inserttable: "Insertar Tabla",
|
|
htmlmode: "Ver Documento en HTML",
|
|
popupeditor: "Ampliar Editor",
|
|
about: "Acerca del Editor",
|
|
help: "Ayuda",
|
|
textindicator: "Estilo Actual"
|
|
}
|
|
};
|