mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-20 15:03:19 +01:00
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<67>a",
|
|||
|
indent: "Disminuir Sangr<67>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"
|
|||
|
}
|
|||
|
};
|