@bobfrankston/rmfmail 1.2.276 → 1.2.277

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. package/.commitmsg +28 -23
  2. package/bin/build-tinymce.js +27 -0
  3. package/client/app.bundle.js +108 -0
  4. package/client/app.bundle.js.map +4 -4
  5. package/client/app.js +65 -0
  6. package/client/app.js.map +1 -1
  7. package/client/app.ts +59 -0
  8. package/client/compose/compose.bundle.js +90 -2
  9. package/client/compose/compose.bundle.js.map +4 -4
  10. package/client/compose/compose.js +26 -1
  11. package/client/compose/compose.js.map +1 -1
  12. package/client/compose/compose.ts +22 -1
  13. package/client/compose/editor.js +12 -1
  14. package/client/compose/editor.js.map +1 -1
  15. package/client/compose/editor.ts +17 -2
  16. package/client/index.html +1 -0
  17. package/client/lib/rmf-tiny.js +3 -0
  18. package/client/lib/tinymce/langs/ar-SA.js +440 -0
  19. package/client/lib/tinymce/langs/ar.js +441 -0
  20. package/client/lib/tinymce/langs/az.js +440 -0
  21. package/client/lib/tinymce/langs/be.js +440 -0
  22. package/client/lib/tinymce/langs/bg-BG.js +440 -0
  23. package/client/lib/tinymce/langs/bn-BD.js +440 -0
  24. package/client/lib/tinymce/langs/bs.js +440 -0
  25. package/client/lib/tinymce/langs/ca.js +440 -0
  26. package/client/lib/tinymce/langs/cs.js +440 -0
  27. package/client/lib/tinymce/langs/cy.js +440 -0
  28. package/client/lib/tinymce/langs/da.js +440 -0
  29. package/client/lib/tinymce/langs/de.js +440 -0
  30. package/client/lib/tinymce/langs/el.js +440 -0
  31. package/client/lib/tinymce/langs/eo.js +440 -0
  32. package/client/lib/tinymce/langs/es-MX.js +440 -0
  33. package/client/lib/tinymce/langs/es.js +440 -0
  34. package/client/lib/tinymce/langs/et.js +440 -0
  35. package/client/lib/tinymce/langs/eu.js +440 -0
  36. package/client/lib/tinymce/langs/fa.js +441 -0
  37. package/client/lib/tinymce/langs/fi.js +440 -0
  38. package/client/lib/tinymce/langs/fr-FR.js +440 -0
  39. package/client/lib/tinymce/langs/gl.js +440 -0
  40. package/client/lib/tinymce/langs/he-IL.js +440 -0
  41. package/client/lib/tinymce/langs/hr.js +440 -0
  42. package/client/lib/tinymce/langs/hu-HU.js +440 -0
  43. package/client/lib/tinymce/langs/hy.js +440 -0
  44. package/client/lib/tinymce/langs/id.js +440 -0
  45. package/client/lib/tinymce/langs/index.json +63 -0
  46. package/client/lib/tinymce/langs/is-IS.js +440 -0
  47. package/client/lib/tinymce/langs/it.js +440 -0
  48. package/client/lib/tinymce/langs/ja.js +440 -0
  49. package/client/lib/tinymce/langs/ka-GE.js +440 -0
  50. package/client/lib/tinymce/langs/kab.js +440 -0
  51. package/client/lib/tinymce/langs/kk.js +440 -0
  52. package/client/lib/tinymce/langs/ko-KR.js +440 -0
  53. package/client/lib/tinymce/langs/lt.js +440 -0
  54. package/client/lib/tinymce/langs/lv.js +440 -0
  55. package/client/lib/tinymce/langs/nb-NO.js +440 -0
  56. package/client/lib/tinymce/langs/ne.js +440 -0
  57. package/client/lib/tinymce/langs/nl-BE.js +440 -0
  58. package/client/lib/tinymce/langs/nl.js +440 -0
  59. package/client/lib/tinymce/langs/oc.js +440 -0
  60. package/client/lib/tinymce/langs/pl.js +440 -0
  61. package/client/lib/tinymce/langs/pt-BR.js +440 -0
  62. package/client/lib/tinymce/langs/pt-PT.js +440 -0
  63. package/client/lib/tinymce/langs/ro.js +440 -0
  64. package/client/lib/tinymce/langs/ru.js +440 -0
  65. package/client/lib/tinymce/langs/sk.js +440 -0
  66. package/client/lib/tinymce/langs/sl-SI.js +440 -0
  67. package/client/lib/tinymce/langs/sr.js +440 -0
  68. package/client/lib/tinymce/langs/sv-SE.js +440 -0
  69. package/client/lib/tinymce/langs/ta.js +440 -0
  70. package/client/lib/tinymce/langs/tg.js +440 -0
  71. package/client/lib/tinymce/langs/th-TH.js +440 -0
  72. package/client/lib/tinymce/langs/tr.js +440 -0
  73. package/client/lib/tinymce/langs/ug.js +440 -0
  74. package/client/lib/tinymce/langs/uk.js +440 -0
  75. package/client/lib/tinymce/langs/vi.js +440 -0
  76. package/client/lib/tinymce/langs/zh-CN.js +440 -0
  77. package/client/lib/tinymce/langs/zh-HK.js +440 -0
  78. package/client/lib/tinymce/langs/zh-MO.js +440 -0
  79. package/client/lib/tinymce/langs/zh-TW.js +440 -0
  80. package/client/lib/tinymce-langs.js +96 -0
  81. package/client/lib/tinymce-langs.js.map +1 -0
  82. package/client/lib/tinymce-langs.ts +99 -0
  83. package/docs/editor.md +29 -3
  84. package/docs/preferences.md +2 -1
  85. package/npmchanges.md +29 -0
  86. package/package.json +11 -8
  87. /package/packages/mailx-imap/{node_modules.npmglobalize-stash-59216 → node_modules.npmglobalize-stash-48352}/.package-lock.json +0 -0
@@ -0,0 +1,440 @@
1
+ tinymce.addI18n("gl", {
2
+ "#": "",
3
+ "Accessibility": "",
4
+ "Accordion": "",
5
+ "Accordion body...": "",
6
+ "Accordion summary...": "",
7
+ "Action": "Acci\xf3n",
8
+ "Activity": "Actividade",
9
+ "Address": "Enderezo",
10
+ "Advanced": "Avanzado",
11
+ "Align": "Ali\xf1amento",
12
+ "Align center": "Ali\xf1ar ao centro",
13
+ "Align left": "Ali\xf1ar \xe1 esquerda",
14
+ "Align right": "Ali\xf1ar \xe1 dereita",
15
+ "Alignment": "Ali\xf1amento",
16
+ "Alignment {0}": "",
17
+ "All": "Todo",
18
+ "Alternative description": "",
19
+ "Alternative source": "Orixe alternativa",
20
+ "Alternative source URL": "URL da orixe alternativa",
21
+ "Anchor": "",
22
+ "Anchor...": "Ancoraxe...",
23
+ "Anchors": "Ancoraxes",
24
+ "Animals and Nature": "Animais e natureza",
25
+ "Arrows": "Frechas",
26
+ "B": "",
27
+ "Background color": "Cor do fondo",
28
+ "Background color menu": "",
29
+ "Background color {0}": "",
30
+ "Black": "Negro",
31
+ "Block": "Bloque",
32
+ "Block {0}": "",
33
+ "Blockquote": "Bloque entre comi\xf1as",
34
+ "Blocks": "Bloques",
35
+ "Blue": "Azul",
36
+ "Blue channel": "",
37
+ "Body": "Corpo",
38
+ "Bold": "Negra",
39
+ "Border": "Bordo",
40
+ "Border color": "Cor do bordo",
41
+ "Border style": "Estilo do bordo",
42
+ "Border width": "Largo do bordo",
43
+ "Bottom": "Abaixo",
44
+ "Browse files": "",
45
+ "Browse for an image": "Buscar unha imaxe",
46
+ "Browse links": "",
47
+ "Build with {0}": "",
48
+ "Bullet list": "Lista de vi\xf1etas",
49
+ "Cancel": "Cancelar",
50
+ "Caption": "Subt\xedtulo",
51
+ "Cell": "Cela",
52
+ "Cell padding": "Marxe interior da cela",
53
+ "Cell properties": "Propiedades da cela",
54
+ "Cell spacing": "Marxe entre celas",
55
+ "Cell styles": "",
56
+ "Cell type": "Tipo de cela",
57
+ "Center": "Centro",
58
+ "Characters": "Caracteres",
59
+ "Characters (no spaces)": "Caracteres (sen espazos)",
60
+ "Circle": "Circulo",
61
+ "Class": "Clase",
62
+ "Clear formatting": "Limpar o formato",
63
+ "Close": "Pechar",
64
+ "Code": "C\xf3digo",
65
+ "Code sample...": "Mostra de c\xf3digo...",
66
+ "Code view": "",
67
+ "Color Picker": "Selector de cor",
68
+ "Color swatch": "Mostra de cores",
69
+ "Cols": "Cols.",
70
+ "Column": "Columna",
71
+ "Column clipboard actions": "",
72
+ "Column group": "Grupo de columnas",
73
+ "Column header": "",
74
+ "Constrain proportions": "Restrinxir as proporci\xf3ns",
75
+ "Copy": "Copiar",
76
+ "Copy column": "",
77
+ "Copy row": "Copiar fila",
78
+ "Could not find the specified string.": "Non foi pos\xedbel atopar a cadea de texto especificada.",
79
+ "Could not load emojis": "",
80
+ "Count": "",
81
+ "Currency": "Moeda",
82
+ "Current window": "Xanela actual",
83
+ "Custom color": "Cor personalizado",
84
+ "Custom...": "Personalizado...",
85
+ "Cut": "Cortar",
86
+ "Cut column": "",
87
+ "Cut row": "Cortar fila",
88
+ "Dark Blue": "",
89
+ "Dark Gray": "Gris escuro",
90
+ "Dark Green": "Verde escuro",
91
+ "Dark Orange": "Laranxa escuro",
92
+ "Dark Purple": "",
93
+ "Dark Red": "Vermello escuro",
94
+ "Dark Turquoise": "Turquesa escuro",
95
+ "Dark Yellow": "Amarelo escuro",
96
+ "Dashed": "",
97
+ "Date/time": "Data/hora",
98
+ "Decrease indent": "Reducir a sangr\xeda",
99
+ "Default": "Predeterminada",
100
+ "Delete accordion": "",
101
+ "Delete column": "Eliminar columna",
102
+ "Delete row": "Eliminar fila",
103
+ "Delete table": "Eliminar t\xe1boa",
104
+ "Dimensions": "Dimensi\xf3ns",
105
+ "Disc": "Disco",
106
+ "Div": "",
107
+ "Document": "",
108
+ "Dotted": "",
109
+ "Double": "",
110
+ "Drop an image here": "Soltar unha imaxe",
111
+ "Dropped file type is not supported": "",
112
+ "Edit": "Editar",
113
+ "Editor's height: {0} pixels": "",
114
+ "Editor's height: {0} pixels, Editor's width: {1} pixels": "",
115
+ "Embed": "Integrado",
116
+ "Emojis": "",
117
+ "Emojis...": "Emoticonas...",
118
+ "Error": "Erro",
119
+ "Error: Form submit field collision.": "Erro: conflito de campo ao enviar o formulario ",
120
+ "Error: No form element found.": "Erro: non se atopou ning\xfan elemento de formulario",
121
+ "Extended Latin": "Latino extendido",
122
+ "Failed to initialize plugin: {0}": "Produciuse un fallo ao iniciar o engadido: {0}",
123
+ "Failed to load plugin url: {0}": "Produciuse un fallo ao cargar a o URL do engadido: {0}",
124
+ "Failed to load plugin: {0} from url {1}": "Produciuse un fallo ao cargar a o engadido: {0} dende o URL {1}",
125
+ "Failed to upload image: {0}": "Produciuse un fallo ao cargar a imaxe: {0}",
126
+ "File": "Ficheiro",
127
+ "Find": "Buscar",
128
+ "Find (if searchreplace plugin activated)": "Atopar (se o engadido para buscar e substitu\xedr estiver activado) ",
129
+ "Find and Replace": "",
130
+ "Find and replace...": "Atopar e substitu\xedr...",
131
+ "Find in selection": "",
132
+ "Find whole words only": "Atopar unicamente as palabras enteiras",
133
+ "Flags": "Bandeiras",
134
+ "Focus to contextual toolbar": "Foco na barra de ferramentas de contexto",
135
+ "Focus to element path": "Foco na ruta do elemento",
136
+ "Focus to menubar": "Foco na barra de menu",
137
+ "Focus to notification": "",
138
+ "Focus to toolbar": "Foco na barra de ferramentas",
139
+ "Font": "",
140
+ "Font size {0}": "",
141
+ "Font sizes": "",
142
+ "Font {0}": "",
143
+ "Fonts": "Tipos de letra",
144
+ "Food and Drink": "Comida e bebida",
145
+ "Footer": "Rodap\xe9",
146
+ "Format": "Formato",
147
+ "Format {0}": "",
148
+ "Formats": "Formatos",
149
+ "Fullscreen": "Pantalla completa",
150
+ "G": "",
151
+ "General": "Xeral",
152
+ "Gray": "Gris",
153
+ "Green": "Verde",
154
+ "Green channel": "",
155
+ "Groove": "",
156
+ "Handy Shortcuts": "Atallos \xfatiles",
157
+ "Header": "Cabeceira",
158
+ "Header cell": "Cela de cabeceira",
159
+ "Heading 1": "T\xedtulo 1",
160
+ "Heading 2": "T\xedtulo 2",
161
+ "Heading 3": "T\xedtulo 3",
162
+ "Heading 4": "T\xedtulo 4",
163
+ "Heading 5": "T\xedtulo 5",
164
+ "Heading 6": "T\xedtulo 6",
165
+ "Headings": "T\xedtulo",
166
+ "Height": "Alto",
167
+ "Height:": "",
168
+ "Help": "Axuda",
169
+ "Hex color code": "",
170
+ "Hexadecimal only, 000000 to FFFFFF": "",
171
+ "Hidden": "",
172
+ "Horizontal align": "",
173
+ "Horizontal line": "Li\xf1a horizontal",
174
+ "Horizontal space": "Espazo horizontal",
175
+ "ID": "",
176
+ "ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "",
177
+ "Image is decorative": "",
178
+ "Image list": "Lista de imaxes",
179
+ "Image title": "T\xedtulo da imaxe",
180
+ "Image...": "Imaxe...",
181
+ "ImageProxy HTTP error: Could not find Image Proxy": "",
182
+ "ImageProxy HTTP error: Incorrect Image Proxy URL": "",
183
+ "ImageProxy HTTP error: Rejected request": "",
184
+ "ImageProxy HTTP error: Unknown ImageProxy error": "",
185
+ "Increase indent": "Aumentar a sangr\xeda",
186
+ "Inline": "En li\xf1a",
187
+ "Insert": "Inserir",
188
+ "Insert Template": "",
189
+ "Insert accordion": "",
190
+ "Insert column after": "Inserir columna \xe1 dereita",
191
+ "Insert column before": "Inserir columna \xe1 esquerda",
192
+ "Insert date/time": "Inserir data/hora",
193
+ "Insert date/time menu": "",
194
+ "Insert image": "Inserir imaxe",
195
+ "Insert link (if link plugin activated)": "Inserir a ligaz\xf3n (se o engadido de ligaz\xf3ns estiver activado) ",
196
+ "Insert row after": "Inserir unha fila embaixo",
197
+ "Insert row before": "Inserir unha fila enriba",
198
+ "Insert table": "Inserir t\xe1boa",
199
+ "Insert template...": "Inserir modelo...",
200
+ "Insert video": "Inserir v\xeddeo",
201
+ "Insert/Edit code sample": "Inserir/editar mostra de c\xf3digo",
202
+ "Insert/edit image": "Inserir/editar imaxe",
203
+ "Insert/edit link": "Inserir/editar ligaz\xf3n",
204
+ "Insert/edit media": "Inserir/editar medios",
205
+ "Insert/edit video": "Inserir/editar v\xeddeo",
206
+ "Inset": "",
207
+ "Invalid hex color code: {0}": "",
208
+ "Invalid input": "",
209
+ "Italic": "Cursiva",
210
+ "Justify": "Xustificar",
211
+ "Keyboard Navigation": "",
212
+ "Language": "Idioma",
213
+ "Learn more...": "Saiba m\xe1is...",
214
+ "Left": "Esquerda",
215
+ "Left to right": "De esquerda a dereita",
216
+ "Light Blue": "",
217
+ "Light Gray": "Gris claro",
218
+ "Light Green": "",
219
+ "Light Purple": "",
220
+ "Light Red": "",
221
+ "Light Yellow": "",
222
+ "Line height": "",
223
+ "Link": "",
224
+ "Link list": "Lista de ligaz\xf3ns",
225
+ "Link...": "Ligaz\xf3n...",
226
+ "List Properties": "",
227
+ "List properties...": "",
228
+ "Loading emojis...": "",
229
+ "Loading...": "",
230
+ "Lower Alpha": "Alfa min\xfascula",
231
+ "Lower Greek": "Grega min\xfascula",
232
+ "Lower Roman": "Romana min\xfascula",
233
+ "Match case": "Distinguir mai\xfasculas",
234
+ "Mathematical": "Matem\xe1tico",
235
+ "Media poster (Image URL)": "Cartel multimedia (URL da imaxe)",
236
+ "Media...": "Multimedia...",
237
+ "Medium Blue": "Azul medio",
238
+ "Medium Gray": "Gris medio",
239
+ "Medium Purple": "P\xfarpura medio",
240
+ "Merge cells": "Combinar celas",
241
+ "Middle": "Medio",
242
+ "Midnight Blue": "Azul noite",
243
+ "More...": "",
244
+ "Name": "Nome",
245
+ "Navy Blue": "Azul mari\xf1o",
246
+ "New document": "Novo documento",
247
+ "New window": "Nova xanela",
248
+ "Next": "Seguinte",
249
+ "No": "",
250
+ "No alignment": "",
251
+ "No color": "Sen cor",
252
+ "Nonbreaking space": "Espazo irromp\xedbel",
253
+ "None": "Ning\xfan",
254
+ "Numbered list": "Lista numerada",
255
+ "Numbers only, 0 to 255": "",
256
+ "OR": "OU",
257
+ "Objects": "Obxectos",
258
+ "Ok": "Aceptar",
259
+ "Open help dialog": "Abrir o di\xe1logo de axuda",
260
+ "Open link": "",
261
+ "Open link in...": "Abrir a ligaz\xf3n en...",
262
+ "Open popup menu for split buttons": "",
263
+ "Orange": "Laranxa",
264
+ "Outset": "Exterior",
265
+ "Page break": "Quebra de p\xe1xina",
266
+ "Paragraph": "Par\xe1grafo",
267
+ "Paste": "Pegar",
268
+ "Paste as text": "Pegar como texto",
269
+ "Paste column after": "",
270
+ "Paste column before": "",
271
+ "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Neste momento o pegado est\xe1 definido en modo de texto simple. Os contidos pegaranse como texto sen formato ata que se active esta opci\xf3n.",
272
+ "Paste or type a link": "Pegue ou escriba unha ligaz\xf3n",
273
+ "Paste row after": "Pegar fila enriba",
274
+ "Paste row before": "Pegar fila embaixo",
275
+ "Paste your embed code below:": "Pegue embaixo o c\xf3digo integrado:",
276
+ "People": "Xente",
277
+ "Plugins": "Engadidos",
278
+ "Plugins installed ({0}):": "Engadidos instalados ({0}):",
279
+ "Powered by {0}": "Coa tecnolox\xeda de {0}",
280
+ "Pre": "",
281
+ "Preferences": "",
282
+ "Preformatted": "Preformatado",
283
+ "Premium plugins:": "Engadidos comerciais:",
284
+ "Press the Up and Down arrow keys to resize the editor.": "",
285
+ "Press the arrow keys to resize the editor.": "",
286
+ "Press {0} for help": "",
287
+ "Preview": "Vista previa",
288
+ "Previous": "Anterior",
289
+ "Print": "",
290
+ "Print...": "Imprimir...",
291
+ "Purple": "P\xfarpura",
292
+ "Quotations": "Citas",
293
+ "R": "",
294
+ "Range 0 to 255": "",
295
+ "Red": "Vermello",
296
+ "Red channel": "",
297
+ "Redo": "Refacer",
298
+ "Remove": "",
299
+ "Remove color": "Retirar a cor",
300
+ "Remove link": "Retirar a ligaz\xf3n",
301
+ "Replace": "Substitu\xedr",
302
+ "Replace all": "Substitu\xedr todo",
303
+ "Replace with": "Substitu\xedr con",
304
+ "Resize": "Redimensionar",
305
+ "Restore last draft": "Restaurar o \xfaltimo borrador",
306
+ "Reveal or hide additional toolbar items": "",
307
+ "Rich Text Area": "",
308
+ "Rich Text Area. Press ALT-0 for help.": "\xc1rea de texto mellorado. PremaALT-0 para obter axuda.",
309
+ "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "\xc1rea de texto mellorado. Prema ALT-F9 para o men\xfa. Prema ALT-F10 para a barra de ferramentas. Prema ALT-0 para a axuda",
310
+ "Ridge": "",
311
+ "Right": "Dereita",
312
+ "Right to left": "De dereita a esquerda",
313
+ "Row": "Fila",
314
+ "Row clipboard actions": "",
315
+ "Row group": "Grupo de filas",
316
+ "Row header": "",
317
+ "Row properties": "Propiedades das filas",
318
+ "Row type": "Tipo de fila",
319
+ "Rows": "Filas",
320
+ "Save": "Gardar",
321
+ "Save (if save plugin activated)": "Gardar (se o engadido para gardar estiver activado) ",
322
+ "Scope": "\xc1mbito",
323
+ "Search": "Buscar",
324
+ "Select all": "Seleccionar todo",
325
+ "Select the {0} element": "",
326
+ "Select...": "",
327
+ "Selection": "",
328
+ "Shortcut": "Atallo",
329
+ "Show blocks": "Amosar os bloques",
330
+ "Show caption": "Amosar subt\xedtulo",
331
+ "Show invisible characters": "Amosar caracteres invis\xedbeis",
332
+ "Size": "",
333
+ "Solid": "",
334
+ "Source": "Orixe",
335
+ "Source code": "C\xf3digo fonte",
336
+ "Special Character": "",
337
+ "Special character...": "",
338
+ "Split cell": "Dividir celas",
339
+ "Square": "Cadrado",
340
+ "Start list at number": "",
341
+ "Strikethrough": "Riscado",
342
+ "Style": "Estilo",
343
+ "Subscript": "Sub\xedndice",
344
+ "Superscript": "Super\xedndice",
345
+ "Switch to or from fullscreen mode": "Activar ou desactivar o modo de pantalla completa",
346
+ "Symbols": "S\xedmbolos",
347
+ "System Font": "Tipo de letra do sistema",
348
+ "Table": "T\xe1boa",
349
+ "Table caption": "",
350
+ "Table properties": "Propiedades da t\xe1boa",
351
+ "Table styles": "",
352
+ "Template": "Modelo",
353
+ "Templates": "Modelos",
354
+ "Text": "Texto",
355
+ "Text color": "Cor do texto",
356
+ "Text color menu": "",
357
+ "Text color {0}": "",
358
+ "Text to display": "Texto que amosar",
359
+ "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "O URL que introduciu semella ser un enderezo de correo. Quere engadirlle o prefixo mailto: requirido?",
360
+ "The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "O URL que introduciu semella ser unha ligaz\xf3n externa. Quere engadirlle o prefixo http:// requirido?",
361
+ "The URL you entered seems to be an external link. Do you want to add the required https:// prefix?": "",
362
+ "Title": "T\xedtulo",
363
+ "To open the popup, press Shift+Enter": "Para abrir a xanela emerxente, prema Mai\xfas+Intro",
364
+ "Toggle accordion": "",
365
+ "Tools": "Ferramentas",
366
+ "Top": "Arriba",
367
+ "Travel and Places": "Viaxes e lugares",
368
+ "Turquoise": "Turquesa",
369
+ "Underline": "Subli\xf1ado",
370
+ "Undo": "Desfacer",
371
+ "Upload": "Cargar",
372
+ "Uploading image": "",
373
+ "Upper Alpha": "Alfa mai\xfascula",
374
+ "Upper Roman": "Romana mai\xfascula",
375
+ "Url": "URL",
376
+ "Use arrow keys to navigate.": "",
377
+ "User Defined": "Definido polo usuario",
378
+ "Valid": "V\xe1lido",
379
+ "Version": "",
380
+ "Vertical align": "",
381
+ "Vertical space": "Espazo vertical",
382
+ "View": "Ver",
383
+ "Visual aids": "Axudas visuais",
384
+ "Warn": "Aviso",
385
+ "White": "Branco",
386
+ "Width": "Largo",
387
+ "Width:": "",
388
+ "Word count": "Reconto de palabras",
389
+ "Words": "",
390
+ "Words: {0}": "Palabras: {0}",
391
+ "Yellow": "Amarelo",
392
+ "Yes": "",
393
+ "You are using {0}": "Est\xe1 a empregar {0}",
394
+ "You have unsaved changes are you sure you want to navigate away?": "Ten cambios sen gardar. Confirma que quere sa\xedr?",
395
+ "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": "O seu navegador non admite o acceso directo ao portapapeis. Empregue os atallos de teclado Ctrl+X/C/V no seu canto.",
396
+ "alignment": "ali\xf1amento",
397
+ "austral sign": "S\xedmbolo do austral",
398
+ "cedi sign": "S\xedmbolo do cedi",
399
+ "colon sign": "S\xedmbolo do col\xf3n",
400
+ "cruzeiro sign": "S\xedmbolo do cruzeiro",
401
+ "currency sign": "S\xedmbolo de moeda",
402
+ "dollar sign": "S\xedmbolo do dolar",
403
+ "dong sign": "S\xedmbolo do dong",
404
+ "drachma sign": "S\xedmbolo do dracma",
405
+ "euro-currency sign": "S\xedmbolo do euro",
406
+ "example": "exemplo",
407
+ "formatting": "formatado",
408
+ "french franc sign": "S\xedmbolo do franco franc\xe9s",
409
+ "german penny symbol": "S\xedmbolo do penique alem\xe1n",
410
+ "guarani sign": "S\xedmbolo do guaran\xed",
411
+ "history": "historial",
412
+ "hryvnia sign": "S\xedmbolo do grivna",
413
+ "indentation": "sangrado",
414
+ "indian rupee sign": "S\xedmbolo da rupia india",
415
+ "kip sign": "S\xedmbolo do kip",
416
+ "lira sign": "S\xedmbolo da lira",
417
+ "livre tournois sign": "S\xedmbolo da libre tournois",
418
+ "manat sign": "S\xedmbolo do manat",
419
+ "mill sign": "S\xedmbolo do mill",
420
+ "naira sign": "S\xedmbolo da naira",
421
+ "new sheqel sign": "S\xedmbolo do novo s\xe9quel",
422
+ "nordic mark sign": "S\xedmbolo do marco n\xf3rdico",
423
+ "peseta sign": "S\xedmbolo da peseta",
424
+ "peso sign": "S\xedmbolo do peso",
425
+ "ruble sign": "S\xedmbolo do rublo",
426
+ "rupee sign": "S\xedmbolo da rupia",
427
+ "spesmilo sign": "S\xedmbolo do spesmilo",
428
+ "styles": "estilos",
429
+ "tenge sign": "S\xedmbolo do tengue",
430
+ "tugrik sign": "S\xedmbolo do tugrik",
431
+ "turkish lira sign": "S\xedmbolo da lira turca",
432
+ "won sign": "S\xedmbolo do won",
433
+ "yen character": "Car\xe1cter do ien",
434
+ "yen/yuan character variant one": "Variante 1 do car\xe1cter do ien/yuan",
435
+ "yuan character": "Car\xe1cter do yuan",
436
+ "yuan character, in hong kong and taiwan": "Car\xe1cter do yuan, en Hong Kong e Taiwan",
437
+ "{0} characters": "",
438
+ "{0} columns, {1} rows": "",
439
+ "{0} words": "{0} palabras"
440
+ });