forked from campg2j003/jfw_nsh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJFW_lang_enu.nsh
115 lines (81 loc) · 6.97 KB
/
JFW_lang_enu.nsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
English User-visible messages for JFW.nsh (v2.7 updated 2018-05-27)
This file last updated 2018-05-27.
Does not include debug messages or messages printed to log file/log window.
*/
;Do not translate text inside ${...}. These will be replaced with their values. Also true for things like $variablename, $0, or $R1. (To cause a $ to appear in text, it is doubled, like $$R0 will appear as $0.)
!ifndef JFW_ENU_INCLUDED
!define JFW_ENU_INCLUDED
; JAWS abbreviation for the language this file supports. This can be used to identify the selected installer language.
LangString JawsInstallerLanguage ${LANG_ENGLISH} "enu"
;Used by __CompileSingle. $R1=script file name without extension, $1=exit code (number), $R2=text output by program.
LangString CouldNotCompile ${LANG_ENGLISH} "Could not compile $R1.jss, SCompile returned $1$\r$\n$$OutDir=$OutDir, Output:$\r$\n$R2."
LangString CouldNotFindCompiler ${LANG_ENGLISH} "Could not find JAWS script compiler $R0. You will need to compile it with JAWS Script Manager to use it."
;Used by runJAWSUtil which is called by __CompileSingle_bx. $1=JAWSUtil command (e.g. compile myscript.jss), $0=JAWS Version/lang (e.g. 2018/enu).
LangString JAWSUtilCommandFailed ${LANG_ENGLISH} "$1 for JAWS $0 failed.$\n\
Skipping this JAWS folder."
;Used by runJAWSUtil which is called by __CompileSingle_bx. $1=JAWSUtil command (e.g. compile myscript.jss), $0=JAWS Version/lang (e.g. 2018/enu), $R9 is error code.
LangString JAWSUtilCommandFailedWithError ${LANG_ENGLISH} "$1 for JAWS $0 failed with error code $R9.$\n\
Skipping this JAWS folder."
LangString NoVersionSelected ${LANG_ENGLISH} "No versions selected."
LangString InstallFolderExists ${LANG_ENGLISH} "The specified folder exists, which most likely means that ${ScriptName} is already installed. If you want to install over the current installation choose Yes."
LangString InstDirNotFolder ${LANG_ENGLISH} "$INSTDIR exists and it is not a folder!"
LangString InstConfirmHdr ${LANG_ENGLISH} "Confirm Installation Settings"
LangString InstConfirmText ${LANG_ENGLISH} "The following summarizes the actions that will be performed by this install. Click Back to change settings. Click Install (Alt+i) to continue."
LangString InstConfirmCurrentUser ${LANG_ENGLISH} "the current user"
LangString InstConfirmAllUsers ${LANG_ENGLISH} "all users"
;$2=$(InstConfirmCurrentUser or $(InstConfirmAllUsers followed by a space, $1=comma-separated list of versions.
LangString InstConfirmVersions ${LANG_ENGLISH} "The scripts will be installed for $2in the following JAWS versions:$\r$\n$1.$\r$\n"
;$0=previous text, should not be followed by space. $1=list of versions.
LangString InstConfirmHaveFiles ${LANG_ENGLISH} "$0The following JAWS versions contain files for this application (files that match ${ScriptApp}.*): $1$\r$\nThese files may be overwritten during installation.$\r$\n"
LangString InstConfirmUninstAddRemovePrograms ${LANG_ENGLISH} "$0Installation folder: $INSTDIR.$\r$\nThis installation should be uninstalled via Add/Remove Programs.$\r$\n"
;$0=previous text.
LangString InstConfirmExistingInstall ${LANG_ENGLISH} "$0There is an existing installation of ${ScriptName} on this machine.$\r$\n"
LangString InstConfirmInstallerSrc ${LANG_ENGLISH} "$0The installer source will be installed in $INSTDIR\${JAWSINSTALLERSRC}."
LangString InstConfirmNotInstalled ${LANG_ENGLISH} "$0This installation cannot be uninstalled via Add/Remove Programs."
LangString OverwriteScriptsQuery ${LANG_ENGLISH} "There are scripts for ${ScriptName} in $2. Do you want to overwrite them?"
LangString JawsNotInstalled ${LANG_ENGLISH} "Setup cannot start because the Jaws program is not installed on your system."
LangString CantFindJawsProgDir ${LANG_ENGLISH} "Couldn't find the folder $0 in either $programfiles or $programfiles64. The install can continue, but you might have to compile the scripts yourself."
LangString BrandingText ${LANG_ENGLISH} "${ScriptName}"
LangString SuccessfullyRemoved ${LANG_ENGLISH} "${ScriptName} has been successfully removed from your computer."
LangString InstallFolderNotRemoved ${LANG_ENGLISH} "Warning: the install folder $INSTDIR was not removed. It probably contains undeleted files."
LangString SureYouWantToUninstall ${LANG_ENGLISH} "Are you sure you want to completely remove $(^Name) and all of its components?"
LangString UninstallUnsuccessful ${LANG_ENGLISH} "The uninstall was unsuccessful, exit code $1. Choose OK to install anyway, Cancel to quit."
LangString AlreadyInstalled ${LANG_ENGLISH} "${ScriptName} is already installed on this computer. It is strongly recommended that you uninstall it before continuing. Do you wish to uninstall?"
;e.g. V2.0 ...
LangString VersionMsg ${LANG_ENGLISH} "V${VERSION}"
;Messages in the Install Type combo box.
LangString InstTypeFull ${LANG_ENGLISH} "Full"
LangString InstTypeJustScripts ${LANG_ENGLISH} "Just Script"
;Text at the top of the Components page.
LangString InstTypeFullMsg ${LANG_ENGLISH} "Full allows you to uninstall using Add or Remove Programs. $\n\
Just Scripts installs scripts and README, can't be uninstalled from Add or Remove Programs."
;Name of the Installer Sourse section (the Install Source custom component)
LangString SecInstallerSource ${LANG_ENGLISH} "Installer Source"
LangString WelcomePageTitle ${LANG_ENGLISH} "Setup for ${ScriptName}"
!if VERSION != ""
!define _VERSIONMSG " $(VersionMsg)"
!else
!define _VERSIONMSG ""
!endif
LangString WelcomeTextCopyright ${LANG_ENGLISH} "Welcome to the installation for ${ScriptName}${_VERSIONMSG}.$\n\
This wizard will guide you through the installation of ${ScriptName}.$\n\
${LegalCopyright}$\n"
LangString WelcomeTextNoCopyright ${LANG_ENGLISH} "Welcome to the installation for ${ScriptName}${_VERSIONMSG}.$\n\
This wizard will guide you through the installation of ${ScriptName}.$\n"
!undef _VERSIONMSG
;list view
;Text at the top of the Select JAWS Versions/Languages dialog.
LangString SelectJawsVersions ${LANG_ENGLISH} "Select JAWS versions/languages to which to install scripts:"
;JAWS versions/languages list view caption
LangString LVLangVersionCaption ${LANG_ENGLISH} "JAWS Versions/Languagess"
;Install for All/Current user group box ($JAWSGB)
LangString GBInstallForCaption ${LANG_ENGLISH} "Install for"
LangString RBCurrentUser ${LANG_ENGLISH} "&Current user" ;$JAWSRB1
LangString RBAllUsers ${LANG_ENGLISH} "&All users" ;$JAWSRB2
LangString DirPageText ${LANG_ENGLISH} "Choose the folder in which to store ${ScriptName}'s installation files, such as uninstaller, help or other files. $\n\
Setup will store ${ScriptName}'s installation in the following folder. To install in a different folder, click Browse and select another folder."
LangString ViewReadmeFile ${LANG_ENGLISH} "View README file"
LangString ViewLogFile ${LANG_ENGLISH} "View log file"
LangString JAWSFinishFailedCompiles ${LANG_ENGLISH} "One or more JAWS script compiles failed, see installer log for details."
!EndIf ;JFW_ENU_INCLUDED