Updated translations so that untranslated keys will be preixed with an exclamation point at the beginnign of the line, all at the end of the file.

This commit is contained in:
Wyatt Olson
2010-09-15 18:27:49 -06:00
parent 2a1a2ba8fb
commit 07d5e041d0
32 changed files with 4590 additions and 2 deletions

View File

@@ -5,15 +5,22 @@
TEMP=temp_file
#First thing, we want to strip default of any !s and duplicates.
cat "default" | grep -v '^!' | sort | uniq > "$TEMP"
mv "$TEMP" "default"
echo "Generating differences... this may take a few minutes."
find . |
grep -v 'default' |
grep -v 'README' |
grep -v 'LICENSE' |
grep -v 'generateDiffs.sh' |
grep -v "$TEMP" |
grep -v '^.$' |
while read X; do
echo "$X"
echo "Working on differences for $X"
#Start by copying the existing file to a temporary one, after sorting and removing all
#previous differences
@@ -33,3 +40,4 @@ while read X; do
mv "$TEMP" "$X"
done
echo "Finished generating differences."