1 | /*
|
---|
2 | * FCKeditor - The text editor for internet
|
---|
3 | * Copyright (C) 2003-2006 Frederico Caldeira Knabben
|
---|
4 | *
|
---|
5 | * Licensed under the terms of the GNU Lesser General Public License:
|
---|
6 | * http://www.opensource.org/licenses/lgpl-license.php
|
---|
7 | *
|
---|
8 | * For further information visit:
|
---|
9 | * http://www.fckeditor.net/
|
---|
10 | *
|
---|
11 | * "Support Open Source software. What about a donation today?"
|
---|
12 | *
|
---|
13 | * File Name: es.js
|
---|
14 | * Spanish language file.
|
---|
15 | *
|
---|
16 | * File Authors:
|
---|
17 | * Gabriel Schillaci (internetbug@users.sourceforge.net)
|
---|
18 | */
|
---|
19 |
|
---|
20 | var FCKLang =
|
---|
21 | {
|
---|
22 | // Language direction : "ltr" (left to right) or "rtl" (right to left).
|
---|
23 | Dir : "ltr",
|
---|
24 |
|
---|
25 | ToolbarCollapse : "Contraer Barra",
|
---|
26 | ToolbarExpand : "Expandir Barra",
|
---|
27 |
|
---|
28 | // Toolbar Items and Context Menu
|
---|
29 | Save : "Guardar",
|
---|
30 | NewPage : "Nueva Página",
|
---|
31 | Preview : "Vista Previa",
|
---|
32 | Cut : "Cortar",
|
---|
33 | Copy : "Copiar",
|
---|
34 | Paste : "Pegar",
|
---|
35 | PasteText : "Pegar como texto plano",
|
---|
36 | PasteWord : "Pegar desde Word",
|
---|
37 | Print : "Imprimir",
|
---|
38 | SelectAll : "Seleccionar Todo",
|
---|
39 | RemoveFormat : "Eliminar Formato",
|
---|
40 | InsertLinkLbl : "Vínculo",
|
---|
41 | InsertLink : "Insertar/Editar Vínculo",
|
---|
42 | RemoveLink : "Eliminar Vínculo",
|
---|
43 | Anchor : "Referencia",
|
---|
44 | InsertImageLbl : "Imagen",
|
---|
45 | InsertImage : "Insertar/Editar Imagen",
|
---|
46 | InsertFlashLbl : "Flash",
|
---|
47 | InsertFlash : "Insertar/Editar Flash",
|
---|
48 | InsertTableLbl : "Tabla",
|
---|
49 | InsertTable : "Insertar/Editar Tabla",
|
---|
50 | InsertLineLbl : "Línea",
|
---|
51 | InsertLine : "Insertar Línea Horizontal",
|
---|
52 | InsertSpecialCharLbl: "Caracter Especial",
|
---|
53 | InsertSpecialChar : "Insertar Caracter Especial",
|
---|
54 | InsertSmileyLbl : "Emoticons",
|
---|
55 | InsertSmiley : "Insertar Emoticons",
|
---|
56 | About : "Acerca de FCKeditor",
|
---|
57 | Bold : "Negrita",
|
---|
58 | Italic : "Cursiva",
|
---|
59 | Underline : "Subrayado",
|
---|
60 | StrikeThrough : "Tachado",
|
---|
61 | Subscript : "Subíndice",
|
---|
62 | Superscript : "Superíndice",
|
---|
63 | LeftJustify : "Alinear a Izquierda",
|
---|
64 | CenterJustify : "Centrar",
|
---|
65 | RightJustify : "Alinear a Derecha",
|
---|
66 | BlockJustify : "Justificado",
|
---|
67 | DecreaseIndent : "Disminuir Sangría",
|
---|
68 | IncreaseIndent : "Aumentar Sangría",
|
---|
69 | Undo : "Deshacer",
|
---|
70 | Redo : "Rehacer",
|
---|
71 | NumberedListLbl : "Numeración",
|
---|
72 | NumberedList : "Insertar/Eliminar Numeración",
|
---|
73 | BulletedListLbl : "Viñetas",
|
---|
74 | BulletedList : "Insertar/Eliminar Viñetas",
|
---|
75 | ShowTableBorders : "Mostrar Bordes de Tablas",
|
---|
76 | ShowDetails : "Mostrar saltos de Párrafo",
|
---|
77 | Style : "Estilo",
|
---|
78 | FontFormat : "Formato",
|
---|
79 | Font : "Fuente",
|
---|
80 | FontSize : "Tamaño",
|
---|
81 | TextColor : "Color de Texto",
|
---|
82 | BGColor : "Color de Fondo",
|
---|
83 | Source : "Fuente HTML",
|
---|
84 | Find : "Buscar",
|
---|
85 | Replace : "Reemplazar",
|
---|
86 | SpellCheck : "Ortografía",
|
---|
87 | UniversalKeyboard : "Teclado Universal",
|
---|
88 | PageBreakLbl : "Salto de Página",
|
---|
89 | PageBreak : "Insertar Salto de Página",
|
---|
90 |
|
---|
91 | Form : "Formulario",
|
---|
92 | Checkbox : "Casilla de Verificación",
|
---|
93 | RadioButton : "Botones de Radio",
|
---|
94 | TextField : "Campo de Texto",
|
---|
95 | Textarea : "Area de Texto",
|
---|
96 | HiddenField : "Campo Oculto",
|
---|
97 | Button : "Botón",
|
---|
98 | SelectionField : "Campo de Selección",
|
---|
99 | ImageButton : "Botón Imagen",
|
---|
100 |
|
---|
101 | FitWindow : "Maximizar el tamaño del editor",
|
---|
102 |
|
---|
103 | // Context Menu
|
---|
104 | EditLink : "Editar Vínculo",
|
---|
105 | CellCM : "Celda",
|
---|
106 | RowCM : "Fila",
|
---|
107 | ColumnCM : "Columna",
|
---|
108 | InsertRow : "Insertar Fila",
|
---|
109 | DeleteRows : "Eliminar Filas",
|
---|
110 | InsertColumn : "Insertar Columna",
|
---|
111 | DeleteColumns : "Eliminar Columnas",
|
---|
112 | InsertCell : "Insertar Celda",
|
---|
113 | DeleteCells : "Eliminar Celdas",
|
---|
114 | MergeCells : "Combinar Celdas",
|
---|
115 | SplitCell : "Dividir Celda",
|
---|
116 | TableDelete : "Eliminar Tabla",
|
---|
117 | CellProperties : "Propiedades de Celda",
|
---|
118 | TableProperties : "Propiedades de Tabla",
|
---|
119 | ImageProperties : "Propiedades de Imagen",
|
---|
120 | FlashProperties : "Propiedades de Flash",
|
---|
121 |
|
---|
122 | AnchorProp : "Propiedades de Referencia",
|
---|
123 | ButtonProp : "Propiedades de Botón",
|
---|
124 | CheckboxProp : "Propiedades de Casilla",
|
---|
125 | HiddenFieldProp : "Propiedades de Campo Oculto",
|
---|
126 | RadioButtonProp : "Propiedades de Botón de Radio",
|
---|
127 | ImageButtonProp : "Propiedades de Botón de Imagen",
|
---|
128 | TextFieldProp : "Propiedades de Campo de Texto",
|
---|
129 | SelectionFieldProp : "Propiedades de Campo de Selección",
|
---|
130 | TextareaProp : "Propiedades de Area de Texto",
|
---|
131 | FormProp : "Propiedades de Formulario",
|
---|
132 |
|
---|
133 | FontFormats : "Normal;Con formato;Dirección;Encabezado 1;Encabezado 2;Encabezado 3;Encabezado 4;Encabezado 5;Encabezado 6;Normal (DIV)",
|
---|
134 |
|
---|
135 | // Alerts and Messages
|
---|
136 | ProcessingXHTML : "Procesando XHTML. Por favor, espere...",
|
---|
137 | Done : "Hecho",
|
---|
138 | PasteWordConfirm : "El texto que desea parece provenir de Word. Desea depurarlo antes de pegarlo?",
|
---|
139 | NotCompatiblePaste : "Este comando está disponible sólo para Internet Explorer version 5.5 or superior. Desea pegar sin depurar?",
|
---|
140 | UnknownToolbarItem : "Item de barra desconocido \"%1\"",
|
---|
141 | UnknownCommand : "Nombre de comando desconocido \"%1\"",
|
---|
142 | NotImplemented : "Comando no implementado",
|
---|
143 | UnknownToolbarSet : "Nombre de barra \"%1\" no definido",
|
---|
144 | NoActiveX : "La configuración de las opciones de seguridad de su navegador puede estar limitando algunas características del editor. Por favor active la opción \"Ejecutar controles y complementos de ActiveX \", de lo contrario puede experimentar errores o ausencia de funcionalidades.",
|
---|
145 | BrowseServerBlocked : "La ventana de visualización del servidor no pudo ser abierta. Verifique que su navegador no esté bloqueando las ventanas emergentes (pop up).",
|
---|
146 | DialogBlocked : "No se ha podido abrir la ventana de diálogo. Verifique que su navegador no esté bloqueando las ventanas emergentes (pop up).",
|
---|
147 |
|
---|
148 | // Dialogs
|
---|
149 | DlgBtnOK : "OK",
|
---|
150 | DlgBtnCancel : "Cancelar",
|
---|
151 | DlgBtnClose : "Cerrar",
|
---|
152 | DlgBtnBrowseServer : "Ver Servidor",
|
---|
153 | DlgAdvancedTag : "Avanzado",
|
---|
154 | DlgOpOther : "<Otro>",
|
---|
155 | DlgInfoTab : "Información",
|
---|
156 | DlgAlertUrl : "Inserte el URL",
|
---|
157 |
|
---|
158 | // General Dialogs Labels
|
---|
159 | DlgGenNotSet : "<No definido>",
|
---|
160 | DlgGenId : "Id",
|
---|
161 | DlgGenLangDir : "Orientación de idioma",
|
---|
162 | DlgGenLangDirLtr : "Izquierda a Derecha (LTR)",
|
---|
163 | DlgGenLangDirRtl : "Derecha a Izquierda (RTL)",
|
---|
164 | DlgGenLangCode : "Código de idioma",
|
---|
165 | DlgGenAccessKey : "Clave de Acceso",
|
---|
166 | DlgGenName : "Nombre",
|
---|
167 | DlgGenTabIndex : "Indice de tabulación",
|
---|
168 | DlgGenLongDescr : "Descripción larga URL",
|
---|
169 | DlgGenClass : "Clases de hojas de estilo",
|
---|
170 | DlgGenTitle : "Título",
|
---|
171 | DlgGenContType : "Tipo de Contenido",
|
---|
172 | DlgGenLinkCharset : "Fuente de caracteres vinculado",
|
---|
173 | DlgGenStyle : "Estilo",
|
---|
174 |
|
---|
175 | // Image Dialog
|
---|
176 | DlgImgTitle : "Propiedades de Imagen",
|
---|
177 | DlgImgInfoTab : "Información de Imagen",
|
---|
178 | DlgImgBtnUpload : "Enviar al Servidor",
|
---|
179 | DlgImgURL : "URL",
|
---|
180 | DlgImgUpload : "Cargar",
|
---|
181 | DlgImgAlt : "Texto Alternativo",
|
---|
182 | DlgImgWidth : "Anchura",
|
---|
183 | DlgImgHeight : "Altura",
|
---|
184 | DlgImgLockRatio : "Proporcional",
|
---|
185 | DlgBtnResetSize : "Tamaño Original",
|
---|
186 | DlgImgBorder : "Borde",
|
---|
187 | DlgImgHSpace : "Esp.Horiz",
|
---|
188 | DlgImgVSpace : "Esp.Vert",
|
---|
189 | DlgImgAlign : "Alineación",
|
---|
190 | DlgImgAlignLeft : "Izquierda",
|
---|
191 | DlgImgAlignAbsBottom: "Abs inferior",
|
---|
192 | DlgImgAlignAbsMiddle: "Abs centro",
|
---|
193 | DlgImgAlignBaseline : "Línea de base",
|
---|
194 | DlgImgAlignBottom : "Pie",
|
---|
195 | DlgImgAlignMiddle : "Centro",
|
---|
196 | DlgImgAlignRight : "Derecha",
|
---|
197 | DlgImgAlignTextTop : "Tope del texto",
|
---|
198 | DlgImgAlignTop : "Tope",
|
---|
199 | DlgImgPreview : "Vista Previa",
|
---|
200 | DlgImgAlertUrl : "Por favor tipee el URL de la imagen",
|
---|
201 | DlgImgLinkTab : "Vínculo",
|
---|
202 |
|
---|
203 | // Flash Dialog
|
---|
204 | DlgFlashTitle : "Propiedades de Flash",
|
---|
205 | DlgFlashChkPlay : "Autoejecución",
|
---|
206 | DlgFlashChkLoop : "Repetir",
|
---|
207 | DlgFlashChkMenu : "Activar Menú Flash",
|
---|
208 | DlgFlashScale : "Escala",
|
---|
209 | DlgFlashScaleAll : "Mostrar todo",
|
---|
210 | DlgFlashScaleNoBorder : "Sin Borde",
|
---|
211 | DlgFlashScaleFit : "Ajustado",
|
---|
212 |
|
---|
213 | // Link Dialog
|
---|
214 | DlgLnkWindowTitle : "Vínculo",
|
---|
215 | DlgLnkInfoTab : "Información de Vínculo",
|
---|
216 | DlgLnkTargetTab : "Destino",
|
---|
217 |
|
---|
218 | DlgLnkType : "Tipo de vínculo",
|
---|
219 | DlgLnkTypeURL : "URL",
|
---|
220 | DlgLnkTypeAnchor : "Referencia en esta página",
|
---|
221 | DlgLnkTypeEMail : "E-Mail",
|
---|
222 | DlgLnkProto : "Protocolo",
|
---|
223 | DlgLnkProtoOther : "<otro>",
|
---|
224 | DlgLnkURL : "URL",
|
---|
225 | DlgLnkAnchorSel : "Seleccionar una referencia",
|
---|
226 | DlgLnkAnchorByName : "Por Nombre de Referencia",
|
---|
227 | DlgLnkAnchorById : "Por ID de elemento",
|
---|
228 | DlgLnkNoAnchors : "<No hay referencias disponibles en el documento>",
|
---|
229 | DlgLnkEMail : "Dirección de E-Mail",
|
---|
230 | DlgLnkEMailSubject : "Título del Mensaje",
|
---|
231 | DlgLnkEMailBody : "Cuerpo del Mensaje",
|
---|
232 | DlgLnkUpload : "Cargar",
|
---|
233 | DlgLnkBtnUpload : "Enviar al Servidor",
|
---|
234 |
|
---|
235 | DlgLnkTarget : "Destino",
|
---|
236 | DlgLnkTargetFrame : "<marco>",
|
---|
237 | DlgLnkTargetPopup : "<ventana emergente>",
|
---|
238 | DlgLnkTargetBlank : "Nueva Ventana(_blank)",
|
---|
239 | DlgLnkTargetParent : "Ventana Padre (_parent)",
|
---|
240 | DlgLnkTargetSelf : "Misma Ventana (_self)",
|
---|
241 | DlgLnkTargetTop : "Ventana primaria (_top)",
|
---|
242 | DlgLnkTargetFrameName : "Nombre del Marco Destino",
|
---|
243 | DlgLnkPopWinName : "Nombre de Ventana Emergente",
|
---|
244 | DlgLnkPopWinFeat : "Características de Ventana Emergente",
|
---|
245 | DlgLnkPopResize : "Ajustable",
|
---|
246 | DlgLnkPopLocation : "Barra de ubicación",
|
---|
247 | DlgLnkPopMenu : "Barra de Menú",
|
---|
248 | DlgLnkPopScroll : "Barras de desplazamiento",
|
---|
249 | DlgLnkPopStatus : "Barra de Estado",
|
---|
250 | DlgLnkPopToolbar : "Barra de Herramientas",
|
---|
251 | DlgLnkPopFullScrn : "Pantalla Completa (IE)",
|
---|
252 | DlgLnkPopDependent : "Dependiente (Netscape)",
|
---|
253 | DlgLnkPopWidth : "Anchura",
|
---|
254 | DlgLnkPopHeight : "Altura",
|
---|
255 | DlgLnkPopLeft : "Posición Izquierda",
|
---|
256 | DlgLnkPopTop : "Posición Derecha",
|
---|
257 |
|
---|
258 | DlnLnkMsgNoUrl : "Por favor tipee el vínculo URL",
|
---|
259 | DlnLnkMsgNoEMail : "Por favor tipee la dirección de e-mail",
|
---|
260 | DlnLnkMsgNoAnchor : "Por favor seleccione una referencia",
|
---|
261 | DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING
|
---|
262 |
|
---|
263 | // Color Dialog
|
---|
264 | DlgColorTitle : "Seleccionar Color",
|
---|
265 | DlgColorBtnClear : "Ninguno",
|
---|
266 | DlgColorHighlight : "Resaltado",
|
---|
267 | DlgColorSelected : "Seleccionado",
|
---|
268 |
|
---|
269 | // Smiley Dialog
|
---|
270 | DlgSmileyTitle : "Insertar un Emoticon",
|
---|
271 |
|
---|
272 | // Special Character Dialog
|
---|
273 | DlgSpecialCharTitle : "Seleccione un caracter especial",
|
---|
274 |
|
---|
275 | // Table Dialog
|
---|
276 | DlgTableTitle : "Propiedades de Tabla",
|
---|
277 | DlgTableRows : "Filas",
|
---|
278 | DlgTableColumns : "Columnas",
|
---|
279 | DlgTableBorder : "Tamaño de Borde",
|
---|
280 | DlgTableAlign : "Alineación",
|
---|
281 | DlgTableAlignNotSet : "<No establecido>",
|
---|
282 | DlgTableAlignLeft : "Izquierda",
|
---|
283 | DlgTableAlignCenter : "Centrado",
|
---|
284 | DlgTableAlignRight : "Derecha",
|
---|
285 | DlgTableWidth : "Anchura",
|
---|
286 | DlgTableWidthPx : "pixeles",
|
---|
287 | DlgTableWidthPc : "porcentaje",
|
---|
288 | DlgTableHeight : "Altura",
|
---|
289 | DlgTableCellSpace : "Esp. e/celdas",
|
---|
290 | DlgTableCellPad : "Esp. interior",
|
---|
291 | DlgTableCaption : "Título",
|
---|
292 | DlgTableSummary : "Síntesis",
|
---|
293 |
|
---|
294 | // Table Cell Dialog
|
---|
295 | DlgCellTitle : "Propiedades de Celda",
|
---|
296 | DlgCellWidth : "Anchura",
|
---|
297 | DlgCellWidthPx : "pixeles",
|
---|
298 | DlgCellWidthPc : "porcentaje",
|
---|
299 | DlgCellHeight : "Altura",
|
---|
300 | DlgCellWordWrap : "Cortar Línea",
|
---|
301 | DlgCellWordWrapNotSet : "<No establecido>",
|
---|
302 | DlgCellWordWrapYes : "Si",
|
---|
303 | DlgCellWordWrapNo : "No",
|
---|
304 | DlgCellHorAlign : "Alineación Horizontal",
|
---|
305 | DlgCellHorAlignNotSet : "<No establecido>",
|
---|
306 | DlgCellHorAlignLeft : "Izquierda",
|
---|
307 | DlgCellHorAlignCenter : "Centrado",
|
---|
308 | DlgCellHorAlignRight: "Derecha",
|
---|
309 | DlgCellVerAlign : "Alineación Vertical",
|
---|
310 | DlgCellVerAlignNotSet : "<Not establecido>",
|
---|
311 | DlgCellVerAlignTop : "Tope",
|
---|
312 | DlgCellVerAlignMiddle : "Medio",
|
---|
313 | DlgCellVerAlignBottom : "ie",
|
---|
314 | DlgCellVerAlignBaseline : "Línea de Base",
|
---|
315 | DlgCellRowSpan : "Abarcar Filas",
|
---|
316 | DlgCellCollSpan : "Abarcar Columnas",
|
---|
317 | DlgCellBackColor : "Color de Fondo",
|
---|
318 | DlgCellBorderColor : "Color de Borde",
|
---|
319 | DlgCellBtnSelect : "Seleccione...",
|
---|
320 |
|
---|
321 | // Find Dialog
|
---|
322 | DlgFindTitle : "Buscar",
|
---|
323 | DlgFindFindBtn : "Buscar",
|
---|
324 | DlgFindNotFoundMsg : "El texto especificado no ha sido encontrado.",
|
---|
325 |
|
---|
326 | // Replace Dialog
|
---|
327 | DlgReplaceTitle : "Reemplazar",
|
---|
328 | DlgReplaceFindLbl : "Texto a buscar:",
|
---|
329 | DlgReplaceReplaceLbl : "Reemplazar con:",
|
---|
330 | DlgReplaceCaseChk : "Coincidir may/min",
|
---|
331 | DlgReplaceReplaceBtn : "Reemplazar",
|
---|
332 | DlgReplaceReplAllBtn : "Reemplazar Todo",
|
---|
333 | DlgReplaceWordChk : "Coincidir toda la palabra",
|
---|
334 |
|
---|
335 | // Paste Operations / Dialog
|
---|
336 | PasteErrorPaste : "La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de pegado. Por favor use el teclado (Ctrl+V).",
|
---|
337 | PasteErrorCut : "La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de cortado. Por favor use el teclado (Ctrl+X).",
|
---|
338 | PasteErrorCopy : "La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de copiado. Por favor use el teclado (Ctrl+C).",
|
---|
339 |
|
---|
340 | PasteAsText : "Pegar como Texto Plano",
|
---|
341 | PasteFromWord : "Pegar desde Word",
|
---|
342 |
|
---|
343 | DlgPasteMsg2 : "Por favor pegue dentro del cuadro utilizando el teclado (<STRONG>Ctrl+V</STRONG>); luego presione <STRONG>OK</STRONG>.",
|
---|
344 | DlgPasteIgnoreFont : "Ignorar definiciones de fuentes",
|
---|
345 | DlgPasteRemoveStyles : "Remover definiciones de estilo",
|
---|
346 | DlgPasteCleanBox : "Borrar el contenido del cuadro",
|
---|
347 |
|
---|
348 | // Color Picker
|
---|
349 | ColorAutomatic : "Automático",
|
---|
350 | ColorMoreColors : "Más Colores...",
|
---|
351 |
|
---|
352 | // Document Properties
|
---|
353 | DocProps : "Propiedades del Documento",
|
---|
354 |
|
---|
355 | // Anchor Dialog
|
---|
356 | DlgAnchorTitle : "Propiedades de la Referencia",
|
---|
357 | DlgAnchorName : "Nombre de la Referencia",
|
---|
358 | DlgAnchorErrorName : "Por favor, complete el nombre de la Referencia",
|
---|
359 |
|
---|
360 | // Speller Pages Dialog
|
---|
361 | DlgSpellNotInDic : "No se encuentra en el Diccionario",
|
---|
362 | DlgSpellChangeTo : "Cambiar a",
|
---|
363 | DlgSpellBtnIgnore : "Ignorar",
|
---|
364 | DlgSpellBtnIgnoreAll : "Ignorar Todo",
|
---|
365 | DlgSpellBtnReplace : "Reemplazar",
|
---|
366 | DlgSpellBtnReplaceAll : "Reemplazar Todo",
|
---|
367 | DlgSpellBtnUndo : "Deshacer",
|
---|
368 | DlgSpellNoSuggestions : "- No hay sugerencias -",
|
---|
369 | DlgSpellProgress : "Control de Ortografía en progreso...",
|
---|
370 | DlgSpellNoMispell : "Control finalizado: no se encontraron errores",
|
---|
371 | DlgSpellNoChanges : "Control finalizado: no se ha cambiado ninguna palabra",
|
---|
372 | DlgSpellOneChange : "Control finalizado: se ha cambiado una palabra",
|
---|
373 | DlgSpellManyChanges : "Control finalizado: se ha cambiado %1 palabras",
|
---|
374 |
|
---|
375 | IeSpellDownload : "Módulo de Control de Ortografía no instalado. ¿Desea descargarlo ahora?",
|
---|
376 |
|
---|
377 | // Button Dialog
|
---|
378 | DlgButtonText : "Texto (Valor)",
|
---|
379 | DlgButtonType : "Tipo",
|
---|
380 | DlgButtonTypeBtn : "Button", //MISSING
|
---|
381 | DlgButtonTypeSbm : "Submit", //MISSING
|
---|
382 | DlgButtonTypeRst : "Reset", //MISSING
|
---|
383 |
|
---|
384 | // Checkbox and Radio Button Dialogs
|
---|
385 | DlgCheckboxName : "Nombre",
|
---|
386 | DlgCheckboxValue : "Valor",
|
---|
387 | DlgCheckboxSelected : "Seleccionado",
|
---|
388 |
|
---|
389 | // Form Dialog
|
---|
390 | DlgFormName : "Nombre",
|
---|
391 | DlgFormAction : "Acción",
|
---|
392 | DlgFormMethod : "Método",
|
---|
393 |
|
---|
394 | // Select Field Dialog
|
---|
395 | DlgSelectName : "Nombre",
|
---|
396 | DlgSelectValue : "Valor",
|
---|
397 | DlgSelectSize : "Tamaño",
|
---|
398 | DlgSelectLines : "Lineas",
|
---|
399 | DlgSelectChkMulti : "Permitir múltiple selección",
|
---|
400 | DlgSelectOpAvail : "Opciones disponibles",
|
---|
401 | DlgSelectOpText : "Texto",
|
---|
402 | DlgSelectOpValue : "Valor",
|
---|
403 | DlgSelectBtnAdd : "Agregar",
|
---|
404 | DlgSelectBtnModify : "Modificar",
|
---|
405 | DlgSelectBtnUp : "Subir",
|
---|
406 | DlgSelectBtnDown : "Bajar",
|
---|
407 | DlgSelectBtnSetValue : "Establecer como predeterminado",
|
---|
408 | DlgSelectBtnDelete : "Eliminar",
|
---|
409 |
|
---|
410 | // Textarea Dialog
|
---|
411 | DlgTextareaName : "Nombre",
|
---|
412 | DlgTextareaCols : "Columnas",
|
---|
413 | DlgTextareaRows : "Filas",
|
---|
414 |
|
---|
415 | // Text Field Dialog
|
---|
416 | DlgTextName : "Nombre",
|
---|
417 | DlgTextValue : "Valor",
|
---|
418 | DlgTextCharWidth : "Caracteres de ancho",
|
---|
419 | DlgTextMaxChars : "Máximo caracteres",
|
---|
420 | DlgTextType : "Tipo",
|
---|
421 | DlgTextTypeText : "Texto",
|
---|
422 | DlgTextTypePass : "Contraseña",
|
---|
423 |
|
---|
424 | // Hidden Field Dialog
|
---|
425 | DlgHiddenName : "Nombre",
|
---|
426 | DlgHiddenValue : "Valor",
|
---|
427 |
|
---|
428 | // Bulleted List Dialog
|
---|
429 | BulletedListProp : "Propiedades de Viñetas",
|
---|
430 | NumberedListProp : "Propiedades de Numeraciones",
|
---|
431 | DlgLstStart : "Start", //MISSING
|
---|
432 | DlgLstType : "Tipo",
|
---|
433 | DlgLstTypeCircle : "Círculo",
|
---|
434 | DlgLstTypeDisc : "Disco",
|
---|
435 | DlgLstTypeSquare : "Cuadrado",
|
---|
436 | DlgLstTypeNumbers : "Números (1, 2, 3)",
|
---|
437 | DlgLstTypeLCase : "letras en minúsculas (a, b, c)",
|
---|
438 | DlgLstTypeUCase : "letras en mayúsculas (A, B, C)",
|
---|
439 | DlgLstTypeSRoman : "Números Romanos (i, ii, iii)",
|
---|
440 | DlgLstTypeLRoman : "Números Romanos (I, II, III)",
|
---|
441 |
|
---|
442 | // Document Properties Dialog
|
---|
443 | DlgDocGeneralTab : "General",
|
---|
444 | DlgDocBackTab : "Fondo",
|
---|
445 | DlgDocColorsTab : "Colores y Márgenes",
|
---|
446 | DlgDocMetaTab : "Meta Información",
|
---|
447 |
|
---|
448 | DlgDocPageTitle : "Título de Página",
|
---|
449 | DlgDocLangDir : "Orientación de idioma",
|
---|
450 | DlgDocLangDirLTR : "Izq. a Derecha (LTR)",
|
---|
451 | DlgDocLangDirRTL : "Der. a Izquierda (RTL)",
|
---|
452 | DlgDocLangCode : "Código de Idioma",
|
---|
453 | DlgDocCharSet : "Codif. de Conjunto de Caracteres",
|
---|
454 | DlgDocCharSetCE : "Central European", //MISSING
|
---|
455 | DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING
|
---|
456 | DlgDocCharSetCR : "Cyrillic", //MISSING
|
---|
457 | DlgDocCharSetGR : "Greek", //MISSING
|
---|
458 | DlgDocCharSetJP : "Japanese", //MISSING
|
---|
459 | DlgDocCharSetKR : "Korean", //MISSING
|
---|
460 | DlgDocCharSetTR : "Turkish", //MISSING
|
---|
461 | DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING
|
---|
462 | DlgDocCharSetWE : "Western European", //MISSING
|
---|
463 | DlgDocCharSetOther : "Otra Codificación",
|
---|
464 |
|
---|
465 | DlgDocDocType : "Encabezado de Tipo de Documento",
|
---|
466 | DlgDocDocTypeOther : "Otro Encabezado",
|
---|
467 | DlgDocIncXHTML : "Incluir Declaraciones XHTML",
|
---|
468 | DlgDocBgColor : "Color de Fondo",
|
---|
469 | DlgDocBgImage : "URL de Imagen de Fondo",
|
---|
470 | DlgDocBgNoScroll : "Fondo sin rolido",
|
---|
471 | DlgDocCText : "Texto",
|
---|
472 | DlgDocCLink : "Vínculo",
|
---|
473 | DlgDocCVisited : "Vínculo Visitado",
|
---|
474 | DlgDocCActive : "Vínculo Activo",
|
---|
475 | DlgDocMargins : "Márgenes de Página",
|
---|
476 | DlgDocMaTop : "Tope",
|
---|
477 | DlgDocMaLeft : "Izquierda",
|
---|
478 | DlgDocMaRight : "Derecha",
|
---|
479 | DlgDocMaBottom : "Pie",
|
---|
480 | DlgDocMeIndex : "Claves de indexación del Documento (separados por comas)",
|
---|
481 | DlgDocMeDescr : "Descripción del Documento",
|
---|
482 | DlgDocMeAuthor : "Autor",
|
---|
483 | DlgDocMeCopy : "Copyright",
|
---|
484 | DlgDocPreview : "Vista Previa",
|
---|
485 |
|
---|
486 | // Templates Dialog
|
---|
487 | Templates : "Plantillas",
|
---|
488 | DlgTemplatesTitle : "Contenido de Plantillas",
|
---|
489 | DlgTemplatesSelMsg : "Por favor selecciona la plantilla a abrir en el editor<br>(el contenido actual se perderá):",
|
---|
490 | DlgTemplatesLoading : "Cargando lista de Plantillas. Por favor, aguarde...",
|
---|
491 | DlgTemplatesNoTpl : "(No hay plantillas definidas)",
|
---|
492 | DlgTemplatesReplace : "Replace actual contents", //MISSING
|
---|
493 |
|
---|
494 | // About Dialog
|
---|
495 | DlgAboutAboutTab : "Acerca de",
|
---|
496 | DlgAboutBrowserInfoTab : "Información de Navegador",
|
---|
497 | DlgAboutLicenseTab : "Licencia",
|
---|
498 | DlgAboutVersion : "versión",
|
---|
499 | DlgAboutLicense : "Licenciado bajo los términos de GNU Lesser General Public License",
|
---|
500 | DlgAboutInfo : "Para mayor información por favor dirigirse a"
|
---|
501 | }
|
---|