Commit 484870866c4fd95996ea3630e263430a16e60cec
1 parent
acf0bb43
Exists in
v5.2
Packaging windows locale.
Showing
1 changed file
with
8 additions
and
2 deletions
Show diff stats
win/pw3270.nsi.in
... | ... | @@ -130,7 +130,10 @@ SubSection "@PRODUCT_NAME@" SecMain |
130 | 130 | |
131 | 131 | # Locale files |
132 | 132 | CreateDirectory "$INSTDIR\locale\pt_BR\LC_MESSAGES" |
133 | - file "/oname=$INSTDIR\locale\pt_BR\LC_MESSAGES\@PACKAGE@.mo" "locale\pt_BR\LC_MESSAGES\@PACKAGE@.mo" | |
133 | + file "/oname=$INSTDIR\locale\pt_BR\LC_MESSAGES\@PACKAGE@.mo" "locale\pt_BR\LC_MESSAGES\@PACKAGE@.mo" | |
134 | + file "/oname=$INSTDIR\locale\pt_BR\LC_MESSAGES\lib@LIBRARY_NAME@.mo" "locale\pt_BR\LC_MESSAGES\lib@LIBRARY_NAME@.mo" | |
135 | + file "/oname=$INSTDIR\locale\pt_BR\LC_MESSAGES\libv3270.mo" "locale\pt_BR\LC_MESSAGES\libv3270.mo" | |
136 | + file "/oname=$INSTDIR\locale\pt_BR\LC_MESSAGES\libipc3270.mo" "locale\pt_BR\LC_MESSAGES\libipc3270.mo" | |
134 | 137 | |
135 | 138 | # define uninstaller name |
136 | 139 | SetRegView 32 |
... | ... | @@ -153,12 +156,15 @@ SubSection "@PRODUCT_NAME@" SecMain |
153 | 156 | WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\@PRODUCT_NAME@" \ |
154 | 157 | "NoRepair" "1" |
155 | 158 | |
156 | - # Customized options | |
159 | + # Default settings | |
157 | 160 | SetRegView @WINARCH@ |
158 | 161 | |
159 | 162 | # Required for IPC Library. |
160 | 163 | WriteRegStr HKLM "Software\@PRODUCT_NAME@" "InstallLocation" "$INSTDIR" |
161 | 164 | |
165 | + # Customized options | |
166 | + | |
167 | + | |
162 | 168 | sectionEnd |
163 | 169 | |
164 | 170 | !ifdef WITHCERTS | ... | ... |