1 |
4
|
ryan
|
// I18N constants
|
2 |
|
|
|
3 |
|
|
// LANG: "nl", ENCODING: UTF-8 | ISO-8859-1
|
4 |
|
|
// Author: Michel Weegeerink (info@mmc-shop.nl), http://mmc-shop.nl
|
5 |
|
|
|
6 |
|
|
// FOR TRANSLATORS:
|
7 |
|
|
//
|
8 |
|
|
// 1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
|
9 |
|
|
// (at least a valid email address)
|
10 |
|
|
//
|
11 |
|
|
// 2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
|
12 |
|
|
// (if this is not possible, please include a comment
|
13 |
|
|
// that states what encoding is necessary.)
|
14 |
|
|
|
15 |
|
|
HTMLArea.I18N = {
|
16 |
|
|
|
17 |
|
|
// the following should be the filename without .js extension
|
18 |
|
|
// it will be used for automatically load plugin language.
|
19 |
|
|
lang: "nl",
|
20 |
|
|
|
21 |
|
|
tooltips: {
|
22 |
|
|
bold: "Vet",
|
23 |
|
|
italic: "Cursief",
|
24 |
|
|
underline: "Onderstrepen",
|
25 |
|
|
strikethrough: "Doorhalen",
|
26 |
|
|
subscript: "Subscript",
|
27 |
|
|
superscript: "Superscript",
|
28 |
|
|
justifyleft: "Links uitlijnen",
|
29 |
|
|
justifycenter: "Centreren",
|
30 |
|
|
justifyright: "Rechts uitlijnen",
|
31 |
|
|
justifyfull: "Uitvullen",
|
32 |
|
|
insertorderedlist: "Nummering",
|
33 |
|
|
insertunorderedlist: "Opsommingstekens",
|
34 |
|
|
outdent: "Inspringing verkleinen",
|
35 |
|
|
indent: "Inspringing vergroten",
|
36 |
|
|
forecolor: "Tekstkleur",
|
37 |
|
|
hilitecolor: "Achtergrondkleur",
|
38 |
|
|
inserthorizontalrule: "Horizontale lijn",
|
39 |
|
|
createlink: "Hyperlink invoegen/aanpassen",
|
40 |
|
|
insertimage: "Afbeelding invoegen/aanpassen",
|
41 |
|
|
inserttable: "Tabel invoegen",
|
42 |
|
|
htmlmode: "HTML broncode",
|
43 |
|
|
popupeditor: "Vergroot Editor",
|
44 |
|
|
about: "Over deze editor",
|
45 |
|
|
showhelp: "HTMLArea help",
|
46 |
|
|
textindicator: "Huidige stijl",
|
47 |
|
|
undo: "Ongedaan maken",
|
48 |
|
|
redo: "Herhalen",
|
49 |
|
|
cut: "Knippen",
|
50 |
|
|
copy: "Kopi?ren",
|
51 |
|
|
paste: "Plakken",
|
52 |
|
|
lefttoright: "Tekstrichting links naar rechts",
|
53 |
|
|
righttoleft: "Tekstrichting rechts naar links"
|
54 |
|
|
},
|
55 |
|
|
|
56 |
|
|
buttons: {
|
57 |
|
|
"ok": "OK",
|
58 |
|
|
"cancel": "Annuleren"
|
59 |
|
|
},
|
60 |
|
|
|
61 |
|
|
msg: {
|
62 |
|
|
"Path": "Pad",
|
63 |
|
|
"TEXT_MODE": "Je bent in TEKST-mode. Gebruik de [<>] knop om terug te keren naar WYSIWYG-mode.",
|
64 |
|
|
|
65 |
|
|
"IE-sucks-full-screen" :
|
66 |
|
|
// translate here
|
67 |
|
|
"Fullscreen-mode veroorzaakt problemen met Internet Explorer door bugs in de webbrowser " +
|
68 |
|
|
"die we niet kunnen omzeilen. Hierdoor kunnen de volgende effecten optreden: verknoeide teksten, " +
|
69 |
|
|
"een verlies aan editor-functionaliteit en/of willekeurig vastlopen van de webbrowser. " +
|
70 |
|
|
"Als u Windows 95 of 98 gebruikt, is het zeer waarschijnlijk dat u een algemene beschermingsfout " +
|
71 |
|
|
"('General Protection Fault') krijgt en de computer opnieuw zal moeten opstarten.\n\n" +
|
72 |
|
|
"U bent gewaarschuwd. Druk OK als u toch nog de Fullscreen-editor wil gebruiken."
|
73 |
|
|
},
|
74 |
|
|
|
75 |
|
|
dialogs: {
|
76 |
|
|
"Cancel" : "Annuleren",
|
77 |
|
|
"Insert/Modify Link" : "Hyperlink invoegen/aanpassen",
|
78 |
|
|
"New window (_blank)" : "Nieuw venster (_blank)",
|
79 |
|
|
"None (use implicit)" : "Geen",
|
80 |
|
|
"OK" : "OK",
|
81 |
|
|
"Other" : "Ander",
|
82 |
|
|
"Same frame (_self)" : "Zelfde frame (_self)",
|
83 |
|
|
"Target:" : "Doel:",
|
84 |
|
|
"Title (tooltip):" : "Titel (tooltip):",
|
85 |
|
|
"Top frame (_top)" : "Bovenste frame (_top)",
|
86 |
|
|
"URL:" : "URL:",
|
87 |
|
|
"You must enter the URL where this link points to" : "Geef de URL in waar de link naar verwijst"
|
88 |
|
|
}
|
89 |
|
|
};
|