; ; Installer script ; ; ; $Id: installer.dutch.nsh,v 1.2 2003/09/06 21:44:57 tsn Exp $ ; ; Language file: Nederlands ; ; ; ; Versie: MPL 1.1/GPL 2.0/LGPL 2.1 ; ; The contents of this file are subject to the Mozilla Public License Version ; 1.1 (the "License"); you may not use this file except in compliance with ; the License. You may obtain a copy of the License at ; http://www.mozilla.org/MPL/ ; ; Software distributed under the License is distributed on an "AS IS" basis, ; WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License ; for the specific language governing rights and limitations under the ; License. ; ; The Original Code is the English language file for the Windows installer for ; Phoenix using NSIS2. ; ; The Initial Developer of the Original Code is ; Sébastien Delahaye . ; Portions created by the Initial Developer are Copyright (C) 2002 ; the Initial Developer. All Rights Reserved. ; ; ; Alternatively, the contents of this file may be used under the terms of ; either of the GNU General Public License Version 2 or later (the "GPL"), ; or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), ; in which case the provisions of the GPL or the LGPL are applicable instead ; of those above. If you wish to allow use of your version of this file only ; under the terms of either the GPL or the LGPL, and not to allow others to ; use your version of this file under the terms of the MPL, indicate your ; decision by deleting the provisions above and replace them with the notice ; and other provisions required by the GPL or the LGPL. If you do not delete ; the provisions above, a recipient may use your version of this file under ; the terms of any one of the MPL, the GPL or the LGPL. ; !ifndef EN_USED !define EN_USED ; ; Title of the windows ; !define CAPTION "${MUI_PRODUCT} Installatie wizard" ; ; Sections (names) ; !define NAME_SecCopy "!${MUI_PRODUCT} (vereist)" !define NAME_SecAddShortcuts "Snelkoppelingen toevoegen" !define NAME_SecAddDesktopShortcut "Plaats een snelkoppeling op de desktop" !define NAME_SecAddStartShortcuts "Voeg een snelkoppeling toe aan het start menu" !define NAME_SecAddQuicklaunchShortcut "Voeg een snelkoppeling toe aan het snelstarten menu" ; ; Sections (descriptions) ; LangString DESC_SecCopy ${LANG_ENGLISH} "Installeer ${MUI_PRODUCT}." LangString DESC_SecAddShortcuts ${LANG_ENGLISH} \ "Voeg snelkoppelingen toe voor makkelijke toegang tot ${MUI_PRODUCT}." LangString DESC_SecAddDesktopShortcut ${LANG_ENGLISH} \ "Plaats een snelkoppeling naar ${MUI_PRODUCT} op uw desktop." LangString DESC_SecAddStartShortcuts ${LANG_ENGLISH} \ "Voeg snelkoppelingen voor ${MUI_PRODUCT} toe aan het start menu." LangString DESC_SecAddQuicklaunchShortcut ${LANG_ENGLISH} \ "Voeg een snelkoppeling voor ${MUI_PRODUCT} toe aan het snelstarten menu." ; ; Messageboxes ; LangString DESC_onInitEqual ${LANG_ENGLISH} "Deze versie van ${MUI_PRODUCT} \ is dezelfde als u nu probeert te installeren. \ Weet u zeker dat u wilt doorgaan?" LangString DESC_onInitOlder ${LANG_ENGLISH} "U probeert een versie te installeren \ van ${MUI_PRODUCT} die ouder is dan de versie die nu aanwezig is op uw computer. \ Weet u zeker dat u wilt doorgaan?" LangString un.DESC_rmProfiles ${LANG_ENGLISH} "Weet u zeker dat u uw profielen wilt verwijderen?" ; ; Shortcut links ; !define DESC_DesktopShortcut "${MUI_PRODUCT}" !define DESC_StartDir "${MUI_PRODUCT}" !define DESC_StartUninst "De-installeer ${MUI_PRODUCT}" !define DESC_StartProg "${MUI_PRODUCT}" !define DESC_Quicklaunch "${MUI_PRODUCT}" ; ; Web installer ; !define ERR_download "Het is niet gelukt om het bestand op te halen" !define ERR_unzip "Het is niet gelukt om het bestand uit te pakken" !endif ; eof