mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 06:45:09 -06:00
Remove lokalize useless comments
This commit is contained in:
parent
bf90781c97
commit
918fe92939
35 changed files with 12 additions and 31480 deletions
12
scripts/fix_lokalize_translations.sh
Executable file
12
scripts/fix_lokalize_translations.sh
Executable file
|
@ -0,0 +1,12 @@
|
|||
#! /bin/bash
|
||||
|
||||
default_i18n_dir="../resources/i18n"
|
||||
i18n_dir=${1:-$default_i18n_dir}
|
||||
|
||||
for language_dir in "$i18n_dir"/*; do
|
||||
if [[ -d "$language_dir" ]]; then
|
||||
for language_file in "$language_dir"/*.po; do
|
||||
sed -i "/#, fuzzy/d" "$language_file"
|
||||
done
|
||||
fi
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue