summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Gaugler <thomas@dadie.net>2016-12-20 16:20:05 +0000
committerDidier Raboud <odyx@debian.org>2016-12-29 14:43:21 +0100
commit8066539169b9e59a4be5f9e54fbe5f7930907ca9 (patch)
tree93d296f6ffe8f6f4e7979f842eb6eda636209af2
parente3f878d5a6e5b80b27f2bed1474c194b535694c6 (diff)
Use only UTF-8 encoded NSIS language files
-rwxr-xr-xl10n/win32-loader.sh22
1 files changed, 5 insertions, 17 deletions
diff --git a/l10n/win32-loader.sh b/l10n/win32-loader.sh
index f39835d..c71d5e0 100755
--- a/l10n/win32-loader.sh
+++ b/l10n/win32-loader.sh
@@ -67,7 +67,7 @@ fi
gettext English > /dev/null
# The bulk of the strings
-./win32-loader | iconv -c -f utf-8 -t "${charset}"
+./win32-loader
# Now comes a string that may be used by NTLDR (or not). So we need both
# samples.
@@ -88,19 +88,7 @@ d_i=`gettext '$target_distro $kernel_name - Continue with install process'`
pxe=`gettext "PXE - Network boot"`
# - Then we get a sample for bootmgr in the native charset.
-echo "${d_i}" | iconv -c -f utf-8 -t "${charset}" | langstring d-i
-echo "${pxe}" | iconv -c -f utf-8 -t "${charset}" | langstring pxe
-
-# - And another for ntldr in its own charset. If the charset cannot be
-# converted to ${ntldr_charset}, fallback to English untill it's fixed.
-(if echo "${d_i}" | iconv -c -f utf-8 -t "${ntldr_charset}" > /dev/null 2>&1 ; then
- echo "${d_i}" | iconv -c -f utf-8 -t "${ntldr_charset}"
-else
- echo '$target_distro $kernel_name - Continue with install process'
-fi) | langstring d-i_ntldr
-
-(if echo "${pxe}" | iconv -c -f utf-8 -t "${ntldr_charset}" > /dev/null 2>&1 ; then
- echo "${pxe}" | iconv -c -f utf-8 -t "${ntldr_charset}"
-else
- echo "PXE - Network boot"
-fi) | langstring pxe_ntldr
+echo "${d_i}" | langstring d-i
+echo "${d_i}" | langstring d-i_ntldr
+echo "${pxe}" | langstring pxe
+echo "${pxe}" | langstring pxe_ntldr