]> git.mxchange.org Git - friendica-addons.git/commitdiff
DE translation for the keycloakpassword addon added
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 21 May 2021 13:15:57 +0000 (15:15 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 21 May 2021 13:15:57 +0000 (15:15 +0200)
keycloakpassword/lang/de/messages.po [new file with mode: 0644]
keycloakpassword/lang/de/strings.php [new file with mode: 0644]

diff --git a/keycloakpassword/lang/de/messages.po b/keycloakpassword/lang/de/messages.po
new file mode 100644 (file)
index 0000000..a5d2806
--- /dev/null
@@ -0,0 +1,60 @@
+# ADDON keycloakpassword
+# Copyright (C)
+# This file is distributed under the same license as the Friendica keycloakpassword addon package.
+# 
+# 
+# Translators:
+# Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2021
+# 
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2021-05-21 07:56+0200\n"
+"PO-Revision-Date: 2021-05-21 12:59+0000\n"
+"Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2021\n"
+"Language-Team: German (https://www.transifex.com/Friendica/teams/12172/de/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: de\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: keycloakpassword.php:118
+msgid "Client ID"
+msgstr "ID des Clients"
+
+#: keycloakpassword.php:119
+msgid ""
+"The name of the OpenID Connect client you created for this addon in "
+"Keycloak."
+msgstr ""
+"Der Name des OpenID Clients den du für dieses Addon in Keycloak angelegt "
+"hast."
+
+#: keycloakpassword.php:123
+msgid "Client secret"
+msgstr "Client Geheimnis"
+
+#: keycloakpassword.php:124
+msgid ""
+"The secret assigned to the OpenID Connect client you created for this addon "
+"in Keycloak."
+msgstr "Das Geheimnis, das du in Keycloak für den Client hinterlegt hast."
+
+#: keycloakpassword.php:128
+msgid "OpenID Connect endpoint"
+msgstr "OpenID Verbindungsendpunkt"
+
+#: keycloakpassword.php:130
+msgid ""
+"URL to the Keycloak endpoint for your client. (E.g., "
+"https://example.com/auth/realms/some-realm/protocol/openid-connect)"
+msgstr ""
+"Die URL des Keycloak Entpunktes fpr deinen Client (z.B. "
+"https://example.com/auth/realms/some-realm/protocol/openid-connect)"
+
+#: keycloakpassword.php:136
+msgid "Save Settings"
+msgstr "Einstellungen speichern"
diff --git a/keycloakpassword/lang/de/strings.php b/keycloakpassword/lang/de/strings.php
new file mode 100644 (file)
index 0000000..8273a1e
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+
+if(! function_exists("string_plural_select_de")) {
+function string_plural_select_de($n){
+       $n = intval($n);
+       return intval($n != 1);
+}}
+;
+$a->strings["Client ID"] = "ID des Clients";
+$a->strings["Client secret"] = "Client Geheimnis";
+$a->strings["The secret assigned to the OpenID Connect client you created for this addon in Keycloak."] = "Das Geheimnis, das du in Keycloak für den Client hinterlegt hast.";
+$a->strings["OpenID Connect endpoint"] = "OpenID Verbindungsendpunkt";
+$a->strings["Save Settings"] = "Einstellungen speichern";