diff options
author | Nomis101 <[email protected]> | 2020-05-13 18:09:54 +0200 |
---|---|---|
committer | Scott <[email protected]> | 2020-05-19 19:49:26 +0100 |
commit | d8252ec606ac368863aed92977cdab9ccc9b5512 (patch) | |
tree | 2b058873e16934ec9c68be4b52c3b101474ba43f /win/CS/HandBrakeWPF/Installer | |
parent | c1c25378983054c630b7db20ecc7a332b849343d (diff) |
WinGUI: Update some locale and add initial support for Brazilian Portuguese
Diffstat (limited to 'win/CS/HandBrakeWPF/Installer')
-rw-r--r-- | win/CS/HandBrakeWPF/Installer/Installer64.nsi | 8 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi | 10 |
2 files changed, 15 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/Installer/Installer64.nsi b/win/CS/HandBrakeWPF/Installer/Installer64.nsi index 0289824d8..beeb7f928 100644 --- a/win/CS/HandBrakeWPF/Installer/Installer64.nsi +++ b/win/CS/HandBrakeWPF/Installer/Installer64.nsi @@ -188,6 +188,10 @@ Section "HandBrake" SEC01 SetOutPath "$INSTDIR\ja"
SetOverwrite ifnewer
File "ja\*.*"
+ + SetOutPath "$INSTDIR\pt-BR"
+ SetOverwrite ifnewer
+ File "pt-BR\*.*" ; Copy the standard doc set into the doc folder
SetOutPath "$INSTDIR\doc"
@@ -246,7 +250,9 @@ Section Uninstall Delete "$INSTDIR\tr\*.*"
RMDir "$INSTDIR\tr"
Delete "$INSTDIR\ja\*.*"
- RMDir "$INSTDIR\ja"
+ RMDir "$INSTDIR\ja" + Delete "$INSTDIR\pt-BR\*.*"
+ RMDir "$INSTDIR\pt-BR"
RMDir "$INSTDIR"
diff --git a/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi b/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi index 0c619aa63..fde0ba8b7 100644 --- a/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi +++ b/win/CS/HandBrakeWPF/Installer/MakeNightly64.nsi @@ -186,7 +186,11 @@ Section "HandBrake" SEC01 SetOutPath "$INSTDIR\ja"
SetOverwrite ifnewer
- File "ja\*.*"
+ File "ja\*.*" + + SetOutPath "$INSTDIR\pt-BR"
+ SetOverwrite ifnewer
+ File "pt-BR\*.*"
; Copy the standard doc set into the doc folder
SetOutPath "$INSTDIR\doc"
@@ -242,7 +246,9 @@ Section Uninstall Delete "$INSTDIR\tr\*.*"
RMDir "$INSTDIR\tr"
Delete "$INSTDIR\ja\*.*"
- RMDir "$INSTDIR\ja"
+ RMDir "$INSTDIR\ja" + Delete "$INSTDIR\pt-BR\*.*"
+ RMDir "$INSTDIR\pt-BR"
RMDir "$INSTDIR"
|