htmlarea.js.php 3.3 KB

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