aboutsummaryrefslogtreecommitdiffstats
path: root/tools/po-update.sh
blob: bf468bcdfffc09388684fd2f0248c5c5792db9b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/bin/sh

set -e

if test "$1" = "-h" -o "$1" = "--help"; then
	echo "Use: $0 [<language>]"
	echo "Run without arguments to update all translation files."
	exit 0
fi

cd "$(readlink -f "$(dirname "$0")/..")"

#VERSION=(0.1)
DOMAIN=(isodumper)

SOURCE_FILES=$(/bin/mktemp --tmpdir $DOMAIN-po-update-XXXXXX)
find "lib" -name '*.py' >"$SOURCE_FILES"
find "share/isodumper" -name '*.glade.h' >"$SOURCE_FILES"

POT_DIR="$PWD/po"
test -d "$POT_DIR"

POT_FILE="$POT_DIR/$DOMAIN.pot"

/usr/bin/xgettext \
	--package-name "$DOMAIN" \
	--package-version "$VERSION" \
	--default-domain="$L_NAME" \
	--language=Python --from-code=UTF-8 --files-from="$SOURCE_FILES" \
	--no-escape --indent --add-location --sort-by-file \
	--add-comments=I18N \
	--output="$POT_FILE"

/bin/sed --in-place --expression="s/charset=CHARSET/charset=UTF-8/" "$POT_FILE"


unfmt() {
	local SOURCE="/usr/share/locale/$LL_CC/LC_MESSAGES/$1.mo"
	if test ! -f "$SOURCE"; then
		SOURCE="/usr/share/locale-langpack/$LL_CC/LC_MESSAGES/$1.mo"
	fi
	local TARGET="$(mktemp --tmpdir $1-$LL_CC-XXXXXX.po)"
	/usr/bin/msgunfmt \
		--no-escape --indent \
		--output-file="$TARGET" \
		"$SOURCE"
	echo "$TARGET"
}

update_po() {
	local LL_CC="$1"
	local PO_FILE="$POT_DIR/$LL_CC.po"

	test -r "$PO_FILE" || /usr/bin/msginit \
			--no-translator --locale="$LL_CC" \
			--input="$POT_FILE" \
			--output-file="$PO_FILE"

	/usr/bin/msgmerge \
		--update --no-fuzzy-matching \
		--no-escape --indent --add-location --sort-by-file \
		--lang="$LL_CC" \
		--compendium="$(unfmt gtk30)" \
		--compendium="$(unfmt gtk30-properties)" \
		"$PO_FILE" "$POT_FILE"

	# /bin/sed --in-place --expression="s/Language: \\\\n/Language: $L_NAME\\\\n/" "$PO_FILE"
	echo "Updated $PO_FILE"
}

if test "$1"; then
	update_po "$1"
else
	for l in $(ls -1 "$POT_DIR"/??.po); do
		l="$(basename "$l")"
		update_po "${l%.po}"
	done
fi