added DE translation

This commit is contained in:
Tobias Diekershoff 2022-02-20 08:19:56 +01:00
parent 5a24ff42f2
commit e35339e151
3 changed files with 41 additions and 0 deletions

View File

@ -16,6 +16,7 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: mahjong.php:19
msgid "Mahjong Game"

31
lang/de/messages.po Normal file
View File

@ -0,0 +1,31 @@
# ADDON mahjong
# Copyright (C)
# This file is distributed under the same license as the Friendica mahjong addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-02-20 08:08+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>\n"
"Language-Team: de\n"
"Language: de"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: mahjong.php:19
msgid "Mahjong Game"
msgstr "Mahjong Spiel"
#: mahjong.php:37
#, php-format
msgid ""
"Game credits: <a href=\"%s\" target=\"_new\">mah - Mahjong Solitaire Game</"
"a> by ffalt (MIT license)."
msgstr "Credits zum Spiel: <a href=\"%s\" target=\"_new\">mah - Mahjong Solitaire Game</"
"a> von ffalt (MIT Lizenz)."

9
lang/de/strings.php Normal file
View File

@ -0,0 +1,9 @@
<?php
if(! function_exists("string_plural_select_de")) {
function string_plural_select_de($n){
$n = intval($n);
return intval($n != 1);
}}
$a->strings['Mahjong Game'] = 'Mahjong Spiel';
$a->strings['Game credits: <a href="%s" target="_new">mah - Mahjong Solitaire Game</a> by ffalt (MIT license).'] = 'Credits zum Spiel: <a href="%s" target="_new">mah - Mahjong Solitaire Game</a> von ffalt (MIT Lizenz).';