2023-08-24 18:15:52 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
cd $(dirname "${0}")/..
|
2023-11-01 10:41:00 +01: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 18:15:52 +02:00
|
|
|
cd -
|