From 38f8d419d73d6f2cdb200af2e67546b96edcd1ca Mon Sep 17 00:00:00 2001 From: 3d-gussner <3d.gussner@gmail.com> Date: Sat, 21 Sep 2019 12:07:51 +0200 Subject: [PATCH] Fix translation file and odd chars in `lang-import.sh` --- lang/lang-import.sh | 66 ++++++++++++++++++++++----------------------- lang/lang_en_nl.txt | 9 +++++-- 2 files changed, 40 insertions(+), 35 deletions(-) diff --git a/lang/lang-import.sh b/lang/lang-import.sh index aefd57b1..4bf77d50 100755 --- a/lang/lang-import.sh +++ b/lang/lang-import.sh @@ -40,51 +40,51 @@ sed -i 's/ \\n/ /g;s/\\n/ /g' $LNG'_filtered.po' #replace in czech translation if [ "$LNG" = "cz" ]; then - #replace 'ž' with 'z' + #replace '' with 'z' sed -i 's/\xc5\xbe/z/g' $LNG'_filtered.po' - #replace 'ì' with 'e' + #replace '' with 'e' sed -i 's/\xc4\x9b/e/g' $LNG'_filtered.po' - #replace 'í' with 'i' + #replace '' with 'i' sed -i 's/\xc3\xad/i/g' $LNG'_filtered.po' - #replace 'ø' with 'r' + #replace '' with 'r' sed -i 's/\xc5\x99/r/g' $LNG'_filtered.po' - #replace 'è' with 'c' + #replace '' with 'c' sed -i 's/\xc4\x8d/c/g' $LNG'_filtered.po' - #replace 'á' with 'a' + #replace '' with 'a' sed -i 's/\xc3\xa1/a/g' $LNG'_filtered.po' - #replace 'é' with 'e' + #replace '' with 'e' sed -i 's/\xc3\xa9/e/g' $LNG'_filtered.po' fi #replace in german translation https://en.wikipedia.org/wiki/German_orthography if [ "$LNG" = "de" ]; then - #replace 'ä' with 'ae' + #replace '' with 'ae' sed -i 's/\xc3\xa4/ae/g' $LNG'_filtered.po' - #replace 'Ä' with 'Ae' + #replace '' with 'Ae' sed -i 's/\xc3\x84/Ae/g' $LNG'_filtered.po' - #replace 'ü' with 'ue' + #replace '' with 'ue' sed -i 's/\xc3\xbc/ue/g' $LNG'_filtered.po' - #replace 'Ü' with 'Ue' + #replace '' with 'Ue' sed -i 's/\xc3\x9c/Ue/g' $LNG'_filtered.po' - #replace 'ö' with 'oe' + #replace '' with 'oe' sed -i 's/\xc3\xb6/oe/g' $LNG'_filtered.po' - #replace 'Ö' with 'Oe' + #replace '' with 'Oe' sed -i 's/\xc3\x96/Oe/g' $LNG'_filtered.po' - #replace 'ß' with 'ss' + #replace '' with 'ss' sed -i 's/\xc3\x9f/ss/g' $LNG'_filtered.po' fi #replace in spain translation if [ "$LNG" = "es" ]; then - #replace 'á' with 'a' + #replace '' with 'a' sed -i 's/\xc3\xa1/a/g' $LNG'_filtered.po' - #replace '¿' with '?' + #replace '' with '?' sed -i 's/\xc2\xbf/?/g' $LNG'_filtered.po' - #replace 'ó' with 'o' + #replace '' with 'o' sed -i 's/\xc3\xb3/o/g' $LNG'_filtered.po' - #replace 'é' with 'e' + #replace '' with 'e' sed -i 's/\xc3\xa9/e/g' $LNG'_filtered.po' - #replace 'í' with 'i' + #replace '' with 'i' sed -i 's/\xc3\xad/i/g' $LNG'_filtered.po' #replace '!' with '!' sed -i 's/\xc2\xa1/!/g' $LNG'_filtered.po' @@ -94,37 +94,37 @@ fi #replace in french translation https://en.wikipedia.org/wiki/French_orthography if [ "$LNG" = "fr" ]; then - #replace 'á' with 'a' (right) + #replace '' with 'a' (right) sed -i 's/\xc3\xa1/a/g' $LNG'_filtered.po' - #replace 'Á' with 'A' (right) + #replace '' with 'A' (right) sed -i 's/\xc3\x81/A/g' $LNG'_filtered.po' - #replace 'à' with 'a' (left) + #replace '' with 'a' (left) sed -i 's/\xc3\xa0/a/g' $LNG'_filtered.po' - #replace 'À' with 'A' (left) + #replace '' with 'A' (left) sed -i 's/\xc3\x80/A/g' $LNG'_filtered.po' - #replace 'é' with 'e' (right) + #replace '' with 'e' (right) sed -i 's/\xc3\xa9/e/g' $LNG'_filtered.po' - #replace 'É' with 'E' (right) + #replace '' with 'E' (right) sed -i 's/\xc3\x89/E/g' $LNG'_filtered.po' - #replace 'è' with 'e' (left) + #replace '' with 'e' (left) sed -i 's/\xc3\xa8/e/g' $LNG'_filtered.po' - #replace 'È' with 'E' (left) + #replace '' with 'E' (left) sed -i 's/\xc3\x88/E/g' $LNG'_filtered.po' fi #replace in italian translation if [ "$LNG" = "it" ]; then - #replace 'é' with 'e' (left) + #replace '' with 'e' (left) sed -i 's/\xc3\xa8/e/g' $LNG'_filtered.po' - #replace 'á' with 'a' (left) + #replace '' with 'a' (left) sed -i 's/\xc3\xa0/a/g' $LNG'_filtered.po' - #replace 'ó' with 'o' (left) + #replace '' with 'o' (left) sed -i 's/\xc3\xb2/o/g' $LNG'_filtered.po' - #replace 'ú' with 'u' (left) + #replace '' with 'u' (left) sed -i 's/\xc3\xb9/u/g' $LNG'_filtered.po' - #replace 'é' with 'e' + #replace '' with 'e' sed -i 's/\xc3\xa9/e/g' $LNG'_filtered.po' - #replace 'É' with 'E' (left) + #replace '' with 'E' (left) sed -i 's/\xc3\x88/E/g' $LNG'_filtered.po' fi diff --git a/lang/lang_en_nl.txt b/lang/lang_en_nl.txt index 5d9bdc44..21c39803 100644 --- a/lang/lang_en_nl.txt +++ b/lang/lang_en_nl.txt @@ -1416,8 +1416,8 @@ "Plaat" # -"Sound [assist]" -"Geluid [assist]" +"Sound [assist]" +"Geluid [assist]" # "Steel sheets" @@ -1434,3 +1434,8 @@ # "Z-probe nr. [3]" "Z-probe nr. [3]" + +# +"Z-probe nr. [5]" +"Z-probe nr. [5]" +