snes9x/gtk/po/updatepot.sh

10 lines
327 B
Bash
Raw Normal View History

2023-08-24 16:15:52 +00:00
#!/bin/sh
cd $(dirname "${0}")/..
2023-11-01 09:41:00 +00:00
xgettext -f po/POTFILES.in \
--from-code 'UTF-8' --package-name 'Snes9x' \
--copyright-holder 'Brandon Wright and Snes9x contributors' \
--msgid-bugs-address 'https://github.com/snes9xgit/snes9x/issues' \
-w 80 -o po/snes9x-gtk.pot -kmaybegettext -k_
2023-08-24 16:15:52 +00:00
cd -