mirror of
https://github.com/oleid/gnome-shell-teatime.git
synced 2022-04-29 18:53:50 +00:00
8 lines
201 B
Bash
Executable File
8 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
SCRIPTDIR=`dirname $0`
|
|
xgettext --from-code=UTF-8 -k_ -kN_ -o TeaTime.pot "$SCRIPTDIR"/../src/*.js "$SCRIPTDIR"/../src/schemas/*.xml
|
|
|
|
for fn in *.po; do
|
|
msgmerge -U "$fn" TeaTime.pot
|
|
done
|