Diff for /loncom/html/htmlarea/lang/Attic/nl.js between versions 1.1 and 1.2

version 1.1, 2004/02/18 08:07:15 version 1.2, 2004/06/01 23:46:10
Line 1 Line 1
 // Dutch version  // I18N constants
 // Author: Wouter Meeus alias Redspider <webmaster@tielt.be>  
   // LANG: "nl", ENCODING: UTF-8 | ISO-8859-1
 HTMLArea.I18N = {  // Author: Michel Weegeerink (info@mmc-shop.nl), http://mmc-shop.nl
   
  // the following should be the filename without .js extension  // FOR TRANSLATORS:
  // it will be used for automatically load plugin language.  //
  lang: "nl",  //   1. PLEASE PUT YOUR CONTACT INFO IN THE ABOVE LINE
   //      (at least a valid email address)
  tooltips: {  //
  bold:           "Vet",  //   2. PLEASE TRY TO USE UTF-8 FOR ENCODING;
  italic:         "Cursief",  //      (if this is not possible, please include a comment
  underline:      "Onderlijnen",  //       that states what encoding is necessary.)
  strikethrough:  "Doorstrepen",  
  subscript:      "Subscript",  HTMLArea.I18N = {
  superscript:    "Superscript",  
  justifyleft:    "Links Uitlijnen",   // the following should be the filename without .js extension
  justifycenter:  "Centreren",   // it will be used for automatically load plugin language.
  justifyright:   "Rechts Uitlijnen",   lang: "nl",
  justifyfull:    "Uitvullen",  
  orderedlist:    "Nummering",   tooltips: {
  unorderedlist:  "Opsomming",   bold: "Vet",
  outdent:        "Verklein insprong",   italic: "Cursief",
  indent:         "Vergroot insprong",   underline: "Onderstrepen",
  forecolor:      "Tekst Kleur",   strikethrough: "Doorhalen",
  backcolor:      "Achtergrond Kleur",   subscript: "Subscript",
  horizontalrule: "Horizontale lijn",   superscript: "Superscript",
  createlink:     "Hyperlink invoegen",   justifyleft: "Links uitlijnen",
  insertimage:    "Afbeelding invoegen",   justifycenter: "Centreren",
  inserttable:    "Tabel invoegen",   justifyright: "Rechts uitlijnen",
  htmlmode:       "HTML broncode",   justifyfull: "Uitvullen",
  popupeditor:    "Vergroot Editor",   insertorderedlist: "Nummering",
  about:          "Over deze editor",   insertunorderedlist: "Opsommingstekens",
  help:           "Help",   outdent: "Inspringing verkleinen",
  textindicator:  "Huidige stijl"   indent: "Inspringing vergroten",
  }   forecolor: "Tekstkleur",
 };   hilitecolor: "Achtergrondkleur",
    inserthorizontalrule: "Horizontale lijn",
    createlink: "Hyperlink invoegen/aanpassen",
    insertimage: "Afbeelding invoegen/aanpassen",
    inserttable: "Tabel invoegen",
    htmlmode: "HTML broncode",
    popupeditor: "Vergroot Editor",
    about: "Over deze editor",
    showhelp: "HTMLArea help",
    textindicator: "Huidige stijl",
    undo: "Ongedaan maken",
    redo: "Herhalen",
    cut: "Knippen",
    copy: "Kopiëren",
    paste: "Plakken",
    lefttoright: "Tekstrichting links naar rechts",
    righttoleft: "Tekstrichting rechts naar links"
    },
   
    buttons: {
    "ok": "OK",
    "cancel": "Annuleren"
    },
   
    msg: {
    "Path": "Pad",
    "TEXT_MODE": "Je bent in TEKST-mode. Gebruik de [<>] knop om terug te keren naar WYSIWYG-mode.",
        
    "IE-sucks-full-screen" :
    // translate here
    "Fullscreen-mode veroorzaakt problemen met Internet Explorer door bugs in de webbrowser " +
    "die we niet kunnen omzeilen. Hierdoor kunnen de volgende effecten optreden: verknoeide teksten, " +
    "een verlies aan editor-functionaliteit en/of willekeurig vastlopen van de webbrowser. " +
    "Als u Windows 95 of 98 gebruikt, is het zeer waarschijnlijk dat u een algemene beschermingsfout " +
    "('General Protection Fault') krijgt en de computer opnieuw zal moeten opstarten.\n\n" +
    "U bent gewaarschuwd. Druk OK als u toch nog de Fullscreen-editor wil gebruiken."
    },
   
    dialogs: {
    "Cancel"                                            : "Annuleren",
    "Insert/Modify Link"                                : "Hyperlink invoegen/aanpassen",
    "New window (_blank)"                               : "Nieuw venster (_blank)",
    "None (use implicit)"                               : "Geen",
    "OK"                                                : "OK",
    "Other"                                             : "Ander",
    "Same frame (_self)"                                : "Zelfde frame (_self)",
    "Target:"                                           : "Doel:",
    "Title (tooltip):"                                  : "Titel (tooltip):",
    "Top frame (_top)"                                  : "Bovenste frame (_top)",
    "URL:"                                              : "URL:",
    "You must enter the URL where this link points to"  : "Geef de URL in waar de link naar verwijst"
    }
   };
   

Removed from v.1.1  
changed lines
  Added in v.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>