mirror of
https://github.com/Maschell/hid_to_vpad.git
synced 2024-11-14 02:55:07 +01:00
69a99a92e1
- changing order in lang files - fixed comment on english.lang
10 lines
406 B
Bash
10 lines
406 B
Bash
#! /bin/bash
|
|
#
|
|
find . -iname "*.cpp" | xargs xgettext --no-wrap -o languages/english.lang -j --no-location --omit-header
|
|
find . -iname "*.cpp" | xargs xgettext --no-wrap -o languages/english.lang -j --omit-header --sort-by-file
|
|
for fn in `find languages/*.lang`; do
|
|
if [ "$fn" != "languages/english.lang" ]; then
|
|
msgmerge --output-file=$fn $fn languages/english.lang --no-wrap
|
|
fi
|
|
|
|
done |