Add de l10n

This commit is contained in:
Jake Smarter 2023-11-01 10:41:00 +01:00
parent 665ddf86f2
commit 38c28e1f9c
3 changed files with 1886 additions and 2 deletions

View File

@ -49,7 +49,7 @@ include(CheckIncludeFile)
include(FindGettext)
# Add any new language to this foreach loop
foreach(lang es fr_FR ja pl pt_BR ru sr@latin uk zh_CN)
foreach(lang de es fr_FR ja pl pt_BR ru sr@latin uk zh_CN)
GETTEXT_PROCESS_PO_FILES(${lang} ALL PO_FILES po/${lang}.po)
install(FILES ${CMAKE_BINARY_DIR}/${lang}.gmo
DESTINATION ${LOCALEDIR}/${lang}/LC_MESSAGES

1880
gtk/po/de.po Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,9 @@
#!/bin/sh
cd $(dirname "${0}")/..
xgettext -f po/POTFILES.in --from-code=UTF-8 -o po/snes9x-gtk.pot -kmaybegettext -k_
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 -