forked from friendica/friendica-addons
added HU translation of keycloakpassword addon THX urbalazs
This commit is contained in:
parent
27fc16d631
commit
578e79afa6
62
keycloakpassword/lang/hu/messages.po
Normal file
62
keycloakpassword/lang/hu/messages.po
Normal file
|
@ -0,0 +1,62 @@
|
|||
# ADDON keycloakpassword
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica keycloakpassword addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Balázs Úr, 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: Balázs Úr, 2021\n"
|
||||
"Language-Team: Hungarian (https://www.transifex.com/Friendica/teams/12172/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: keycloakpassword.php:118
|
||||
msgid "Client ID"
|
||||
msgstr "Ügyfél-azonosító"
|
||||
|
||||
#: keycloakpassword.php:119
|
||||
msgid ""
|
||||
"The name of the OpenID Connect client you created for this addon in "
|
||||
"Keycloak."
|
||||
msgstr ""
|
||||
"Az OpenID Connect ügyfelének neve, amelyet ehhez a bővítményhez hozott létre"
|
||||
" a Keycloak alkalmazásban."
|
||||
|
||||
#: keycloakpassword.php:123
|
||||
msgid "Client secret"
|
||||
msgstr "Ügyféltitok"
|
||||
|
||||
#: keycloakpassword.php:124
|
||||
msgid ""
|
||||
"The secret assigned to the OpenID Connect client you created for this addon "
|
||||
"in Keycloak."
|
||||
msgstr ""
|
||||
"Ahhoz az OpenID Connect ügyfélhez hozzárendelt titok, amelyet ehhez a "
|
||||
"bővítményhez hozott létre a Keycloak alkalmazásban."
|
||||
|
||||
#: keycloakpassword.php:128
|
||||
msgid "OpenID Connect endpoint"
|
||||
msgstr "OpenID Connect végpont"
|
||||
|
||||
#: 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 ""
|
||||
"Az ügyfél URL-e a Keycloak végponthoz (például "
|
||||
"https://example.com/auth/realms/some-realm/protocol/openid-connect)."
|
||||
|
||||
#: keycloakpassword.php:136
|
||||
msgid "Save Settings"
|
||||
msgstr "Beállítások mentése"
|
12
keycloakpassword/lang/hu/strings.php
Normal file
12
keycloakpassword/lang/hu/strings.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_hu")) {
|
||||
function string_plural_select_hu($n){
|
||||
$n = intval($n);
|
||||
return intval($n != 1);
|
||||
}}
|
||||
;
|
||||
$a->strings["Client ID"] = "Ügyfél-azonosító";
|
||||
$a->strings["Client secret"] = "Ügyféltitok";
|
||||
$a->strings["OpenID Connect endpoint"] = "OpenID Connect végpont";
|
||||
$a->strings["Save Settings"] = "Beállítások mentése";
|
Loading…
Reference in a new issue