mirror of https://github.com/snes9xgit/snes9x.git
10 lines
327 B
Bash
Executable File
10 lines
327 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd $(dirname "${0}")/..
|
|
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_
|
|
cd -
|