mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 05:22:53 +00:00
13 lines
545 B
PHP
13 lines
545 B
PHP
<?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";
|