diff options
author | Mario <mario@mariovavti.com> | 2019-12-21 09:40:57 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-12-21 09:40:57 +0000 |
commit | 300727b8cf5cb88e62bcc283fbbe1cf8c79498d9 (patch) | |
tree | d96119964214add218da3773522ec7072fecdbe7 /view | |
parent | 448fb14fc4154c882b352a90d66917d26459ef08 (diff) | |
download | volse-hubzilla-300727b8cf5cb88e62bcc283fbbe1cf8c79498d9.tar.gz volse-hubzilla-300727b8cf5cb88e62bcc283fbbe1cf8c79498d9.tar.bz2 volse-hubzilla-300727b8cf5cb88e62bcc283fbbe1cf8c79498d9.zip |
german translation fixes
Diffstat (limited to 'view')
-rw-r--r-- | view/de-de/hstrings.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/de-de/hstrings.php b/view/de-de/hstrings.php index 2b4a69612..562cf618f 100644 --- a/view/de-de/hstrings.php +++ b/view/de-de/hstrings.php @@ -2,10 +2,10 @@ if(! function_exists("string_plural_select_de_de")) { function string_plural_select_de_de($n){ - return ($n != 1); + return ($n != 1 ? 1 : 0); }} App::$rtl = 0; -App::$strings["plural_function_code"] = "(n != 1)"; +App::$strings["plural_function_code"] = "(n != 1 ? 1 : 0)"; App::$strings["Default"] = "Standard"; App::$strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)"; App::$strings["Submit"] = "Absenden"; @@ -77,7 +77,7 @@ App::$strings["Search"] = "Suche"; App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "Hub durchsuchen: @Name, !Forum, #Schlagwort, ?Dokumentation, Inhalt"; App::$strings["Admin"] = "Administration"; App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; -App::$strings["Loading"] = "Lädt..."; +App::$strings["Loading"] = "Lädt"; App::$strings["@name, !forum, #tag, ?doc, content"] = "@Name, !Forum, #Schlagwort, ?Dokumentation, Inhalt"; App::$strings["Please wait..."] = "Bitte warten..."; App::$strings["Add Apps"] = "Apps hinzufügen"; |