@bobfrankston/rmfmail 1.2.274 → 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 (112) hide show
  1. package/.commitmsg +31 -0
  2. package/bin/build-tinymce.js +27 -0
  3. package/client/android-bootstrap.bundle.js +169 -0
  4. package/client/android-bootstrap.bundle.js.map +2 -2
  5. package/client/app.bundle.js +231 -23
  6. package/client/app.bundle.js.map +4 -4
  7. package/client/app.js +81 -1
  8. package/client/app.js.map +1 -1
  9. package/client/app.ts +75 -1
  10. package/client/components/invite-card.js +107 -0
  11. package/client/components/invite-card.js.map +1 -0
  12. package/client/components/invite-card.ts +119 -0
  13. package/client/components/message-viewer.js +42 -17
  14. package/client/components/message-viewer.js.map +1 -1
  15. package/client/components/message-viewer.ts +42 -16
  16. package/client/compose/compose.bundle.js +90 -2
  17. package/client/compose/compose.bundle.js.map +4 -4
  18. package/client/compose/compose.js +26 -1
  19. package/client/compose/compose.js.map +1 -1
  20. package/client/compose/compose.ts +22 -1
  21. package/client/compose/editor.js +12 -1
  22. package/client/compose/editor.js.map +1 -1
  23. package/client/compose/editor.ts +17 -2
  24. package/client/index.html +1 -0
  25. package/client/lib/rmf-tiny.js +3 -0
  26. package/client/lib/tinymce/langs/ar-SA.js +440 -0
  27. package/client/lib/tinymce/langs/ar.js +441 -0
  28. package/client/lib/tinymce/langs/az.js +440 -0
  29. package/client/lib/tinymce/langs/be.js +440 -0
  30. package/client/lib/tinymce/langs/bg-BG.js +440 -0
  31. package/client/lib/tinymce/langs/bn-BD.js +440 -0
  32. package/client/lib/tinymce/langs/bs.js +440 -0
  33. package/client/lib/tinymce/langs/ca.js +440 -0
  34. package/client/lib/tinymce/langs/cs.js +440 -0
  35. package/client/lib/tinymce/langs/cy.js +440 -0
  36. package/client/lib/tinymce/langs/da.js +440 -0
  37. package/client/lib/tinymce/langs/de.js +440 -0
  38. package/client/lib/tinymce/langs/el.js +440 -0
  39. package/client/lib/tinymce/langs/eo.js +440 -0
  40. package/client/lib/tinymce/langs/es-MX.js +440 -0
  41. package/client/lib/tinymce/langs/es.js +440 -0
  42. package/client/lib/tinymce/langs/et.js +440 -0
  43. package/client/lib/tinymce/langs/eu.js +440 -0
  44. package/client/lib/tinymce/langs/fa.js +441 -0
  45. package/client/lib/tinymce/langs/fi.js +440 -0
  46. package/client/lib/tinymce/langs/fr-FR.js +440 -0
  47. package/client/lib/tinymce/langs/gl.js +440 -0
  48. package/client/lib/tinymce/langs/he-IL.js +440 -0
  49. package/client/lib/tinymce/langs/hr.js +440 -0
  50. package/client/lib/tinymce/langs/hu-HU.js +440 -0
  51. package/client/lib/tinymce/langs/hy.js +440 -0
  52. package/client/lib/tinymce/langs/id.js +440 -0
  53. package/client/lib/tinymce/langs/index.json +63 -0
  54. package/client/lib/tinymce/langs/is-IS.js +440 -0
  55. package/client/lib/tinymce/langs/it.js +440 -0
  56. package/client/lib/tinymce/langs/ja.js +440 -0
  57. package/client/lib/tinymce/langs/ka-GE.js +440 -0
  58. package/client/lib/tinymce/langs/kab.js +440 -0
  59. package/client/lib/tinymce/langs/kk.js +440 -0
  60. package/client/lib/tinymce/langs/ko-KR.js +440 -0
  61. package/client/lib/tinymce/langs/lt.js +440 -0
  62. package/client/lib/tinymce/langs/lv.js +440 -0
  63. package/client/lib/tinymce/langs/nb-NO.js +440 -0
  64. package/client/lib/tinymce/langs/ne.js +440 -0
  65. package/client/lib/tinymce/langs/nl-BE.js +440 -0
  66. package/client/lib/tinymce/langs/nl.js +440 -0
  67. package/client/lib/tinymce/langs/oc.js +440 -0
  68. package/client/lib/tinymce/langs/pl.js +440 -0
  69. package/client/lib/tinymce/langs/pt-BR.js +440 -0
  70. package/client/lib/tinymce/langs/pt-PT.js +440 -0
  71. package/client/lib/tinymce/langs/ro.js +440 -0
  72. package/client/lib/tinymce/langs/ru.js +440 -0
  73. package/client/lib/tinymce/langs/sk.js +440 -0
  74. package/client/lib/tinymce/langs/sl-SI.js +440 -0
  75. package/client/lib/tinymce/langs/sr.js +440 -0
  76. package/client/lib/tinymce/langs/sv-SE.js +440 -0
  77. package/client/lib/tinymce/langs/ta.js +440 -0
  78. package/client/lib/tinymce/langs/tg.js +440 -0
  79. package/client/lib/tinymce/langs/th-TH.js +440 -0
  80. package/client/lib/tinymce/langs/tr.js +440 -0
  81. package/client/lib/tinymce/langs/ug.js +440 -0
  82. package/client/lib/tinymce/langs/uk.js +440 -0
  83. package/client/lib/tinymce/langs/vi.js +440 -0
  84. package/client/lib/tinymce/langs/zh-CN.js +440 -0
  85. package/client/lib/tinymce/langs/zh-HK.js +440 -0
  86. package/client/lib/tinymce/langs/zh-MO.js +440 -0
  87. package/client/lib/tinymce/langs/zh-TW.js +440 -0
  88. package/client/lib/tinymce-langs.js +96 -0
  89. package/client/lib/tinymce-langs.js.map +1 -0
  90. package/client/lib/tinymce-langs.ts +99 -0
  91. package/client/package.json +1 -1
  92. package/client/styles/components.css +48 -0
  93. package/docs/editor.md +29 -3
  94. package/docs/preferences.md +2 -1
  95. package/npmchanges.md +29 -0
  96. package/package.json +18 -15
  97. package/packages/mailx-imap/package-lock.json +2 -2
  98. package/packages/mailx-imap/package.json +2 -2
  99. package/packages/mailx-settings/package.json +1 -1
  100. package/packages/mailx-store/package.json +1 -1
  101. package/packages/mailx-store/store.d.ts +5 -0
  102. package/packages/mailx-store/store.d.ts.map +1 -1
  103. package/packages/mailx-store/store.js +21 -0
  104. package/packages/mailx-store/store.js.map +1 -1
  105. package/packages/mailx-store/store.ts +27 -0
  106. package/packages/mailx-types/index.d.ts +56 -0
  107. package/packages/mailx-types/index.d.ts.map +1 -1
  108. package/packages/mailx-types/index.js +187 -0
  109. package/packages/mailx-types/index.js.map +1 -1
  110. package/packages/mailx-types/index.ts +192 -0
  111. package/packages/mailx-types/package.json +1 -1
  112. /package/packages/mailx-imap/{node_modules.npmglobalize-stash-31304 → node_modules.npmglobalize-stash-48352}/.package-lock.json +0 -0
@@ -0,0 +1,440 @@
1
+ tinymce.addI18n("ro", {
2
+ "#": "",
3
+ "Accessibility": "Accesibilitate",
4
+ "Accordion": "",
5
+ "Accordion body...": "",
6
+ "Accordion summary...": "",
7
+ "Action": "Ac\u0163iune",
8
+ "Activity": "Activit\u0103\u021bi",
9
+ "Address": "Adres\u0103",
10
+ "Advanced": "Complex",
11
+ "Align": "Aliniere",
12
+ "Align center": "Aliniere centru",
13
+ "Align left": "Aliniere st\xe2nga",
14
+ "Align right": "Aliniere dreapta",
15
+ "Alignment": "Aliniere",
16
+ "Alignment {0}": "",
17
+ "All": "Tot",
18
+ "Alternative description": "Descriere alternativ\u0103",
19
+ "Alternative source": "Surs\u0103 alternativ\u0103",
20
+ "Alternative source URL": "URL surs\u0103 alternativ\u0103",
21
+ "Anchor": "Ancor\u0103",
22
+ "Anchor...": "Ancor\u0103\u2026",
23
+ "Anchors": "Ancore",
24
+ "Animals and Nature": "Animale \u0219i natur\u0103",
25
+ "Arrows": "S\u0103ge\u021bi",
26
+ "B": "",
27
+ "Background color": "Culoare fundal",
28
+ "Background color menu": "",
29
+ "Background color {0}": "",
30
+ "Black": "Negru",
31
+ "Block": "Sec\u021biune",
32
+ "Block {0}": "",
33
+ "Blockquote": "Bloc de citate",
34
+ "Blocks": "Blocuri",
35
+ "Blue": "Albastru",
36
+ "Blue channel": "",
37
+ "Body": "Corp",
38
+ "Bold": "Aldin",
39
+ "Border": "Chenar",
40
+ "Border color": "Culoare chenar",
41
+ "Border style": "Stil chenar",
42
+ "Border width": "Grosime chenar",
43
+ "Bottom": "Jos",
44
+ "Browse files": "",
45
+ "Browse for an image": "C\u0103uta\u021bi o imagine",
46
+ "Browse links": "",
47
+ "Build with {0}": "",
48
+ "Bullet list": "List\u0103 marcatori",
49
+ "Cancel": "Revocare",
50
+ "Caption": "Titlu",
51
+ "Cell": "Celul\u0103",
52
+ "Cell padding": "Spa\u021biere \xeen celul\u0103",
53
+ "Cell properties": "Propriet\u0103\u021bi celul\u0103",
54
+ "Cell spacing": "Spa\u021biere celul\u0103",
55
+ "Cell styles": "",
56
+ "Cell type": "Tip celul\u0103",
57
+ "Center": "Centru",
58
+ "Characters": "Caractere",
59
+ "Characters (no spaces)": "Caractere (f\u0103r\u0103 spa\u021bii)",
60
+ "Circle": "Cerc",
61
+ "Class": "Clas\u0103",
62
+ "Clear formatting": "\xcendep\u0103rtare formatare",
63
+ "Close": "\xcenchidere",
64
+ "Code": "Cod",
65
+ "Code sample...": "Mostr\u0103 cod\u2026",
66
+ "Code view": "Vizualizare cod",
67
+ "Color Picker": "Selector culori",
68
+ "Color swatch": "Mostr\u0103 de culori",
69
+ "Cols": "Coloane",
70
+ "Column": "Coloan\u0103",
71
+ "Column clipboard actions": "",
72
+ "Column group": "Grup coloane",
73
+ "Column header": "",
74
+ "Constrain proportions": "Restric\u021bionare propor\u021bii",
75
+ "Copy": "Copiere",
76
+ "Copy column": "Copia\u021bi coloana",
77
+ "Copy row": "Copiere r\xe2nd",
78
+ "Could not find the specified string.": "Nu s-a g\u0103sit \u0219irul indicat.",
79
+ "Could not load emojis": "",
80
+ "Count": "Num\u0103r\u0103toare",
81
+ "Currency": "Moned\u0103",
82
+ "Current window": "Fereastra curent\u0103",
83
+ "Custom color": "Culoare personalizat\u0103",
84
+ "Custom...": "Particularizare...",
85
+ "Cut": "Decupare",
86
+ "Cut column": "T\u0103ia\u021bi coloana",
87
+ "Cut row": "Decupare r\xe2nd",
88
+ "Dark Blue": "Negru \xeenchis",
89
+ "Dark Gray": "Gri \xeenchis",
90
+ "Dark Green": "Verde \xeenchis",
91
+ "Dark Orange": "Portocaliu \xeenchis",
92
+ "Dark Purple": "Violet \xeenchis",
93
+ "Dark Red": "Ro\u0219u \xeenchis",
94
+ "Dark Turquoise": "Turcoaz \xeenchis",
95
+ "Dark Yellow": "Galben \xeenchis",
96
+ "Dashed": "",
97
+ "Date/time": "Dat\u0103/or\u0103",
98
+ "Decrease indent": "Mic\u0219orare indent",
99
+ "Default": "Implicit",
100
+ "Delete accordion": "",
101
+ "Delete column": "Eliminare coloan\u0103",
102
+ "Delete row": "Eliminare r\xe2nd",
103
+ "Delete table": "Eliminare tabel",
104
+ "Dimensions": "Dimensiuni",
105
+ "Disc": "Punct",
106
+ "Div": "",
107
+ "Document": "",
108
+ "Dotted": "",
109
+ "Double": "",
110
+ "Drop an image here": "Glisa\u021bi o imagine aici",
111
+ "Dropped file type is not supported": "",
112
+ "Edit": "Editare",
113
+ "Editor's height: {0} pixels": "",
114
+ "Editor's height: {0} pixels, Editor's width: {1} pixels": "",
115
+ "Embed": "\xcencorporare",
116
+ "Emojis": "",
117
+ "Emojis...": "",
118
+ "Error": "Eroare",
119
+ "Error: Form submit field collision.": "Eroare: Coliziune c\xe2mpuri la trimiterea formularului.",
120
+ "Error: No form element found.": "Eroare: Niciun element de formular g\u0103sit.",
121
+ "Extended Latin": "Simboluri alfabet latin extins",
122
+ "Failed to initialize plugin: {0}": "Nu s-a putut ini\u021bializa modulul: {0}",
123
+ "Failed to load plugin url: {0}": "Nu s-a putut \xeenc\u0103rca URL-ul modulului: {0}",
124
+ "Failed to load plugin: {0} from url {1}": "Nu s-a putut \xeenc\u0103rca modulul: {0} de la URL-ul {1}",
125
+ "Failed to upload image: {0}": "Nu s-a putut \xeenc\u0103rca imaginea: {0}",
126
+ "File": "Fi\u0219ier",
127
+ "Find": "G\u0103sire",
128
+ "Find (if searchreplace plugin activated)": "C\u0103utare (dac\u0103 modulul de c\u0103utare \u0219i \xeenlocuire este activat)",
129
+ "Find and Replace": "G\u0103si\u021bi \u0219i \xeenlocui\u021bi",
130
+ "Find and replace...": "C\u0103utare \u0219i \xeenlocuire\u2026",
131
+ "Find in selection": "G\u0103si\u021bi \xeen selec\u021bie",
132
+ "Find whole words only": "G\u0103se\u0219te doar cuvintele \xeentregi",
133
+ "Flags": "Steaguri",
134
+ "Focus to contextual toolbar": "Centrare pe bara de unelte contextual\u0103",
135
+ "Focus to element path": "Centrare pe calea elementului",
136
+ "Focus to menubar": "Centrare pe bara de meniuri",
137
+ "Focus to notification": "",
138
+ "Focus to toolbar": "Centrare pe bara de unelte",
139
+ "Font": "",
140
+ "Font size {0}": "",
141
+ "Font sizes": "Dimensiuni de font",
142
+ "Font {0}": "",
143
+ "Fonts": "Fonturi",
144
+ "Food and Drink": "M\xe2ncare \u0219i b\u0103uturi",
145
+ "Footer": "",
146
+ "Format": "",
147
+ "Format {0}": "",
148
+ "Formats": "Formate",
149
+ "Fullscreen": "Ecran complet",
150
+ "G": "",
151
+ "General": "",
152
+ "Gray": "Gri",
153
+ "Green": "Verde",
154
+ "Green channel": "",
155
+ "Groove": "",
156
+ "Handy Shortcuts": "Comenzi rapide accesibile",
157
+ "Header": "",
158
+ "Header cell": "Celul\u0103 de antet",
159
+ "Heading 1": "Titlu 1",
160
+ "Heading 2": "Titlu 2",
161
+ "Heading 3": "Titlu 3",
162
+ "Heading 4": "Titlu 4",
163
+ "Heading 5": "Titlu 5",
164
+ "Heading 6": "Titlu 6",
165
+ "Headings": "Rubrici",
166
+ "Height": "\xcen\u0103l\u021bime",
167
+ "Height:": "",
168
+ "Help": "Ajutor",
169
+ "Hex color code": "",
170
+ "Hexadecimal only, 000000 to FFFFFF": "",
171
+ "Hidden": "Ascuns",
172
+ "Horizontal align": "Aliniere orizontal\u0103",
173
+ "Horizontal line": "Linie orizontal\u0103",
174
+ "Horizontal space": "Spa\u0163iu orizontal",
175
+ "ID": "",
176
+ "ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID-ul trebuie s\u0103 \xeenceap\u0103 cu o liter\u0103, urmat\u0103 doar de litere, cifre, liniu\u021be, puncte, dou\u0103 puncte sau litere de subliniere.",
177
+ "Image is decorative": "Imaginea este decorativ\u0103",
178
+ "Image list": "List\u0103 de imagini",
179
+ "Image title": "Titlu imagine",
180
+ "Image...": "Imagine\u2026",
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": "M\u0103rire indent",
186
+ "Inline": "\xcen linie",
187
+ "Insert": "Inserare",
188
+ "Insert Template": "",
189
+ "Insert accordion": "",
190
+ "Insert column after": "Inserare coloan\u0103 dup\u0103",
191
+ "Insert column before": "Inserare coloan\u0103 \xeenainte",
192
+ "Insert date/time": "Inserare dat\u0103/or\u0103",
193
+ "Insert date/time menu": "",
194
+ "Insert image": "Inserare imagine",
195
+ "Insert link (if link plugin activated)": "Inserare link (dac\u0103 modulul de link-uri este activat)",
196
+ "Insert row after": "Inserare r\xe2nd dup\u0103",
197
+ "Insert row before": "Inserare r\xe2nd \xeenainte",
198
+ "Insert table": "Inserare tabel",
199
+ "Insert template...": "Inserare \u0219ablon\u2026",
200
+ "Insert video": "Inserare video",
201
+ "Insert/Edit code sample": "Inserare/Editare mostr\u0103 cod",
202
+ "Insert/edit image": "Inserare/editare imagini",
203
+ "Insert/edit link": "Inserare/editare link",
204
+ "Insert/edit media": "Inserare/editare media",
205
+ "Insert/edit video": "Inserare/editare video",
206
+ "Inset": "",
207
+ "Invalid hex color code: {0}": "",
208
+ "Invalid input": "",
209
+ "Italic": "Cursiv",
210
+ "Justify": "Aliniere st\xe2nga-dreapta",
211
+ "Keyboard Navigation": "Navigare de la tastatur\u0103",
212
+ "Language": "Limb\u0103",
213
+ "Learn more...": "Afla\u021bi mai multe\u2026",
214
+ "Left": "St\xe2nga",
215
+ "Left to right": "St\xe2nga la dreapta",
216
+ "Light Blue": "Albastru deschis",
217
+ "Light Gray": "Gri deschis",
218
+ "Light Green": "Verde deschis",
219
+ "Light Purple": "Violet deschis",
220
+ "Light Red": "Ro\u015fu deschis",
221
+ "Light Yellow": "Galben deschis",
222
+ "Line height": "\xcen\u0103l\u021bimea liniei",
223
+ "Link": "",
224
+ "Link list": "List\u0103 linkuri",
225
+ "Link...": "Link\u2026",
226
+ "List Properties": "Propriet\u0103\u021bi list\u0103",
227
+ "List properties...": "Propriet\u0103\u021bi list\u0103...",
228
+ "Loading emojis...": "",
229
+ "Loading...": "A\u0219tepta\u021bi...",
230
+ "Lower Alpha": "Litere mici",
231
+ "Lower Greek": "Grecesc mic",
232
+ "Lower Roman": "Cifre romane mici",
233
+ "Match case": "Potrivire litere mari \u0219i mici",
234
+ "Mathematical": "Simboluri matematice",
235
+ "Media poster (Image URL)": "Poster media (URL imagine)",
236
+ "Media...": "Media\u2026",
237
+ "Medium Blue": "Albastru mediu",
238
+ "Medium Gray": "Gri mediu",
239
+ "Medium Purple": "Mov mediu",
240
+ "Merge cells": "\xcembinare celule",
241
+ "Middle": "Mijloc",
242
+ "Midnight Blue": "Albastru \xeenchis",
243
+ "More...": "Mai multe...",
244
+ "Name": "Nume",
245
+ "Navy Blue": "Albastru marin",
246
+ "New document": "Document nou",
247
+ "New window": "Fereastr\u0103 nou\u0103",
248
+ "Next": "Urm\u0103torul",
249
+ "No": "Nu",
250
+ "No alignment": "F\u0103r\u0103 aliniere",
251
+ "No color": "F\u0103r\u0103 culoare",
252
+ "Nonbreaking space": "Spa\u021biu f\u0103r\u0103 \xeentreruperi",
253
+ "None": "Nu se utilizeaz\u0103 (acest c\xe2mp)",
254
+ "Numbered list": "List\u0103 numerotat\u0103",
255
+ "Numbers only, 0 to 255": "",
256
+ "OR": "SAU",
257
+ "Objects": "Obiecte",
258
+ "Ok": "",
259
+ "Open help dialog": "Deschide dialogul de ajutor",
260
+ "Open link": "Deschide leg\u0103tur\u0103",
261
+ "Open link in...": "Deschide link \xeen\u2026",
262
+ "Open popup menu for split buttons": "Deschide\u021bi meniul pop-up pentru butoanele divizate",
263
+ "Orange": "Portocaliu",
264
+ "Outset": "",
265
+ "Page break": "\xcentrerupere de pagin\u0103",
266
+ "Paragraph": "Paragraf",
267
+ "Paste": "Lipire",
268
+ "Paste as text": "Lipire ca text",
269
+ "Paste column after": "Inserare coloan\u0103 dup\u0103",
270
+ "Paste column before": "Inserare coloan\u0103 \xeenainte",
271
+ "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Lipirea este \xeen mod text simplu. Con\u021binutul va fi lipit ca text simplu p\xe2n\u0103 dezactiva\u021bi aceast\u0103 op\u021biune.",
272
+ "Paste or type a link": "Lipi\u021bi sau scrie\u021bi un link",
273
+ "Paste row after": "Lipire r\xe2nd dup\u0103",
274
+ "Paste row before": "Lipire r\xe2nd \xeenainte",
275
+ "Paste your embed code below:": "Lipi\u021bi codul de \xeencorporare mai jos:",
276
+ "People": "Persoane",
277
+ "Plugins": "Inserturi",
278
+ "Plugins installed ({0}):": "Module instalate ({0}):",
279
+ "Powered by {0}": "Sus\u021binut de {0}",
280
+ "Pre": "",
281
+ "Preferences": "Preferin\u021be",
282
+ "Preformatted": "Preformatat",
283
+ "Premium plugins:": "Module premium:",
284
+ "Press the Up and Down arrow keys to resize the editor.": "Ap\u0103sa\u021bi tastele Sus \u0219i Jos pentru a redimensiona editorul.",
285
+ "Press the arrow keys to resize the editor.": "Ap\u0103sa\u021bi tastele s\u0103geat\u0103 pentru a redimensiona editorul.",
286
+ "Press {0} for help": "",
287
+ "Preview": "Previzualizare",
288
+ "Previous": "Anterior",
289
+ "Print": "Imprimare",
290
+ "Print...": "Tip\u0103rire\u2026",
291
+ "Purple": "Mov",
292
+ "Quotations": "Ghilimele",
293
+ "R": "",
294
+ "Range 0 to 255": "",
295
+ "Red": "Ro\u0219u",
296
+ "Red channel": "",
297
+ "Redo": "Refacere",
298
+ "Remove": "\u0218terge",
299
+ "Remove color": "Eliminare culoare",
300
+ "Remove link": "Eliminare link",
301
+ "Replace": "\xcenlocuire",
302
+ "Replace all": "\xcenlocuire peste tot",
303
+ "Replace with": "\xcenlocuire cu",
304
+ "Resize": "Redimensionare",
305
+ "Restore last draft": "Restabili\u021bi ultima ciorn\u0103",
306
+ "Reveal or hide additional toolbar items": "",
307
+ "Rich Text Area": "",
308
+ "Rich Text Area. Press ALT-0 for help.": "Zon\u0103 Text Formatat. Ap\u0103sa\u021bi ALT-0 pentru ajutor.",
309
+ "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Zon\u0103 Text Formatat. Ap\u0103sa\u021bi ALT-F9 pentru a accesa meniul. Ap\u0103sa\u021bi ALT-F10 pentru a accesa bara de unelte. Ap\u0103sa\u021bi ALT-0 pentru ajutor",
310
+ "Ridge": "",
311
+ "Right": "Dreapta",
312
+ "Right to left": "Dreapta la st\xe2nga",
313
+ "Row": "R\xe2nd",
314
+ "Row clipboard actions": "Ac\u021biuni clipboard pe r\xe2nd",
315
+ "Row group": "Grupare r\xe2nduri",
316
+ "Row header": "",
317
+ "Row properties": "Propriet\u0103\u021bi r\xe2nd",
318
+ "Row type": "Tip r\xe2nd",
319
+ "Rows": "R\xe2nduri",
320
+ "Save": "Salvare",
321
+ "Save (if save plugin activated)": "Salvare (dac\u0103 modulul de salvare este activat)",
322
+ "Scope": "Domeniu",
323
+ "Search": "C\u0103utare",
324
+ "Select all": "Selecteaz\u0103 tot",
325
+ "Select the {0} element": "",
326
+ "Select...": "Selectare...",
327
+ "Selection": "Selec\u021bie",
328
+ "Shortcut": "Comand\u0103 rapid\u0103",
329
+ "Show blocks": "Arat\u0103 rubricile",
330
+ "Show caption": "Afi\u0219are captur\u0103",
331
+ "Show invisible characters": "Arat\u0103 caracterele invizibile",
332
+ "Size": "Dimensiuni",
333
+ "Solid": "",
334
+ "Source": "Surs\u0103",
335
+ "Source code": "Cod surs\u0103",
336
+ "Special Character": "Caracter special",
337
+ "Special character...": "Caracter special\u2026",
338
+ "Split cell": "Scindare celul\u0103",
339
+ "Square": "P\u0103trat",
340
+ "Start list at number": "\xcencepe\u021bi lista la num\u0103rul",
341
+ "Strikethrough": "T\u0103iere",
342
+ "Style": "Stil",
343
+ "Subscript": "Indice",
344
+ "Superscript": "Exponent",
345
+ "Switch to or from fullscreen mode": "Comutare pe sau de la modul ecran complet",
346
+ "Symbols": "Simboluri",
347
+ "System Font": "Font Sistem",
348
+ "Table": "Tabel",
349
+ "Table caption": "",
350
+ "Table properties": "Propriet\u0103\u021bi tabel",
351
+ "Table styles": "",
352
+ "Template": "\u0218ablon",
353
+ "Templates": "\u0218abloane",
354
+ "Text": "",
355
+ "Text color": "Culoare text",
356
+ "Text color menu": "",
357
+ "Text color {0}": "",
358
+ "Text to display": "Text de afi\u0219at",
359
+ "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "URL-ul introdus pare a fi o adres\u0103 de e-mail. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul mailto: necesar?",
360
+ "The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "URL-ul introdus pare a fi un link extern. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul http:// necesar?",
361
+ "The URL you entered seems to be an external link. Do you want to add the required https:// prefix?": "Adresa URL pe care a\u021bi introdus-o pare a fi un leg\u0103tur\u0103 extern\u0103. Dori\u021bi s\u0103 ad\u0103uga\u021bi prefixul https:// necesar?",
362
+ "Title": "Titlu",
363
+ "To open the popup, press Shift+Enter": "Pentru a deschide fereastra popup, ap\u0103sa\u021bi Shift+Enter",
364
+ "Toggle accordion": "",
365
+ "Tools": "Unelte",
366
+ "Top": "Sus",
367
+ "Travel and Places": "C\u0103l\u0103torii \u0219i loca\u021bii",
368
+ "Turquoise": "Turcoaz",
369
+ "Underline": "Subliniere",
370
+ "Undo": "Anulare",
371
+ "Upload": "\xcenc\u0103rcare",
372
+ "Uploading image": "\xcenc\u0103rcare imagine",
373
+ "Upper Alpha": "Litere mari",
374
+ "Upper Roman": "Cifre romane mari",
375
+ "Url": "",
376
+ "Use arrow keys to navigate.": "",
377
+ "User Defined": "Definite de utilizator",
378
+ "Valid": "",
379
+ "Version": "Versiune",
380
+ "Vertical align": "",
381
+ "Vertical space": "Spa\u0163iu vertical",
382
+ "View": "Vizualizare",
383
+ "Visual aids": "Ajutoare vizuale",
384
+ "Warn": "Aten\u021bionare",
385
+ "White": "Alb",
386
+ "Width": "L\u0103\u021bime",
387
+ "Width:": "",
388
+ "Word count": "Num\u0103r\u0103toare cuvinte",
389
+ "Words": "Cuvinte",
390
+ "Words: {0}": "Cuvinte: {0}",
391
+ "Yellow": "Galben",
392
+ "Yes": "Da",
393
+ "You are using {0}": "Folosi\u021bi {0}",
394
+ "You have unsaved changes are you sure you want to navigate away?": "Ave\u021bi modific\u0103ri nesalvate. Sigur dori\u021bi s\u0103 naviga\u021bi \xeen alt\u0103 parte?",
395
+ "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": "Browser-ul dumneavoastr\u0103 nu are acces direct la clipboard. V\u0103 rug\u0103m s\u0103 folosi\u021bi \xeen schimb scurt\u0103turile de tastatur\u0103 Ctrl+X/C/V.",
396
+ "alignment": "aliniere",
397
+ "austral sign": "simbol austral",
398
+ "cedi sign": "simbol cedi",
399
+ "colon sign": "dou\u0103 puncte",
400
+ "cruzeiro sign": "simbol cruzeiro",
401
+ "currency sign": "simbol moned\u0103",
402
+ "dollar sign": "simbol dolar",
403
+ "dong sign": "simbol dong",
404
+ "drachma sign": "simbol drahm\u0103",
405
+ "euro-currency sign": "simbol euro",
406
+ "example": "exemplu",
407
+ "formatting": "formatare",
408
+ "french franc sign": "simbol franc francez",
409
+ "german penny symbol": "simbol peni german",
410
+ "guarani sign": "simbol guarani",
411
+ "history": "istoric",
412
+ "hryvnia sign": "simbol grivn\u0103",
413
+ "indentation": "indentare",
414
+ "indian rupee sign": "simbol rupie indian\u0103",
415
+ "kip sign": "simbol kip",
416
+ "lira sign": "simbol lir\u0103",
417
+ "livre tournois sign": "simbol livr\u0103 tournois",
418
+ "manat sign": "simbol manat",
419
+ "mill sign": "simbol mill",
420
+ "naira sign": "simbol naira",
421
+ "new sheqel sign": "simbol shekel nou",
422
+ "nordic mark sign": "simbol marc\u0103 nordic\u0103",
423
+ "peseta sign": "simbol peset\u0103",
424
+ "peso sign": "simbol peso",
425
+ "ruble sign": "simbol rubl\u0103",
426
+ "rupee sign": "simbol rupie",
427
+ "spesmilo sign": "simbol spesmilo",
428
+ "styles": "stiluri",
429
+ "tenge sign": "simbol tenge",
430
+ "tugrik sign": "simbol tugrik",
431
+ "turkish lira sign": "simbol lir\u0103 turceasc\u0103",
432
+ "won sign": "simbol won",
433
+ "yen character": "simbol yen",
434
+ "yen/yuan character variant one": "simbol yen/yuan prima variant\u0103",
435
+ "yuan character": "simbol yuan",
436
+ "yuan character, in hong kong and taiwan": "simbol yuan \xeen Hong Kong \u0219i Taiwan",
437
+ "{0} characters": "{0} caractere",
438
+ "{0} columns, {1} rows": "{0} coloane, {1} r\xe2nduri",
439
+ "{0} words": "{0} cuvinte"
440
+ });