mirror of
https://github.com/odrling/Aegisub
synced 2025-04-08 12:15:44 +02:00
8 lines
224 B
Bash
Executable File
8 lines
224 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for i in `cat LINGUAS`; do
|
|
echo -n "$i ";
|
|
msgfmt --verbose -o /dev/null $i 2>&1 \
|
|
|awk '{ TOTAL= $1 + $4 + $7; PERCENT = ($1 / TOTAL) * 100; print "Total Strings: " TOTAL", " PERCENT"% Translated"}';
|
|
done
|