Browse Source

Add CHARSIZE to ignorelist

Petr Zahradník 6 years ago
parent
commit
d81e9ce7cb
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      buildroot/share/scripts/findMissingTranslations.sh

+ 1
- 1
buildroot/share/scripts/findMissingTranslations.sh View File

28
 echo -n "Building list of missing strings..."
28
 echo -n "Building list of missing strings..."
29
 
29
 
30
 for i in $(awk '/#ifndef/{print $2}' language_en.h); do
30
 for i in $(awk '/#ifndef/{print $2}' language_en.h); do
31
-  [[ $i == "LANGUAGE_EN_H" ]] && continue
31
+  [[ $i == "LANGUAGE_EN_H" || $i == "CHARSIZE" ]] && continue
32
   LANG_LIST=""
32
   LANG_LIST=""
33
   for j in $TEST_LANGS; do
33
   for j in $TEST_LANGS; do
34
     [[ $(grep -c " ${i} " language_${j}.h) -eq 0 ]] && LANG_LIST="$LANG_LIST $j"
34
     [[ $(grep -c " ${i} " language_${j}.h) -eq 0 ]] && LANG_LIST="$LANG_LIST $j"

Loading…
Cancel
Save