; ; Installer script ; ; ; $Id: installer.italian.nsh,v 1.2 2003/08/08 11:20:00 seb Exp $ ; ; Language file: Italian ; ; ; ; 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 Italian language file for the Windows installer for ; Phoenix using NSIS2. ; ; The Initial Developer of the Original Code is ; Michele Dal Corso . ; Portions created by the Initial Developer are Copyright (C) 2002 ; 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 IT_USED !define IT_USED ; ; Title of the windows ; !define CAPTION "Programma di installazione per ${MUI_PRODUCT}" ; ; Sections (names) ; !define NAME_SecCopy "!${MUI_PRODUCT} (richiesto)" !define NAME_SecAddShortcuts "Crea collegamenti" !define NAME_SecAddDesktopShortcut "Crea un collegamento sul desktop" !define NAME_SecAddStartShortcuts "Crea un collegamento nel menu Start" !define NAME_SecAddQuicklaunchShortcut "Crea un collegamento in Avvio veloce" ; ; Sections (descriptions) ; LangString DESC_SecCopy ${LANG_ENGLISH} "Installa ${MUI_PRODUCT}." LangString DESC_SecAddShortcuts ${LANG_ENGLISH} \ "Crea le icone per accedere rapidamente a ${MUI_PRODUCT}." LangString DESC_SecAddDesktopShortcut ${LANG_ENGLISH} \ "Crea un'icona per ${MUI_PRODUCT} sul desktop." LangString DESC_SecAddStartShortcuts ${LANG_ENGLISH} \ "Crea un'icona per ${MUI_PRODUCT} nel menu Start." LangString DESC_SecAddQuicklaunchShortcut ${LANG_ENGLISH} \ "Crea un collegamento per ${MUI_PRODUCT} nella barra di avvio veloce." ; ; Messageboxes ; LangString DESC_onInitEqual ${LANG_ENGLISH} "La versione di ${MUI_PRODUCT} \ installata nel computer è la stessa che si sta tentando di installare. \ Si è certi di voler continuare?" LangString DESC_onInitOlder ${LANG_ENGLISH} "Si sta tentando di installare \ una versione di ${MUI_PRODUCT} più vecchia di quella già installata nel \ computer. Si è certi di voler continuare?" LangString un.DESC_rmProfiles ${LANG_ENGLISH} "Si desidera rimuovere i \ propri profili?" ; ; Shortcut links ; !define DESC_DesktopShortcut "${MUI_PRODUCT}" !define DESC_StartDir "${MUI_PRODUCT}" !define DESC_StartUninst "Disinstalla ${MUI_PRODUCT}" !define DESC_StartProg "${MUI_PRODUCT}" !define DESC_Quicklaunch "${MUI_PRODUCT}" ; ; Web installer ; !define ERR_download "Impossibile scaricare i file." !define ERR_unzip "Impossibile decomprimere il file." !endif ; eof