2002-11-01 20:45:53 +00:00
;NSIS Modern User Interface - Language File
;version 2 - Compatible with Modern UI 1.4
2002-10-07 19:58:15 +00:00
;Language: English (1033)
;By Joost Verburg
;--------------------------------
2002-10-27 11:56:12 +00:00
!verbose 3
2002-10-07 19:58:15 +00:00
!ifndef MUI_ENGLISH_USED
!define MUI_ENGLISH_USED
2002-11-04 11:19:21 +00:00
LoadLanguageFile " ${NSISDIR} \Contrib\Language files\English.nlf "
2002-10-11 17:41:04 +00:00
!define MUI_ENGLISH_LANGNAME " English " ;Name of the language in the language itself (English, Deutsch, Fran<61> ais etc.)
2002-10-07 19:58:15 +00:00
;INSTALLER
2002-11-04 11:19:21 +00:00
Name /LANG = ${LANG_ENGLISH} " ${MUI_NAME} "
2002-10-07 19:58:15 +00:00
2002-10-08 09:29:03 +00:00
!ifdef MUI_LICENSEPAGE
2002-10-07 19:58:15 +00:00
LicenseText /LANG = ${LANG_ENGLISH} " Press Page Down to see the rest of the agreement. "
2002-10-13 18:25:07 +00:00
LangString MUI_TEXT_LICENSE_TITLE ${LANG_ENGLISH} " License Agreement "
2002-11-04 11:19:21 +00:00
LangString MUI_TEXT_LICENSE_SUBTITLE ${LANG_ENGLISH} " Please review the license terms before installing ${MUI_PRODUCT}. "
LangString MUI_INNERTEXT_LICENSE ${LANG_ENGLISH} " If you accept all the terms of the agreement, choose I Agree to continue. You must accept the agreement to install ${MUI_PRODUCT}. "
2002-10-08 09:29:03 +00:00
!endif
2002-10-07 19:58:15 +00:00
2002-11-01 20:45:53 +00:00
!ifdef MUI_COMPONENTSPAGE
2002-10-10 20:31:24 +00:00
ComponentText /LANG = ${LANG_ENGLISH} " Check the components you want to install and uncheck the components you don't want to install. Click Next to continue. "
2002-10-13 18:25:07 +00:00
LangString MUI_TEXT_COMPONENTS_TITLE ${LANG_ENGLISH} " Choose Components "
2002-11-04 11:19:21 +00:00
LangString MUI_TEXT_COMPONENTS_SUBTITLE ${LANG_ENGLISH} " Choose which features of ${MUI_PRODUCT} you want to install. "
2002-10-13 18:25:07 +00:00
LangString MUI_INNERTEXT_DESCRIPTION_TITLE ${LANG_ENGLISH} " Description "
LangString MUI_INNERTEXT_DESCRIPTION_INFO ${LANG_ENGLISH} " Hover your mouse over a component to see it's description. "
2002-10-08 09:29:03 +00:00
!endif
2002-10-07 19:58:15 +00:00
2002-11-01 20:45:53 +00:00
!ifdef MUI_DIRECTORYPAGE
2002-11-04 11:19:21 +00:00
DirText /LANG = ${LANG_ENGLISH} " Setup will install ${MUI_PRODUCT} in the following folder.$\r$\n$\r$\nTo install in this folder, click Install. To install in a different folder, click Browse and select another folder. "
2002-10-13 18:25:07 +00:00
LangString MUI_TEXT_DIRSELECT_TITLE ${LANG_ENGLISH} " Choose Install Location "
2002-11-04 11:19:21 +00:00
LangString MUI_TEXT_DIRSELECT_SUBTITLE ${LANG_ENGLISH} " Choose the folder in which to install ${MUI_PRODUCT}. "
2002-10-13 18:25:07 +00:00
LangString MUI_INNERTEXT_DESTINATIONFOLDER ${LANG_ENGLISH} " Destination Folder "
2002-10-08 09:29:03 +00:00
!endif
2002-10-07 19:58:15 +00:00
LangString MUI_TEXT_INSTALLING_TITLE ${LANG_ENGLISH} " Installing "
2002-11-04 11:19:21 +00:00
LangString MUI_TEXT_INSTALLING_SUBTITLE ${LANG_ENGLISH} " Please wait while ${MUI_PRODUCT} is being installed. "
2002-10-07 19:58:15 +00:00
LangString MUI_TEXT_FINISHED_TITLE ${LANG_ENGLISH} " Finished "
LangString MUI_TEXT_FINISHED_SUBTITLE ${LANG_ENGLISH} " Setup was completed successfully. "
2002-10-13 18:28:38 +00:00
!ifdef MUI_ABORTWARNING
2002-11-04 11:19:21 +00:00
LangString MUI_TEXT_ABORTWARNING ${LANG_ENGLISH} " Are you sure you want to quit ${MUI_PRODUCT} Setup? "
2002-10-13 18:28:38 +00:00
!endif
2002-10-13 18:25:07 +00:00
!ifdef MUI_INSTALLOPTIONS
2002-11-04 11:19:21 +00:00
LangString MUI_TEXT_SETUPCAPTION ${LANG_ENGLISH} " ${MUI_NAME} Setup "
2002-10-13 18:25:07 +00:00
!endif
2002-11-01 20:45:53 +00:00
2002-10-07 19:58:15 +00:00
;UNINSTALLER
2002-10-08 09:29:03 +00:00
!ifdef MUI_UNINSTALLER
2002-11-04 11:19:21 +00:00
UninstallText /LANG = ${LANG_ENGLISH} " This will uninstall ${MUI_PRODUCT} from your system. "
LangString un.MUI_UNTEXT_INTRO_TITLE ${LANG_ENGLISH} " Uninstall ${MUI_PRODUCT} "
LangString un.MUI_UNTEXT_INTRO_SUBTITLE ${LANG_ENGLISH} " Remove ${MUI_PRODUCT} from your system. "
2002-10-13 18:25:07 +00:00
LangString un.MUI_UNTEXT_UNINSTALLING_TITLE ${LANG_ENGLISH} " Uninstalling "
2002-11-04 11:19:21 +00:00
LangString un.MUI_UNTEXT_UNINSTALLING_SUBTITLE ${LANG_ENGLISH} " Please wait while ${MUI_PRODUCT} is being uninstalled. "
2002-10-13 18:25:07 +00:00
LangString un.MUI_UNTEXT_FINISHED_TITLE ${LANG_ENGLISH} " Finished "
LangString un.MUI_UNTEXT_FINISHED_SUBTITLE ${LANG_ENGLISH} " Uninstall was completed successfully. "
2002-10-08 09:29:03 +00:00
!endif
2002-10-07 19:58:15 +00:00
2002-11-01 20:45:53 +00:00
!ifdef MUI_UNINSTALLOPTIONS
2002-11-06 12:13:20 +00:00
LangString un.MUI_UNTEXT_SETUPCAPTION ${LANG_ENGLISH} " ${MUI_NAME} Uninstall "
2002-10-08 09:29:03 +00:00
!endif
2002-10-07 19:58:15 +00:00
2002-10-27 11:56:12 +00:00
!endif
!verbose 4