@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("is-IS", {
2
+ "#": "",
3
+ "Accessibility": "",
4
+ "Accordion": "",
5
+ "Accordion body...": "",
6
+ "Accordion summary...": "",
7
+ "Action": "A\xf0ger\xf0",
8
+ "Activity": "Virkni",
9
+ "Address": "",
10
+ "Advanced": "\xcdtarlegt",
11
+ "Align": "Stilla",
12
+ "Align center": "Mi\xf0jujafna",
13
+ "Align left": "Vinstrijafna",
14
+ "Align right": "H\xe6grijafna",
15
+ "Alignment": "J\xf6fnun",
16
+ "Alignment {0}": "",
17
+ "All": "Allt",
18
+ "Alternative description": "",
19
+ "Alternative source": "Valkv\xe6\xf0ur frumk\xf3\xf0i",
20
+ "Alternative source URL": "",
21
+ "Anchor": "",
22
+ "Anchor...": "",
23
+ "Anchors": "Akkeri",
24
+ "Animals and Nature": "D\xfdr og n\xe1tt\xfara",
25
+ "Arrows": "\xd6rvar",
26
+ "B": "",
27
+ "Background color": "Bakgrunnslitur",
28
+ "Background color menu": "",
29
+ "Background color {0}": "",
30
+ "Black": "Svartur",
31
+ "Block": "Blokka",
32
+ "Block {0}": "",
33
+ "Blockquote": "Blokk",
34
+ "Blocks": "Blokkir",
35
+ "Blue": "Bl\xe1r",
36
+ "Blue channel": "",
37
+ "Body": "Innihald",
38
+ "Bold": "Feitletra\xf0",
39
+ "Border": "Rammi",
40
+ "Border color": "Litur \xe1 ramma",
41
+ "Border style": "",
42
+ "Border width": "",
43
+ "Bottom": "Ne\xf0st",
44
+ "Browse files": "",
45
+ "Browse for an image": "Finna mynd \xed t\xf6lvunni",
46
+ "Browse links": "",
47
+ "Build with {0}": "",
48
+ "Bullet list": "K\xfalu listi",
49
+ "Cancel": "H\xe6tta vi\xf0",
50
+ "Caption": "Titill",
51
+ "Cell": "Reitur",
52
+ "Cell padding": "R\xfdmi reits",
53
+ "Cell properties": "Stillingar reits",
54
+ "Cell spacing": "Bil \xed reit",
55
+ "Cell styles": "",
56
+ "Cell type": "Tegund reits",
57
+ "Center": "Mi\xf0ja",
58
+ "Characters": "Stafabil",
59
+ "Characters (no spaces)": "Stafabil (engin bil)",
60
+ "Circle": "Hringur",
61
+ "Class": "Tegund",
62
+ "Clear formatting": "Hreinsa sni\xf0",
63
+ "Close": "Loka",
64
+ "Code": "K\xf3\xf0i",
65
+ "Code sample...": "K\xf3\xf0ad\xe6mi...",
66
+ "Code view": "",
67
+ "Color Picker": "Litaval",
68
+ "Color swatch": "Litaval",
69
+ "Cols": "D\xe1lkar",
70
+ "Column": "D\xe1lkur",
71
+ "Column clipboard actions": "",
72
+ "Column group": "H\xf3pur d\xe1lks",
73
+ "Column header": "",
74
+ "Constrain proportions": "Halda hlutf\xf6llum",
75
+ "Copy": "Afrita",
76
+ "Copy column": "",
77
+ "Copy row": "Afrita r\xf6\xf0",
78
+ "Could not find the specified string.": "Fann ekki umbe\xf0inn streng.",
79
+ "Could not load emojis": "",
80
+ "Count": "Fj\xf6ldi",
81
+ "Currency": "Gjaldmi\xf0ill",
82
+ "Current window": "N\xfaverandi gluggi",
83
+ "Custom color": "S\xe9rsni\xf0in litur",
84
+ "Custom...": "S\xe9rsni\xf0i\xf0...",
85
+ "Cut": "Skera",
86
+ "Cut column": "",
87
+ "Cut row": "Klippa r\xf6\xf0",
88
+ "Dark Blue": "D\xf6kkbl\xe1r",
89
+ "Dark Gray": "D\xf6kkgr\xe1r",
90
+ "Dark Green": "D\xf6kkgr\xe6nn",
91
+ "Dark Orange": "D\xf6kk appels\xednugulur",
92
+ "Dark Purple": "D\xf6kk fj\xf3lubl\xe1r",
93
+ "Dark Red": "D\xf6kkrau\xf0ur",
94
+ "Dark Turquoise": "D\xf6kk gr\xe6nbl\xe1r",
95
+ "Dark Yellow": "D\xf6kkgulur",
96
+ "Dashed": "",
97
+ "Date/time": "Dagur/t\xedmi",
98
+ "Decrease indent": "Minnka inndr\xe1tt",
99
+ "Default": "Sj\xe1lfgefi\xf0",
100
+ "Delete accordion": "",
101
+ "Delete column": "Ey\xf0a d\xe1lki",
102
+ "Delete row": "Ey\xf0a r\xf6\xf0",
103
+ "Delete table": "Ey\xf0a t\xf6flu",
104
+ "Dimensions": "Hlutf\xf6ll",
105
+ "Disc": "Diskur",
106
+ "Div": "",
107
+ "Document": "Skjal",
108
+ "Dotted": "",
109
+ "Double": "",
110
+ "Drop an image here": "Settu inn mynd h\xe9r",
111
+ "Dropped file type is not supported": "",
112
+ "Edit": "Breyta",
113
+ "Editor's height: {0} pixels": "",
114
+ "Editor's height: {0} pixels, Editor's width: {1} pixels": "",
115
+ "Embed": "Hengja vi\xf0",
116
+ "Emojis": "",
117
+ "Emojis...": "",
118
+ "Error": "Villa",
119
+ "Error: Form submit field collision.": "Villa: Form submit field collision.",
120
+ "Error: No form element found.": "Villa: Ekkert form element fannst.",
121
+ "Extended Latin": "",
122
+ "Failed to initialize plugin: {0}": "Val",
123
+ "Failed to load plugin url: {0}": "Gat ekki hla\xf0i\xf0 vi\xf0b\xf3t url: {0}",
124
+ "Failed to load plugin: {0} from url {1}": "Gat ekki hla\xf0i\xf0 vi\xf0b\xf3t: {0} fr\xe1 urli {1}",
125
+ "Failed to upload image: {0}": "Gat ekki hala\xf0 upp mynd: {0}",
126
+ "File": "Skjal",
127
+ "Find": "Finna",
128
+ "Find (if searchreplace plugin activated)": "Leita (ef searchreplace vi\xf0b\xf3t er virk)",
129
+ "Find and Replace": "",
130
+ "Find and replace...": "",
131
+ "Find in selection": "",
132
+ "Find whole words only": "Finna einungis heil or\xf0",
133
+ "Flags": "F\xe1nar",
134
+ "Focus to contextual toolbar": "F\xf3kus \xe1 contextual toolbar",
135
+ "Focus to element path": "F\xf3kus \xe1 element path",
136
+ "Focus to menubar": "F\xf3kus \xe1 menubar",
137
+ "Focus to notification": "",
138
+ "Focus to toolbar": "F\xf3kus \xe1 t\xe6kjastiku",
139
+ "Font": "Leturger\xf0",
140
+ "Font size {0}": "",
141
+ "Font sizes": "",
142
+ "Font {0}": "",
143
+ "Fonts": "Leturger\xf0ir",
144
+ "Food and Drink": "Matur og drykkur",
145
+ "Footer": "Ne\xf0anm\xe1l",
146
+ "Format": "Sni\xf0",
147
+ "Format {0}": "",
148
+ "Formats": "Sni\xf0m\xe1t",
149
+ "Fullscreen": "Fylla skj\xe1",
150
+ "G": "",
151
+ "General": "Almennt",
152
+ "Gray": "Gr\xe1r",
153
+ "Green": "Gr\xe6nn",
154
+ "Green channel": "",
155
+ "Groove": "",
156
+ "Handy Shortcuts": "Sni\xf0ugar fl\xfdtilei\xf0ir",
157
+ "Header": "Fyrirs\xf6gn",
158
+ "Header cell": "Reitarhaus",
159
+ "Heading 1": "Fyrirs\xf6gn 1",
160
+ "Heading 2": "Fyrirs\xf6gn 2",
161
+ "Heading 3": "Fyrirs\xf6gn 3",
162
+ "Heading 4": "Fyrirs\xf6gn 4",
163
+ "Heading 5": "Fyrirs\xf6gn 5",
164
+ "Heading 6": "Fyrirs\xf6gn 6",
165
+ "Headings": "Fyrirsagnir",
166
+ "Height": "H\xe6\xf0",
167
+ "Height:": "",
168
+ "Help": "Hj\xe1lp",
169
+ "Hex color code": "",
170
+ "Hexadecimal only, 000000 to FFFFFF": "",
171
+ "Hidden": "",
172
+ "Horizontal align": "",
173
+ "Horizontal line": "L\xe1r\xe9tt l\xedna",
174
+ "Horizontal space": "L\xe1r\xe9tt bil",
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": "Myndalisti",
179
+ "Image title": "Titill myndar",
180
+ "Image...": "Mynd...",
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": "Auka inndr\xe1tt",
186
+ "Inline": "Inndregi\xf0",
187
+ "Insert": "Setja inn",
188
+ "Insert Template": "",
189
+ "Insert accordion": "",
190
+ "Insert column after": "Setja inn d\xe1lk fyrir aftan",
191
+ "Insert column before": "Setja inn d\xe1lk fyrir framan",
192
+ "Insert date/time": "Setja inn dagsetningu/t\xedma",
193
+ "Insert date/time menu": "",
194
+ "Insert image": "Setja inn mynd",
195
+ "Insert link (if link plugin activated)": "Setja inn hlekk (ef link vi\xf0b\xf3t er virk)",
196
+ "Insert row after": "Setja inn r\xf6\xf0 fyrir aftan",
197
+ "Insert row before": "Setja inn r\xf6\xf0 fyrir framan",
198
+ "Insert table": "Setja inn t\xf6flu",
199
+ "Insert template...": "Setja inn sni\xf0m\xe1t...",
200
+ "Insert video": "Setja inn myndband",
201
+ "Insert/Edit code sample": "Setja inn/breyta k\xf3\xf0ad\xe6mi",
202
+ "Insert/edit image": "Setja inn/breyta mynd",
203
+ "Insert/edit link": "Setja inn/breyta hlekk",
204
+ "Insert/edit media": "Setja inn/breyta myndefni",
205
+ "Insert/edit video": "Setja inn/fjarl\xe6gja myndband",
206
+ "Inset": "",
207
+ "Invalid hex color code: {0}": "",
208
+ "Invalid input": "",
209
+ "Italic": "Skr\xe1letra\xf0",
210
+ "Justify": "Jafna",
211
+ "Keyboard Navigation": "Lyklabor\xf0 Navigation",
212
+ "Language": "Tungum\xe1l",
213
+ "Learn more...": "Sj\xe1 meira...",
214
+ "Left": "Vinstri",
215
+ "Left to right": "Vinstri til h\xe6gri",
216
+ "Light Blue": "Lj\xf3sbl\xe1r",
217
+ "Light Gray": "Lj\xf3sgr\xe1r",
218
+ "Light Green": "Lj\xf3sgr\xe6nn",
219
+ "Light Purple": "Lj\xf3s fj\xf3lubl\xe1r",
220
+ "Light Red": "Lj\xf3srau\xf0ur",
221
+ "Light Yellow": "Lj\xf3sgulur",
222
+ "Line height": "",
223
+ "Link": "",
224
+ "Link list": "Listi hlekkja",
225
+ "Link...": "Hlekkur...",
226
+ "List Properties": "",
227
+ "List properties...": "",
228
+ "Loading emojis...": "",
229
+ "Loading...": "",
230
+ "Lower Alpha": "L\xe1gstafir Alpha",
231
+ "Lower Greek": "L\xe1gstafir Gr\xedskir",
232
+ "Lower Roman": "L\xe1gstafir R\xf3mverskir",
233
+ "Match case": "Samanbur\xf0ur",
234
+ "Mathematical": "St\xe6r\xf0fr\xe6\xf0i",
235
+ "Media poster (Image URL)": "Media poster (mynd URL)",
236
+ "Media...": "",
237
+ "Medium Blue": "Mi\xf0lungs bl\xe1r",
238
+ "Medium Gray": "Mi\xf0lungs gr\xe1r",
239
+ "Medium Purple": "Mi\xf0lungs fj\xf3lubl\xe1r",
240
+ "Merge cells": "Sameina reiti",
241
+ "Middle": "Mi\xf0ja",
242
+ "Midnight Blue": "N\xe6turbl\xe1r",
243
+ "More...": "Meira...",
244
+ "Name": "Nafn",
245
+ "Navy Blue": "D\xf6kkbl\xe1r",
246
+ "New document": "N\xfdtt skjal",
247
+ "New window": "N\xfdr gluggi",
248
+ "Next": "N\xe6sti",
249
+ "No": "Nei",
250
+ "No alignment": "",
251
+ "No color": "Enginn litur",
252
+ "Nonbreaking space": "Bil sem brotnar ekki",
253
+ "None": "Ekkert",
254
+ "Numbered list": "N\xfamera\xf0ur listi",
255
+ "Numbers only, 0 to 255": "",
256
+ "OR": "E\xd0A",
257
+ "Objects": "Hlutir",
258
+ "Ok": "Sta\xf0festa",
259
+ "Open help dialog": "Opna hj\xe1lparkassa",
260
+ "Open link": "",
261
+ "Open link in...": "Opna hlekk \xed...",
262
+ "Open popup menu for split buttons": "",
263
+ "Orange": "Appels\xednugulur",
264
+ "Outset": "",
265
+ "Page break": "S\xed\xf0ubrot",
266
+ "Paragraph": "M\xe1lsgrein",
267
+ "Paste": "L\xedma",
268
+ "Paste as text": "L\xedma sem texta",
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.": "L\xedming er \xed textaham. Texti ver\xf0ur l\xedmdur sem l\xe1tlaus \xfeanga\xf0 til \xfe\xfa afhakar vi\xf0 \xfeennan valm\xf6guleika.",
272
+ "Paste or type a link": "L\xedma e\xf0a sl\xe1 inn hlekk",
273
+ "Paste row after": "L\xedma r\xf6\xf0 fyrir aftan",
274
+ "Paste row before": "L\xedma r\xf6\xf0 fyrir framan",
275
+ "Paste your embed code below:": "L\xedma frumk\xf3\xf0a fyrir ne\xf0an:",
276
+ "People": "F\xf3lk",
277
+ "Plugins": "Vi\xf0b\xe6tur",
278
+ "Plugins installed ({0}):": "Uppsettar vi\xf0b\xf3tir ({0}):",
279
+ "Powered by {0}": "Keyrt af {0}",
280
+ "Pre": "\xd3st\xedla\xf0",
281
+ "Preferences": "Stillingar",
282
+ "Preformatted": "",
283
+ "Premium plugins:": "Premium vi\xf0b\xe6tur:",
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": "Forsko\xf0un",
288
+ "Previous": "Fyrri",
289
+ "Print": "",
290
+ "Print...": "Prenta...",
291
+ "Purple": "Fj\xf3lubl\xe1r",
292
+ "Quotations": "Tilvitnanir",
293
+ "R": "",
294
+ "Range 0 to 255": "",
295
+ "Red": "Rau\xf0ur",
296
+ "Red channel": "",
297
+ "Redo": "Endurkalla",
298
+ "Remove": "",
299
+ "Remove color": "Fjarl\xe6gja lit",
300
+ "Remove link": "Fjarl\xe6gja hlekk",
301
+ "Replace": "Skipta \xfat",
302
+ "Replace all": "Skipta \xf6llum \xfat",
303
+ "Replace with": "Skipta \xfat me\xf0",
304
+ "Resize": "Breyta st\xe6r\xf0",
305
+ "Restore last draft": "Endurkalla s\xed\xf0asta uppkast",
306
+ "Reveal or hide additional toolbar items": "",
307
+ "Rich Text Area": "",
308
+ "Rich Text Area. Press ALT-0 for help.": "Rich Text sv\xe6\xf0i. Smelltu \xe1 Alt-0 fyrir hj\xe1lp",
309
+ "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Textasv\xe6\xf0i \xed \xedtarham. \xddttu \xe1 ALT-F9 fyrir valmynd. \xddttu \xe1 ALT-F10 fyrir t\xf3lastiku. \xddttu \xe1 ALT-0 fyrir a\xf0sto\xf0.",
310
+ "Ridge": "",
311
+ "Right": "H\xe6gri",
312
+ "Right to left": "H\xe6gri til vinstri",
313
+ "Row": "R\xf6\xf0",
314
+ "Row clipboard actions": "",
315
+ "Row group": "H\xf3pur ra\xf0ar",
316
+ "Row header": "",
317
+ "Row properties": "Stillingar ra\xf0ar",
318
+ "Row type": "Tegund ra\xf0ar",
319
+ "Rows": "Ra\xf0ir",
320
+ "Save": "Vista",
321
+ "Save (if save plugin activated)": "Vista (ef vistunar vi\xf0b\xf3t er virk)",
322
+ "Scope": "Gildissvi\xf0",
323
+ "Search": "Leita",
324
+ "Select all": "Velja allt",
325
+ "Select the {0} element": "",
326
+ "Select...": "Velja...",
327
+ "Selection": "Val",
328
+ "Shortcut": "Fl\xfdtilei\xf0",
329
+ "Show blocks": "S\xfdna kubba",
330
+ "Show caption": "S\xfdna myndatexta",
331
+ "Show invisible characters": "S\xfdna \xf3s\xfdnilega stafi",
332
+ "Size": "St\xe6r\xf0",
333
+ "Solid": "",
334
+ "Source": "Sl\xf3\xf0i",
335
+ "Source code": "Frumk\xf3\xf0i",
336
+ "Special Character": "",
337
+ "Special character...": "S\xe9rstakur stafur...",
338
+ "Split cell": "Deila reiti",
339
+ "Square": "Ferningur",
340
+ "Start list at number": "",
341
+ "Strikethrough": "Yfirstrika\xf0",
342
+ "Style": "St\xedll",
343
+ "Subscript": "Ni\xf0urskrifa\xf0",
344
+ "Superscript": "Uppskrift",
345
+ "Switch to or from fullscreen mode": "Skipta \xed e\xf0a \xfar fullum skj\xe1",
346
+ "Symbols": "T\xe1kn",
347
+ "System Font": "Kerfis leturger\xf0",
348
+ "Table": "Tafla",
349
+ "Table caption": "",
350
+ "Table properties": "Stillingar t\xf6flu",
351
+ "Table styles": "",
352
+ "Template": "Sni\xf0m\xe1t",
353
+ "Templates": "Sni\xf0m\xe1t",
354
+ "Text": "Texti",
355
+ "Text color": "Litur texta",
356
+ "Text color menu": "",
357
+ "Text color {0}": "",
358
+ "Text to display": "Texti til a\xf0 s\xfdna",
359
+ "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "Hlekkurinn sem \xfe\xfa rita\xf0ir inn l\xfdtur \xfat fyrir a\xf0 vera netfang. Viltu b\xe6ta vi\xf0 forskeytinu mailto: ?",
360
+ "The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "Hlekkurinn sem \xfe\xfa rita\xf0ir inn l\xfdtur \xfat fyrir a\xf0 vera ytri hlekkur. Viltu b\xe6ta vi\xf0 forskeytinu http:// ?",
361
+ "The URL you entered seems to be an external link. Do you want to add the required https:// prefix?": "",
362
+ "Title": "Titill",
363
+ "To open the popup, press Shift+Enter": "\xddttu \xe1 Shift+Enter til a\xf0 opna sprettiglugga",
364
+ "Toggle accordion": "",
365
+ "Tools": "T\xf3l",
366
+ "Top": "Efst",
367
+ "Travel and Places": "Fer\xf0al\xf6g og sta\xf0ir",
368
+ "Turquoise": "Gr\xe6nbl\xe1r",
369
+ "Underline": "Undirstrika\xf0",
370
+ "Undo": "Afturkalla",
371
+ "Upload": "Hla\xf0a upp",
372
+ "Uploading image": "",
373
+ "Upper Alpha": "H\xe1stafir Alpha",
374
+ "Upper Roman": "H\xe1stafir R\xf3mverskir",
375
+ "Url": "Veffang",
376
+ "Use arrow keys to navigate.": "",
377
+ "User Defined": "Stillt af notanda",
378
+ "Valid": "Gilt",
379
+ "Version": "\xdatg\xe1fa",
380
+ "Vertical align": "",
381
+ "Vertical space": "L\xf3\xf0r\xe9tt bil",
382
+ "View": "Sko\xf0a",
383
+ "Visual aids": "Sj\xf3nr\xe6n hj\xe1lp",
384
+ "Warn": "A\xf0vara",
385
+ "White": "Hv\xedtur",
386
+ "Width": "Breidd",
387
+ "Width:": "",
388
+ "Word count": "Or\xf0afj\xf6ldi",
389
+ "Words": "Or\xf0",
390
+ "Words: {0}": "Or\xf0: {0}",
391
+ "Yellow": "Gulur",
392
+ "Yes": "J\xe1",
393
+ "You are using {0}": "\xde\xfa ert a\xf0 nota {0}",
394
+ "You have unsaved changes are you sure you want to navigate away?": "\xdea\xf0 eru \xf3vista\xf0ar breytingar, ertu viss um a\xf0 \xfe\xfa viljir vafra \xed burtu?",
395
+ "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": "Vafrinn \xfeinn sty\xf0ur ekki beinann a\xf0gang a\xf0 klippibor\xf0inu. Nota\xf0u Ctrl-X/C/V \xe1 lyklabor\xf0inu \xed sta\xf0inn.",
396
+ "alignment": "textastilling",
397
+ "austral sign": "austral t\xe1kn",
398
+ "cedi sign": "cedi t\xe1kn",
399
+ "colon sign": "kommu t\xe1kn",
400
+ "cruzeiro sign": "cruzeiro t\xe1kn",
401
+ "currency sign": "gjaldmi\xf0ils t\xe1kn",
402
+ "dollar sign": "dollar t\xe1kn",
403
+ "dong sign": "dong t\xe1kn",
404
+ "drachma sign": "drachma t\xe1kn",
405
+ "euro-currency sign": "evru-gjaldmi\xf0ils t\xe1kn",
406
+ "example": "d\xe6mi",
407
+ "formatting": "",
408
+ "french franc sign": "franskur franki t\xe1kn",
409
+ "german penny symbol": "german penny t\xe1kn",
410
+ "guarani sign": "guarani t\xe1kn",
411
+ "history": "saga",
412
+ "hryvnia sign": "hryvnia t\xe1kn",
413
+ "indentation": "inndr\xe1ttur",
414
+ "indian rupee sign": "indverskt rupee t\xe1kn",
415
+ "kip sign": "kip t\xe1kn",
416
+ "lira sign": "lira t\xe1kn",
417
+ "livre tournois sign": "livre tournois t\xe1kn",
418
+ "manat sign": "manat t\xe1kn",
419
+ "mill sign": "mill t\xe1kn",
420
+ "naira sign": "naira t\xe1kn",
421
+ "new sheqel sign": "new sheqel t\xe1kn",
422
+ "nordic mark sign": "nordic mark t\xe1kn",
423
+ "peseta sign": "peseta t\xe1kn",
424
+ "peso sign": "peso t\xe1kn",
425
+ "ruble sign": "ruble t\xe1kn",
426
+ "rupee sign": "rupee t\xe1kn",
427
+ "spesmilo sign": "spesmilo t\xe1kn",
428
+ "styles": "st\xedlar",
429
+ "tenge sign": "tenge t\xe1kn",
430
+ "tugrik sign": "tugrik t\xe1kn",
431
+ "turkish lira sign": "tyrknesk l\xedra t\xe1kn",
432
+ "won sign": "won t\xe1kn",
433
+ "yen character": "yen stafur",
434
+ "yen/yuan character variant one": "yen/yuan t\xe1kn afbrig\xf0i eitt",
435
+ "yuan character": "yuan stafur",
436
+ "yuan character, in hong kong and taiwan": "yuan stafur, \xed Hong Kong og Ta\xedvan",
437
+ "{0} characters": "{0} stafabil",
438
+ "{0} columns, {1} rows": "",
439
+ "{0} words": "{0} or\xf0"
440
+ });