@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("nl-BE", {
2
+ "#": "",
3
+ "Accessibility": "Toegankelijkheid",
4
+ "Accordion": "",
5
+ "Accordion body...": "",
6
+ "Accordion summary...": "",
7
+ "Action": "Actie",
8
+ "Activity": "Activiteit",
9
+ "Address": "Adres",
10
+ "Advanced": "Geavanceerd",
11
+ "Align": "Aligneer",
12
+ "Align center": "Centreren",
13
+ "Align left": "Links uitlijnen",
14
+ "Align right": "Rechts uitlijnen",
15
+ "Alignment": "Uitlijning",
16
+ "Alignment {0}": "",
17
+ "All": "Alle",
18
+ "Alternative description": "Alternatieve beschrijving",
19
+ "Alternative source": "Alternatieve bron",
20
+ "Alternative source URL": "Alternatieve bron URL",
21
+ "Anchor": "Anker",
22
+ "Anchor...": "Anker...",
23
+ "Anchors": "Ankers",
24
+ "Animals and Nature": "Dieren en natuur",
25
+ "Arrows": "Pijlen",
26
+ "B": "",
27
+ "Background color": "Achtergrondkleur",
28
+ "Background color menu": "",
29
+ "Background color {0}": "",
30
+ "Black": "Zwart",
31
+ "Block": "Vierkant",
32
+ "Block {0}": "",
33
+ "Blockquote": "Citaat",
34
+ "Blocks": "Blokken",
35
+ "Blue": "Blauw",
36
+ "Blue channel": "",
37
+ "Body": "Hoofdtekst",
38
+ "Bold": "Vet",
39
+ "Border": "Rand",
40
+ "Border color": "Randkleur",
41
+ "Border style": "Randstijl",
42
+ "Border width": "Randbreedte",
43
+ "Bottom": "Onder",
44
+ "Browse files": "",
45
+ "Browse for an image": "Een afbeelding zoeken",
46
+ "Browse links": "",
47
+ "Build with {0}": "",
48
+ "Bullet list": "Ongeordende lijst",
49
+ "Cancel": "Annuleren",
50
+ "Caption": "Bijschrift",
51
+ "Cell": "Cel",
52
+ "Cell padding": "Celopvulling",
53
+ "Cell properties": "Celeigenschappen",
54
+ "Cell spacing": "Celafstand",
55
+ "Cell styles": "Cel stijlen",
56
+ "Cell type": "Celtype",
57
+ "Center": "Midden",
58
+ "Characters": "Karakters",
59
+ "Characters (no spaces)": "Karakters (zonder spaties)",
60
+ "Circle": "Cirkel",
61
+ "Class": "Class",
62
+ "Clear formatting": "Opmaak verwijderen",
63
+ "Close": "Sluiten",
64
+ "Code": "Broncode",
65
+ "Code sample...": "Codevoorbeeld...",
66
+ "Code view": "Codeweergave",
67
+ "Color Picker": "Kleurenkiezer",
68
+ "Color swatch": "Kleurenstaal",
69
+ "Cols": "Kolommen",
70
+ "Column": "Kolom",
71
+ "Column clipboard actions": "Rij klembord acties",
72
+ "Column group": "Kolomgroep",
73
+ "Column header": "Kolom kop",
74
+ "Constrain proportions": "Verhoudingen begrenzen",
75
+ "Copy": "Kopi\xebren",
76
+ "Copy column": "Kopieer kolom",
77
+ "Copy row": "Rij kopi\xebren",
78
+ "Could not find the specified string.": "Kon de gespecificeerde string niet vinden.",
79
+ "Could not load emojis": "Kan de emoji's niet laden",
80
+ "Count": "Tellen",
81
+ "Currency": "Valuta",
82
+ "Current window": "Huidig venster",
83
+ "Custom color": "Aangepaste kleur",
84
+ "Custom...": "Aangepast...",
85
+ "Cut": "Knippen",
86
+ "Cut column": "Knip kolom",
87
+ "Cut row": "Rij knippen",
88
+ "Dark Blue": "Donker Blauw",
89
+ "Dark Gray": "Donker Grijs",
90
+ "Dark Green": "Donker groen",
91
+ "Dark Orange": "Donker Oranje",
92
+ "Dark Purple": "Donker Paars",
93
+ "Dark Red": "Donker Rood",
94
+ "Dark Turquoise": "Donker turkoois",
95
+ "Dark Yellow": "Donker Geel",
96
+ "Dashed": "Onderbroken",
97
+ "Date/time": "Datum/tijd",
98
+ "Decrease indent": "Inspringing verkleinen",
99
+ "Default": "Standaard",
100
+ "Delete accordion": "",
101
+ "Delete column": "Kolom verwijderen",
102
+ "Delete row": "Rij verwijderen",
103
+ "Delete table": "Tabel verwijderen",
104
+ "Dimensions": "Afmetingen",
105
+ "Disc": "Schijf",
106
+ "Div": "",
107
+ "Document": "",
108
+ "Dotted": "Gestippeld",
109
+ "Double": "Dubbel",
110
+ "Drop an image here": "Plaats hier een afbeelding",
111
+ "Dropped file type is not supported": "Gesleepte bestandstype wordt niet ondersteund",
112
+ "Edit": "Bewerken",
113
+ "Editor's height: {0} pixels": "",
114
+ "Editor's height: {0} pixels, Editor's width: {1} pixels": "",
115
+ "Embed": "Insluiten",
116
+ "Emojis": "Emoji's",
117
+ "Emojis...": "Emoji's...",
118
+ "Error": "Fout",
119
+ "Error: Form submit field collision.": "Fout: Veldconflict bij versturen formulier.",
120
+ "Error: No form element found.": "Fout: Geen formulierelement gevonden.",
121
+ "Extended Latin": "Latijn uitgebreid",
122
+ "Failed to initialize plugin: {0}": "Plug-in initialiseren niet gelukt: {0}",
123
+ "Failed to load plugin url: {0}": "Plug-in URL laden niet gelukt: {0}",
124
+ "Failed to load plugin: {0} from url {1}": "Plug-in laden niet gelukt: {0} vanaf url {1}",
125
+ "Failed to upload image: {0}": "Afbeelding uploaden niet gelukt: {0}",
126
+ "File": "Bestand",
127
+ "Find": "Zoeken",
128
+ "Find (if searchreplace plugin activated)": "Zoeken (als zoeken/vervangen plug-in geactiveerd is)",
129
+ "Find and Replace": "Zoeken en Vervangen",
130
+ "Find and replace...": "Zoeken en vervangen...",
131
+ "Find in selection": "Zoeken in selectie",
132
+ "Find whole words only": "Enkel volledige woorden",
133
+ "Flags": "Vlaggen",
134
+ "Focus to contextual toolbar": "Focus naar contextuele werkbalk",
135
+ "Focus to element path": "Focus naar elementenpad",
136
+ "Focus to menubar": "Focus naar menubalk",
137
+ "Focus to notification": "",
138
+ "Focus to toolbar": "Focus naar werkbalk",
139
+ "Font": "Lettertype",
140
+ "Font size {0}": "",
141
+ "Font sizes": "Lettergroottes",
142
+ "Font {0}": "",
143
+ "Fonts": "Lettertypen",
144
+ "Food and Drink": "Voedsel en drank",
145
+ "Footer": "Voettekst",
146
+ "Format": "Formaat",
147
+ "Format {0}": "",
148
+ "Formats": "Formaten",
149
+ "Fullscreen": "Schermvullend",
150
+ "G": "",
151
+ "General": "Algemeen",
152
+ "Gray": "Grijs",
153
+ "Green": "Groen",
154
+ "Green channel": "",
155
+ "Groove": "Groef",
156
+ "Handy Shortcuts": "Handige snelkoppelingen",
157
+ "Header": "Koptekst",
158
+ "Header cell": "Koptekstcel",
159
+ "Heading 1": "Hoofding 1",
160
+ "Heading 2": "Hoofding 2",
161
+ "Heading 3": "Hoofding 3",
162
+ "Heading 4": "Hoofding 4",
163
+ "Heading 5": "Hoofding 5",
164
+ "Heading 6": "Hoofding 6",
165
+ "Headings": "Hoofdingen",
166
+ "Height": "Hoogte",
167
+ "Height:": "",
168
+ "Help": "",
169
+ "Hex color code": "Hex kleurcode",
170
+ "Hexadecimal only, 000000 to FFFFFF": "",
171
+ "Hidden": "Verborgen",
172
+ "Horizontal align": "Horizontaal uitlijnen",
173
+ "Horizontal line": "Horizontale lijn",
174
+ "Horizontal space": "Horizontale ruimte",
175
+ "ID": "",
176
+ "ID should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores.": "ID moet beginnen met een letter en daarna enkel gevolgd door letters, getallen, streepjes, punten, komma's of underscores.",
177
+ "Image is decorative": "Afbeelding is decoratief",
178
+ "Image list": "Afbeeldingenlijst",
179
+ "Image title": "Afbeeldingstitel",
180
+ "Image...": "Afbeelding...",
181
+ "ImageProxy HTTP error: Could not find Image Proxy": "ImageProxy HTTP fout: Kan geen Image Proxy vinden",
182
+ "ImageProxy HTTP error: Incorrect Image Proxy URL": "ImageProxy HTTP fout: Incorrecte Image proxy URL",
183
+ "ImageProxy HTTP error: Rejected request": "ImageProxy HTTP fout: Aanvraag afgewezen",
184
+ "ImageProxy HTTP error: Unknown ImageProxy error": "ImageProxy HTTP fout: Onbekende ImageProxy fout",
185
+ "Increase indent": "Inspringing vergroten",
186
+ "Inline": "In tekstregel",
187
+ "Insert": "Invoegen",
188
+ "Insert Template": "Sjabloon invoegen",
189
+ "Insert accordion": "",
190
+ "Insert column after": "Kolom invoegen na",
191
+ "Insert column before": "Kolom invoegen voor",
192
+ "Insert date/time": "Datum/tijd invoegen",
193
+ "Insert date/time menu": "",
194
+ "Insert image": "Afbeelding invoegen",
195
+ "Insert link (if link plugin activated)": "Link invoegen (als link plug-in geactiveerd is)",
196
+ "Insert row after": "Rij onder invoegen",
197
+ "Insert row before": "Rij boven invoegen",
198
+ "Insert table": "Tabel invoegen",
199
+ "Insert template...": "Sjabloon invoegen...",
200
+ "Insert video": "Video invoegen",
201
+ "Insert/Edit code sample": "Codevoorbeeld invoegen/bewerken",
202
+ "Insert/edit image": "Afbeelding invoegen/bewerken",
203
+ "Insert/edit link": "Link invoegen/bewerken",
204
+ "Insert/edit media": "Media invoegen/bewerken",
205
+ "Insert/edit video": "Video invoegen/bewerken",
206
+ "Inset": "Inzet",
207
+ "Invalid hex color code: {0}": "Onjuiste hex kleurcode: {0}",
208
+ "Invalid input": "Ongeldige invoer",
209
+ "Italic": "Cursief",
210
+ "Justify": "Distribueren",
211
+ "Keyboard Navigation": "Toetsenbord navigatie",
212
+ "Language": "Taal",
213
+ "Learn more...": "Leer meer...",
214
+ "Left": "Links",
215
+ "Left to right": "Links naar rechts",
216
+ "Light Blue": "Licht Blauw",
217
+ "Light Gray": "Lichtgrijs",
218
+ "Light Green": "Licht Groen",
219
+ "Light Purple": "Licht Paars",
220
+ "Light Red": "Licht Rood",
221
+ "Light Yellow": "Licht Geel",
222
+ "Line height": "Regelhoogte",
223
+ "Link": "",
224
+ "Link list": "Link lijst",
225
+ "Link...": "",
226
+ "List Properties": "Lijst Eigenschappen",
227
+ "List properties...": "Lijst eigenschappen...",
228
+ "Loading emojis...": "Emoji's laden...",
229
+ "Loading...": "Laden...",
230
+ "Lower Alpha": "Kleine letters",
231
+ "Lower Greek": "Klein Grieks schrift",
232
+ "Lower Roman": "Klein Latijns schrift",
233
+ "Match case": "Hoofdlettergevoelig",
234
+ "Mathematical": "Wiskundig",
235
+ "Media poster (Image URL)": "Mediaposter (Afbeelding URL)",
236
+ "Media...": "",
237
+ "Medium Blue": "Middelblauw",
238
+ "Medium Gray": "Middel Grijs",
239
+ "Medium Purple": "Middelpaars",
240
+ "Merge cells": "Cellen samenvoegen",
241
+ "Middle": "Midden",
242
+ "Midnight Blue": "Middernachtblauw",
243
+ "More...": "Meer...",
244
+ "Name": "Naam",
245
+ "Navy Blue": "Marineblauw",
246
+ "New document": "Nieuw document",
247
+ "New window": "Nieuw venster",
248
+ "Next": "Volgende",
249
+ "No": "Nee",
250
+ "No alignment": "Geen uitlijning",
251
+ "No color": "Geen kleur",
252
+ "Nonbreaking space": "Vaste spatie",
253
+ "None": "Geen",
254
+ "Numbered list": "Geordende lijst",
255
+ "Numbers only, 0 to 255": "",
256
+ "OR": "OF",
257
+ "Objects": "Voorwerpen",
258
+ "Ok": "OK",
259
+ "Open help dialog": "Helpdialoog openen",
260
+ "Open link": "Link openen",
261
+ "Open link in...": "Link openen in...",
262
+ "Open popup menu for split buttons": "Open pop-up menu voor gesplitste knoppen",
263
+ "Orange": "Oranje",
264
+ "Outset": "Uitzet",
265
+ "Page break": "Pagina-einde",
266
+ "Paragraph": "Paragraaf",
267
+ "Paste": "Plakken",
268
+ "Paste as text": "Plakken als tekst",
269
+ "Paste column after": "Plak kolom na",
270
+ "Paste column before": "Plak kolom voor",
271
+ "Paste is now in plain text mode. Contents will now be pasted as plain text until you toggle this option off.": "Plakken is nu in gewone tekst modus. Elementen zullen nu als gewone tekst geplakt worden tot u deze optie uit schakelt.",
272
+ "Paste or type a link": "Link plakken of typen",
273
+ "Paste row after": "Rij onder plakken",
274
+ "Paste row before": "Rij boven plakken",
275
+ "Paste your embed code below:": "Plak de in te sluiten code hieronder:",
276
+ "People": "Mensen",
277
+ "Plugins": "Plug-ins",
278
+ "Plugins installed ({0}):": "Ge\xefnstalleerde plugins ({0}):",
279
+ "Powered by {0}": "Aangedreven door {0}",
280
+ "Pre": "",
281
+ "Preferences": "Voorkeuren",
282
+ "Preformatted": "Gepreformateerd",
283
+ "Premium plugins:": "Premium plug-ins:",
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": "Voorbeeld",
288
+ "Previous": "Vorige",
289
+ "Print": "Afdrukken",
290
+ "Print...": "Afdrukken...",
291
+ "Purple": "Paars",
292
+ "Quotations": "Citaten",
293
+ "R": "",
294
+ "Range 0 to 255": "Bereik 0 tot 255",
295
+ "Red": "Rood",
296
+ "Red channel": "",
297
+ "Redo": "Opnieuw doen",
298
+ "Remove": "Verwijderen",
299
+ "Remove color": "Kleur verwijderen",
300
+ "Remove link": "Link verwijderen",
301
+ "Replace": "Vervangen",
302
+ "Replace all": "Alles vervangen",
303
+ "Replace with": "Vervangen door",
304
+ "Resize": "Herschalen",
305
+ "Restore last draft": "Laatste concept herstellen",
306
+ "Reveal or hide additional toolbar items": "",
307
+ "Rich Text Area": "Rich-text Gebied",
308
+ "Rich Text Area. Press ALT-0 for help.": "Rich Text Area. Druk op Alt-0 voor help.",
309
+ "Rich Text Area. Press ALT-F9 for menu. Press ALT-F10 for toolbar. Press ALT-0 for help": "Rich Text Area. Druk op Alt-F9 voor menu. Druk op Alt-F10 voor gereedschapsbalk. Druk op Alt-0 voor help",
310
+ "Ridge": "Ribbel",
311
+ "Right": "Rechts",
312
+ "Right to left": "Rechts naar links",
313
+ "Row": "Rij",
314
+ "Row clipboard actions": "Rij klembord acties",
315
+ "Row group": "Rijgroep",
316
+ "Row header": "Rij kop",
317
+ "Row properties": "Rijeigenschappen",
318
+ "Row type": "Rijtype",
319
+ "Rows": "Rijen",
320
+ "Save": "Opslaan",
321
+ "Save (if save plugin activated)": "Opslaan (als opslaan plug-in geactiveerd is)",
322
+ "Scope": "Bereik",
323
+ "Search": "Zoeken",
324
+ "Select all": "Alles selecteren",
325
+ "Select the {0} element": "",
326
+ "Select...": "Selecteren...",
327
+ "Selection": "Selectie",
328
+ "Shortcut": "Snelkoppeling",
329
+ "Show blocks": "Blokken tonen",
330
+ "Show caption": "Bijschrift tonen",
331
+ "Show invisible characters": "Onzichtbare tekens tonen",
332
+ "Size": "Grootte",
333
+ "Solid": "Ononderbroken",
334
+ "Source": "Bron",
335
+ "Source code": "Broncode",
336
+ "Special Character": "Speciale tekens",
337
+ "Special character...": "Speciaal karakter...",
338
+ "Split cell": "Cel splitsen",
339
+ "Square": "Vierkant",
340
+ "Start list at number": "Begin lijst bij nummer",
341
+ "Strikethrough": "Doorstreept",
342
+ "Style": "Stijl",
343
+ "Subscript": "",
344
+ "Superscript": "",
345
+ "Switch to or from fullscreen mode": "Schakelen naar of vanuit volledige schermmodus",
346
+ "Symbols": "Symbolen",
347
+ "System Font": "Systeemlettertype",
348
+ "Table": "Tabel",
349
+ "Table caption": "Tabel onderschrift",
350
+ "Table properties": "Tabeleigenschappen",
351
+ "Table styles": "Tabel stijlen",
352
+ "Template": "Sjabloon",
353
+ "Templates": "Sjablonen",
354
+ "Text": "Tekst",
355
+ "Text color": "Tekstkleur",
356
+ "Text color menu": "",
357
+ "Text color {0}": "",
358
+ "Text to display": "Weer te geven tekst",
359
+ "The URL you entered seems to be an email address. Do you want to add the required mailto: prefix?": "De ingevoerde URL lijkt op een e-mailadres. Wilt u er het vereiste voorvoegsel mailto: aan toevoegen?",
360
+ "The URL you entered seems to be an external link. Do you want to add the required http:// prefix?": "De ingevoerde URL lijkt op een externe link. Wilt u er het vereiste voorvoegsel http:// aan toevoegen?",
361
+ "The URL you entered seems to be an external link. Do you want to add the required https:// prefix?": "De ingevoerde URL lijkt op een externe link. Wilt u er het vereiste voorvoegsel https:// aan toevoegen?",
362
+ "Title": "Titel",
363
+ "To open the popup, press Shift+Enter": "Druk op Shift+Enter om de pop-up te openen",
364
+ "Toggle accordion": "",
365
+ "Tools": "Gereedschappen",
366
+ "Top": "Boven",
367
+ "Travel and Places": "Reizen en plaatsen",
368
+ "Turquoise": "Turkoois",
369
+ "Underline": "Onderlijnd",
370
+ "Undo": "Ongedaan maken",
371
+ "Upload": "Uploaden",
372
+ "Uploading image": "Afbeelding uploaden",
373
+ "Upper Alpha": "Hoofdletters",
374
+ "Upper Roman": "Hoofdletters Latijns",
375
+ "Url": "",
376
+ "Use arrow keys to navigate.": "",
377
+ "User Defined": "Gebruiker Gedefinieerd",
378
+ "Valid": "Geldig",
379
+ "Version": "Versie",
380
+ "Vertical align": "Verticaal uitlijnen",
381
+ "Vertical space": "Verticale ruimte",
382
+ "View": "Tonen",
383
+ "Visual aids": "Visuele hulpmiddelen",
384
+ "Warn": "Waarschuwen",
385
+ "White": "Wit",
386
+ "Width": "Breedte",
387
+ "Width:": "",
388
+ "Word count": "Aantal woorden",
389
+ "Words": "Woorden",
390
+ "Words: {0}": "Woorden: {0}",
391
+ "Yellow": "Geel",
392
+ "Yes": "Ja",
393
+ "You are using {0}": "U gebruikt {0}",
394
+ "You have unsaved changes are you sure you want to navigate away?": "U heeft niet opgeslagen wijzigingen bent u zeker dat u de pagina wilt verlaten?",
395
+ "Your browser doesn't support direct access to the clipboard. Please use the Ctrl+X/C/V keyboard shortcuts instead.": "Uw browser ondersteunt geen directe toegang tot het klembord. Gelieve de CTRL+X/C/V toetsen te gebruiken.",
396
+ "alignment": "uitlijning",
397
+ "austral sign": "austral teken",
398
+ "cedi sign": "cedi teken",
399
+ "colon sign": "colon teken",
400
+ "cruzeiro sign": "cruzeiro teken",
401
+ "currency sign": "valuta teken",
402
+ "dollar sign": "dollar teken",
403
+ "dong sign": "dong teken",
404
+ "drachma sign": "drachme teken",
405
+ "euro-currency sign": "euro valuta teken",
406
+ "example": "voorbeeld",
407
+ "formatting": "opmaak",
408
+ "french franc sign": "franse frank teken",
409
+ "german penny symbol": "duitse pfennig teken",
410
+ "guarani sign": "guarani teken",
411
+ "history": "geschiedenis",
412
+ "hryvnia sign": "hryvnia teken",
413
+ "indentation": "inspringing",
414
+ "indian rupee sign": "indische roepie teken",
415
+ "kip sign": "kip teken",
416
+ "lira sign": "lire teken",
417
+ "livre tournois sign": "tours pond teken",
418
+ "manat sign": "manat teken",
419
+ "mill sign": "mill teken",
420
+ "naira sign": "naira teken",
421
+ "new sheqel sign": "nieuwe shekel teken",
422
+ "nordic mark sign": "noordse mark teken",
423
+ "peseta sign": "peseta teken",
424
+ "peso sign": "peso teken",
425
+ "ruble sign": "roebel teken",
426
+ "rupee sign": "roepie teken",
427
+ "spesmilo sign": "spesmilo teken",
428
+ "styles": "stijlen",
429
+ "tenge sign": "tenge teken",
430
+ "tugrik sign": "tugrik teken",
431
+ "turkish lira sign": "turkse lira teken",
432
+ "won sign": "won teken",
433
+ "yen character": "yen karakter",
434
+ "yen/yuan character variant one": "yen/yuan karakter variant een",
435
+ "yuan character": "yuan karakter",
436
+ "yuan character, in hong kong and taiwan": "yuan karakter, in hong kong en taiwan",
437
+ "{0} characters": "{0} karakters",
438
+ "{0} columns, {1} rows": "",
439
+ "{0} words": "{0} woorden"
440
+ });