Browse Source

Fix crowdin update script (#9969)

* Fix crowdin update script

* Refine the script to be specific about what it should change

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
tags/v1.10.5
guillep2k 4 years ago
parent
commit
a47cfdf346
1 changed files with 7 additions and 2 deletions
  1. 7
    2
      scripts/update-locales.sh

+ 7
- 2
scripts/update-locales.sh View File

@@ -1,8 +1,13 @@
#!/bin/sh

mv ./options/locale/locale_en-US.ini ./options/
sed -i -e 's/=\"/=/g' -e 's/\"$$//g' ./options/locale/*.ini
sed -i -e 's/\\\\\\\\\"/\"/g' ./options/locale/*.ini

# Make sure to only change lines that have the translation enclosed between quotes
sed -i -r -e '/^[a-zA-Z0-9_-.]+[ ]*=[ ]*".*"$/ {
s/^([a-zA-Z0-9_-.]+)[ ]*="/\1=/
s/\\"/"/g
s/"$//
}' ./options/locale/*.ini

# Remove translation under 25% of en_us
baselines=`wc -l "./options/locale_en-US.ini" | cut -d" " -f1`

Loading…
Cancel
Save