; ; Installer script ; ; ; $Id: installer.german.nsh,v 1.2 2003/08/21 16:29:28 tsn Exp $ ; ; Language file: German ; ; ; ; Version: 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 German language file of the Windows installer for ; Phoenix using NSIS2. ; ; The Initial Developer of the Original Code is ; Abdulkadir Topal . ; Portions created by the Initial Developer are Copyright (C) 2003 ; the Initial Developer. All Rights Reserved. ; ; Contributors: ; Sébastien Delahaye ; ; 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 DE_USED !define DE_USED ; ; Title of the windows ; !define CAPTION "${MUI_PRODUCT} Installations-Assistent" ; ; Sections (names) ; !define NAME_SecCopy "!${MUI_PRODUCT} (benötigt)" !define NAME_SecAddShortcuts "Verknüpfungen erstellen" !define NAME_SecAddDesktopShortcut "Desktop-Verknüpfung erstellen" !define NAME_SecAddStartShortcuts "Startmenü-Verknüpfung erstellen" !define NAME_SecAddQuicklaunchShortcut "Schnellstartleisten-Verknüpfung erstellen" ; ; Sections (descriptions) ; LangString DESC_SecCopy ${LANG_GERMAN} "${MUI_PRODUCT} installieren." LangString DESC_SecAddShortcuts ${LANG_GERMAN} \ "Verknüpfungen erleichtern Ihnen den Zugriff auf ${MUI_PRODUCT}." LangString DESC_SecAddDesktopShortcut ${LANG_GERMAN} \ "Erstellt eine Verknüpfung zu ${MUI_PRODUCT}, auf Ihrem Desktop." LangString DESC_SecAddStartShortcuts ${LANG_GERMAN} \ "Erstellt Verknüpfungen zu ${MUI_PRODUCT}, in Ihrem Startmenü." LangString DESC_SecAddQuicklaunchShortcut ${LANG_GERMAN} \ "Erstellt eine Verknüpfung zu ${MUI_PRODUCT}, in Ihrer Schnellstartleiste." ; ; Messageboxes ; LangString DESC_onInitEqual ${LANG_GERMAN} "Ihre bereits installierte \ ${MUI_PRODUCT}-Version ist die selbe, die sie jetzt \ installieren möchten. Sind Sie sicher, dass Sie fortfahren wollen?" LangString DESC_onInitOlder ${LANG_GERMAN} "Ihre bereits installierte \ ${MUI_PRODUCT}-Version ist aktueller als diejenige, die sie jetzt \ installieren möchten. Sind Sie sicher, dass Sie fortfahren wollen?" LangString un.DESC_rmProfiles ${LANG_GERMAN} "Möchten Sie, dass Ihre \ Profile gelöscht werden? Beachten Sie bitte, dass dabei auch Ihre \ Lesezeichen und persönlichen Einstellungen gelöscht werden." ; ; Shortcut links ; !define DESC_DesktopShortcut "${MUI_PRODUCT}" !define DESC_StartDir "${MUI_PRODUCT}" !define DESC_StartUninst "${MUI_PRODUCT} entfernen" !define DESC_StartProg "${MUI_PRODUCT}" !define DESC_Quicklaunch "${MUI_PRODUCT}" ; ; Web installer ; !define ERR_download "Die Datei konnte nicht heruntergeladen werden." !define ERR_unzip "Die Datei konnte nicht entpackt werden." !endif ; eof