mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00
13 lines
372 B
Bash
Executable File
13 lines
372 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Parse the GNOME client only to build the langage template
|
|
|
|
xgettext --from-code=utf-8 --language=C -k_ -kN_ -kc_:1c,2 -kn_:1,2 -ktr2i18n -ktr2i18n:2c,1 -kki18nc:1c,2 -kki18n -ki18n -ki18nc:1c,2 -o sflphone.pot `find ../gnome/src -name \*.c`
|
|
|
|
# Merge template into the existing po files
|
|
|
|
for file in *.po
|
|
do
|
|
msgmerge --update $file sflphone.pot
|
|
done
|