diff options
author | Jacek Antonelli | 2008-08-15 23:44:59 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:59 -0500 |
commit | a408bac29378072fbf36864164149458c978cfcc (patch) | |
tree | 67feccf1a5d3816611ba48d6762f86f0f7f4b1f6 /linden/indra/newview/installers/windows | |
parent | Second Life viewer sources 1.17.0.12 (diff) | |
download | meta-impy-a408bac29378072fbf36864164149458c978cfcc.zip meta-impy-a408bac29378072fbf36864164149458c978cfcc.tar.gz meta-impy-a408bac29378072fbf36864164149458c978cfcc.tar.bz2 meta-impy-a408bac29378072fbf36864164149458c978cfcc.tar.xz |
Second Life viewer sources 1.17.1.0
Diffstat (limited to 'linden/indra/newview/installers/windows')
-rw-r--r-- | linden/indra/newview/installers/windows/installer_template.nsi | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/linden/indra/newview/installers/windows/installer_template.nsi b/linden/indra/newview/installers/windows/installer_template.nsi index 1b5226c..7a225fa 100644 --- a/linden/indra/newview/installers/windows/installer_template.nsi +++ b/linden/indra/newview/installers/windows/installer_template.nsi | |||
@@ -37,9 +37,9 @@ XPStyle on ; add an XP manifest to the installer | |||
37 | ;; (these files are in the same place as the nsi template but the python script generates a new nsi file in the | 37 | ;; (these files are in the same place as the nsi template but the python script generates a new nsi file in the |
38 | ;; application directory so we have to add a path to these include files) | 38 | ;; application directory so we have to add a path to these include files) |
39 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 39 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
40 | #!include "installers\windows\lang_de.nsi" | 40 | !include "installers\windows\lang_de.nsi" |
41 | !include "installers\windows\lang_en-us.nsi" | 41 | !include "installers\windows\lang_en-us.nsi" |
42 | #!include "installers\windows\lang_ja.nsi" | 42 | !include "installers\windows\lang_ja.nsi" |
43 | !include "installers\windows\lang_ko.nsi" | 43 | !include "installers\windows\lang_ko.nsi" |
44 | 44 | ||
45 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 45 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
@@ -890,10 +890,10 @@ Function .onInit | |||
890 | Push "" | 890 | Push "" |
891 | Push ${LANG_ENGLISH} | 891 | Push ${LANG_ENGLISH} |
892 | Push English | 892 | Push English |
893 | # Push ${LANG_GERMAN} | 893 | Push ${LANG_GERMAN} |
894 | # Push German | 894 | Push German |
895 | # Push ${LANG_JAPANESE} | 895 | Push ${LANG_JAPANESE} |
896 | # Push Japanese | 896 | Push Japanese |
897 | Push ${LANG_KOREAN} | 897 | Push ${LANG_KOREAN} |
898 | Push Korean | 898 | Push Korean |
899 | Push A ; A means auto count languages for the auto count to work the first empty push (Push "") must remain | 899 | Push A ; A means auto count languages for the auto count to work the first empty push (Push "") must remain |
@@ -909,12 +909,15 @@ Function .onInit | |||
909 | StrCmp $LANGUAGE "1042" 0 +3 | 909 | StrCmp $LANGUAGE "1042" 0 +3 |
910 | StrCpy $LANGFLAGS " -set SystemLanguage ko" | 910 | StrCpy $LANGFLAGS " -set SystemLanguage ko" |
911 | Goto EndOfFunc | 911 | Goto EndOfFunc |
912 | # StrCmp $LANGUAGE "1041" 0 +3 | 912 | |
913 | # StrCpy $LANGFLAGS " -set SystemLanguage ja" | 913 | StrCmp $LANGUAGE "1041" 0 +3 |
914 | # Goto EndOfFunc | 914 | StrCpy $LANGFLAGS " -set SystemLanguage ja" |
915 | # StrCmp $LANGUAGE "1031" 0 +3 | 915 | Goto EndOfFunc |
916 | # StrCpy $LANGFLAGS " -set SystemLanguage de" | 916 | |
917 | # Goto EndOfFunc | 917 | StrCmp $LANGUAGE "1031" 0 +3 |
918 | StrCpy $LANGFLAGS " -set SystemLanguage de" | ||
919 | Goto EndOfFunc | ||
920 | |||
918 | StrCmp $LANGUAGE "1033" 0 +3 | 921 | StrCmp $LANGUAGE "1033" 0 +3 |
919 | StrCpy $LANGFLAGS " -set SystemLanguage en-us" | 922 | StrCpy $LANGFLAGS " -set SystemLanguage en-us" |
920 | Goto EndOfFunc | 923 | Goto EndOfFunc |