Merge pull request #885 from JakeSmarter/de

Add de l10n
This commit is contained in:
bearoso 2023-11-19 17:56:48 -06:00 committed by GitHub
commit 91b08bfeb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 -