mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-28 22:04:28 +08:00
7 lines
161 B
Bash
Executable file
Vendored
7 lines
161 B
Bash
Executable file
Vendored
#!/bin/sh
|
|
# Post-update hook to merge POT translations into PO.
|
|
# Requires gettext.
|
|
|
|
[ -z "${WL_NEW_BASE}" ] && exit 0
|
|
msgmerge -U "$1" "${WL_NEW_BASE}"
|
|
exit $?
|