aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/installers/windows/installer_template.nsi
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:42 -0500
committerJacek Antonelli2008-08-15 23:45:42 -0500
commitce28e056c20bf2723f565bbf464b87781ec248a2 (patch)
treeef7b0501c4de4b631a916305cbc2a5fdc125e52d /linden/indra/newview/installers/windows/installer_template.nsi
parentSecond Life viewer sources 1.19.1.4b (diff)
downloadmeta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.zip
meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.gz
meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.bz2
meta-impy-ce28e056c20bf2723f565bbf464b87781ec248a2.tar.xz
Second Life viewer sources 1.20.2
Diffstat (limited to 'linden/indra/newview/installers/windows/installer_template.nsi')
-rw-r--r--linden/indra/newview/installers/windows/installer_template.nsi16
1 files changed, 4 insertions, 12 deletions
diff --git a/linden/indra/newview/installers/windows/installer_template.nsi b/linden/indra/newview/installers/windows/installer_template.nsi
index 0566b7e..8db336f 100644
--- a/linden/indra/newview/installers/windows/installer_template.nsi
+++ b/linden/indra/newview/installers/windows/installer_template.nsi
@@ -61,14 +61,6 @@ ShowInstDetails nevershow ; no details, no "show" button
61SetOverwrite on ; stomp files by default 61SetOverwrite on ; stomp files by default
62AutoCloseWindow true ; after all files install, close window 62AutoCloseWindow true ; after all files install, close window
63 63
64!ifdef UPDATE
65LicenseText $(LicenseDescUpdate) $(LicenseDescNext)
66!else
67LicenseText $(LicenseDescSetup) $(LicenseDescNext)
68!endif
69
70LicenseData "releasenotes.txt"
71
72InstallDir "$PROGRAMFILES\${INSTNAME}" 64InstallDir "$PROGRAMFILES\${INSTNAME}"
73InstallDirRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\${INSTNAME}" "" 65InstallDirRegKey HKEY_LOCAL_MACHINE "SOFTWARE\Linden Research, Inc.\${INSTNAME}" ""
74!ifdef UPDATE 66!ifdef UPDATE
@@ -944,19 +936,19 @@ Function .onInit
944 936
945 ; generate language ID that will be used as a command line arg 937 ; generate language ID that will be used as a command line arg
946 StrCmp $LANGUAGE "1042" 0 +3 938 StrCmp $LANGUAGE "1042" 0 +3
947 StrCpy $LANGFLAGS " -set SystemLanguage ko" 939 StrCpy $LANGFLAGS " --set SystemLanguage ko"
948 Goto EndOfFunc 940 Goto EndOfFunc
949 941
950 StrCmp $LANGUAGE "1041" 0 +3 942 StrCmp $LANGUAGE "1041" 0 +3
951 StrCpy $LANGFLAGS " -set SystemLanguage ja" 943 StrCpy $LANGFLAGS " --set SystemLanguage ja"
952 Goto EndOfFunc 944 Goto EndOfFunc
953 945
954 StrCmp $LANGUAGE "1031" 0 +3 946 StrCmp $LANGUAGE "1031" 0 +3
955 StrCpy $LANGFLAGS " -set SystemLanguage de" 947 StrCpy $LANGFLAGS " --set SystemLanguage de"
956 Goto EndOfFunc 948 Goto EndOfFunc
957 949
958 StrCmp $LANGUAGE "1033" 0 +3 950 StrCmp $LANGUAGE "1033" 0 +3
959 StrCpy $LANGFLAGS " -set SystemLanguage en-us" 951 StrCpy $LANGFLAGS " --set SystemLanguage en-us"
960 Goto EndOfFunc 952 Goto EndOfFunc
961 953
962 EndOfFunc: 954 EndOfFunc: