more html5 br conversions

This commit is contained in:
zotlabs 2019-11-21 20:00:57 -08:00
parent 27d7e8ada4
commit 027d9e211d
41 changed files with 119 additions and 119 deletions

View file

@ -613,7 +613,7 @@ class Enotify {
$textversion = strip_tags(html_entity_decode(bbcode(stripslashes(str_replace(array("\\r", "\\n"), array( "", "\n"), $body))),ENT_QUOTES,'UTF-8'));
$htmlversion = bbcode(stripslashes(str_replace(array("\\r","\\n"), array("","<br />\n"),$body)));
$htmlversion = bbcode(stripslashes(str_replace(array("\\r","\\n"), array("","<br>\n"),$body)));
// use $_SESSION['zid_override'] to force zid() to use

View file

@ -120,7 +120,7 @@ class Security {
}
$embedhelp2 = t("The recommended setting is to only allow unfiltered HTML from the following sites:");
$embedhelp3 = t("https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />");
$embedhelp3 = t("https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>");
$embedhelp4 = t("All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked.");
$t = get_markup_template('admin_security.tpl');

View file

@ -267,7 +267,7 @@ class Directory extends Controller {
$profile_link = chanlink_url($rr['url']);
$pdesc = (($rr['description']) ? $rr['description'] . '<br />' : '');
$pdesc = (($rr['description']) ? $rr['description'] . '<br>' : '');
$connect_link = ((local_channel()) ? z_root() . '/follow?f=&url=' . urlencode($rr['address']) : '');
// Checking status is disabled ATM until someone checks the performance impact more carefully

View file

@ -66,7 +66,7 @@ class Pdledit extends \Zotlabs\Web\Controller {
$name = lcfirst(basename($f,'.php'));
$x = theme_include('mod_' . $name . '.pdl');
if($x) {
$o .= '<a href="pdledit/' . $name . '" >' . $name . '</a>' . ((in_array($name,$edited)) ? ' ' . t('(modified)') . ' <a href="pdledit/' . $name . '/reset" >' . t('Reset') . '</a>': '' ) . '<br />';
$o .= '<a href="pdledit/' . $name . '" >' . $name . '</a>' . ((in_array($name,$edited)) ? ' ' . t('(modified)') . ' <a href="pdledit/' . $name . '/reset" >' . t('Reset') . '</a>': '' ) . '<br>';
}
}
}
@ -74,7 +74,7 @@ class Pdledit extends \Zotlabs\Web\Controller {
if($addons) {
foreach($addons as $a) {
$name = substr(basename($a, '.pdl'),4);
$o .= '<a href="pdledit/' . $name . '" >' . $name . '</a>' . ((in_array($name,$edited)) ? ' ' . t('(modified)') . ' <a href="pdledit/' . $name . '/reset" >' . t('Reset') . '</a>': '' ) . '<br />';
$o .= '<a href="pdledit/' . $name . '" >' . $name . '</a>' . ((in_array($name,$edited)) ? ' ' . t('(modified)') . ' <a href="pdledit/' . $name . '/reset" >' . t('Reset') . '</a>': '' ) . '<br>';
}
}

View file

@ -56,7 +56,7 @@ class Pubsites extends \Zotlabs\Web\Controller {
$location = '<p title="' . t('Location') . '" style="margin: 5px 5px 0 0; text-align: right"><i class="fa fa-globe"></i> ' . $jj['location'] . '</p>';
}
else {
$location = '<br />&nbsp;';
$location = '<br>&nbsp;';
}
$urltext = str_replace(array('https://'), '', $jj['url']);
$o .= '<tr><td><a href="'. (($jj['sellpage']) ? $jj['sellpage'] : $jj['url'] . '/register' ) . '" ><i class="fa fa-link"></i> ' . $urltext . '</a>' . $location . '</td><td>' . $jj['access'] . '</td><td>' . $jj['register'] . '</td><td>' . ucwords($jj['project']) . (($jj['version']) ? ' ' . $jj['version'] : '') . '</td>';

View file

@ -449,7 +449,7 @@ class Channel {
));
$subdir = ((strlen(App::get_path())) ? '<br />' . t('or') . ' ' . z_root() . '/channel/' . $nickname : '');
$subdir = ((strlen(App::get_path())) ? '<br>' . t('or') . ' ' . z_root() . '/channel/' . $nickname : '');
$webbie = $nickname . '@' . App::get_hostname();
$intl_nickname = unpunify($nickname) . '@' . unpunify(App::get_hostname());

View file

@ -48,7 +48,7 @@ class Viewsrc extends Controller {
}
$content = escape_tags($r[0]['body']);
$o = (($json) ? json_encode($content) : str_replace("\n",'<br />',$content));
$o = (($json) ? json_encode($content) : str_replace("\n",'<br>',$content));
}
}

View file

@ -17,7 +17,7 @@ class Zot_probe extends \Zotlabs\Web\Controller {
$o .= 'Lookup URI: <input type="text" style="width: 250px;" name="addr" value="' . $_GET['addr'] .'" /><br>';
$o .= '<input type="submit" name="submit" value="Submit" /></form>';
$o .= '<br /><br />';
$o .= '<br><br>';
if(x($_GET,'addr')) {
$addr = $_GET['addr'];

View file

@ -44,7 +44,7 @@ class Helpindex {
$o .= $level_0;
if($levels) {
foreach($levels as $l) {
$o .= '<br /><br />';
$o .= '<br><br>';
$o .= $l;
}
}

View file

@ -142,7 +142,7 @@ function html2bbcode($message)
$node->nodeValue = str_replace("\n", "\r", $node->nodeValue);
$message = $doc->saveHTML();
$message = str_replace(array("\n<", ">\n", "\r", "\n", "\xC3\x82\xC2\xA0"), array("<", ">", "<br />", " ", ""), $message);
$message = str_replace(array("\n<", ">\n", "\r", "\n", "\xC3\x82\xC2\xA0"), array("<", ">", "<br>", " ", ""), $message);
$message = preg_replace('= [\s]*=i', " ", $message);
@$doc->loadHTML($message);

View file

@ -3327,9 +3327,9 @@ msgstr "L'ajust recomanat és només permetre HTML sense filtrar dels següents
#: ../../Zotlabs/Module/Admin/Security.php:87
msgid ""
"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br"
" />https://vimeo.com/<br />https://soundcloud.com/<br />"
msgstr "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"
"https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br"
" />https://vimeo.com/<br>https://soundcloud.com/<br>"
msgstr "https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"
#: ../../Zotlabs/Module/Admin/Security.php:88
msgid ""
@ -11195,9 +11195,9 @@ msgstr "Publica a GNU Social"
#: ../../addon/statusnet/statusnet.php:195
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"Please contact your site administrator.<br>The provided API URL is not "
"valid."
msgstr "Contacta l'administrador del teu lloc. <br />L'adreça URL de l'API no és vàlida."
msgstr "Contacta l'administrador del teu lloc. <br>L'adreça URL de l'API no és vàlida."
#: ../../addon/statusnet/statusnet.php:232
msgid "We could not contact the GNU social API with the Path you entered."
@ -11216,7 +11216,7 @@ msgid ""
"There are preconfigured OAuth key pairs for some GNU social servers "
"available. If you are using one of them, please use these credentials.<br "
"/>If not feel free to connect to any other GNU social instance (see below)."
msgstr "Hi ha disponibles preconfigurats alguns parells de clau OAuth per a alguns servidors de GNU Social. I en fas servir algun, fes servir aquestes credencials.<br />Altrament, pots connectar-te a qualsevol altra instància de GNU Social (mira més avall)"
msgstr "Hi ha disponibles preconfigurats alguns parells de clau OAuth per a alguns servidors de GNU Social. I en fas servir algun, fes servir aquestes credencials.<br>Altrament, pots connectar-te a qualsevol altra instància de GNU Social (mira més avall)"
#: ../../addon/statusnet/statusnet.php:327
msgid "Provide your own OAuth Credentials"
@ -11226,10 +11226,10 @@ msgstr "Proporciona credencials OAuth pròpies"
msgid ""
"No consumer key pair for GNU social found. Register your Hubzilla Account as"
" an desktop client on your GNU social account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"here and enter the API base root.<br>Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Hubzilla installation at your favourite GNU social installation."
msgstr "No s'ha trobat cap parell de claus per a GNU Social. Registra el teu compte de Hubzilla com un client d'escriptori al teu compte de GNU Social, després copia el parell de claus de consumidor aquí i finalment introdueix l'adreça arrel de l'API.<br />Abans de registrar el teu propi parell de claus, pregunta a l'administració d'aquest hub si ja hi ha un parell de claus registrat per al mateix servidor de GNU Social."
msgstr "No s'ha trobat cap parell de claus per a GNU Social. Registra el teu compte de Hubzilla com un client d'escriptori al teu compte de GNU Social, després copia el parell de claus de consumidor aquí i finalment introdueix l'adreça arrel de l'API.<br>Abans de registrar el teu propi parell de claus, pregunta a l'administració d'aquest hub si ja hi ha un parell de claus registrat per al mateix servidor de GNU Social."
#: ../../addon/statusnet/statusnet.php:333
msgid "OAuth Consumer Key"

View file

@ -656,7 +656,7 @@ App::$strings["Account language (for emails)"] = "Idioma pel compte (pels correu
App::$strings["Service class"] = "Classe de servei";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Per defecte, HTML no filtrat està permés als media embeguts. Això es inherentment no segur.";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'ajust recomanat és només permetre HTML sense filtrar dels següents llocs:";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
App::$strings["https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"] = "https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "Tota la resta de contingut embegut seà filtrat, <strong>excepte</strong> contingut embegut d'aquest lloc que està blocat explícitament.";
App::$strings["Security"] = "Seguretat";
App::$strings["Block public"] = "Bloca que sigui públic";
@ -2465,13 +2465,13 @@ App::$strings["right"] = "dreta";
App::$strings["Enable Flattr widget"] = "Habilita el giny de Flattr";
App::$strings["Flattr Widget Settings"] = "Opcions del giny de Flattr";
App::$strings["Post to GNU social"] = "Publica a GNU Social";
App::$strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Contacta l'administrador del teu lloc. <br />L'adreça URL de l'API no és vàlida.";
App::$strings["Please contact your site administrator.<br>The provided API URL is not valid."] = "Contacta l'administrador del teu lloc. <br>L'adreça URL de l'API no és vàlida.";
App::$strings["We could not contact the GNU social API with the Path you entered."] = "No s'ha trobat una API de GNU Social a la ruta introduïda.";
App::$strings["GNU social settings updated."] = "S'ha actualitzat la configuració de GNU Social ";
App::$strings["Globally Available GNU social OAuthKeys"] = "Claus OAuth de GNU Social diponibles públicament";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br />If not feel free to connect to any other GNU social instance (see below)."] = "Hi ha disponibles preconfigurats alguns parells de clau OAuth per a alguns servidors de GNU Social. I en fas servir algun, fes servir aquestes credencials.<br />Altrament, pots connectar-te a qualsevol altra instància de GNU Social (mira més avall)";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br>If not feel free to connect to any other GNU social instance (see below)."] = "Hi ha disponibles preconfigurats alguns parells de clau OAuth per a alguns servidors de GNU Social. I en fas servir algun, fes servir aquestes credencials.<br>Altrament, pots connectar-te a qualsevol altra instància de GNU Social (mira més avall)";
App::$strings["Provide your own OAuth Credentials"] = "Proporciona credencials OAuth pròpies";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "No s'ha trobat cap parell de claus per a GNU Social. Registra el teu compte de Hubzilla com un client d'escriptori al teu compte de GNU Social, després copia el parell de claus de consumidor aquí i finalment introdueix l'adreça arrel de l'API.<br />Abans de registrar el teu propi parell de claus, pregunta a l'administració d'aquest hub si ja hi ha un parell de claus registrat per al mateix servidor de GNU Social.";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br>Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "No s'ha trobat cap parell de claus per a GNU Social. Registra el teu compte de Hubzilla com un client d'escriptori al teu compte de GNU Social, després copia el parell de claus de consumidor aquí i finalment introdueix l'adreça arrel de l'API.<br>Abans de registrar el teu propi parell de claus, pregunta a l'administració d'aquest hub si ja hi ha un parell de claus registrat per al mateix servidor de GNU Social.";
App::$strings["OAuth Consumer Key"] = "Clau de consumidor OAuth";
App::$strings["OAuth Consumer Secret"] = "Secret de consumidor OAuth";
App::$strings["Base API Path"] = "Ruta arrel de l'API";

View file

@ -3275,9 +3275,9 @@ msgstr "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolge
#: ../../Zotlabs/Module/Admin/Security.php:81
msgid ""
"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br"
" />https://vimeo.com/<br />https://soundcloud.com/<br />"
msgstr "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"
"https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br"
" />https://vimeo.com/<br>https://soundcloud.com/<br>"
msgstr "https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"
#: ../../Zotlabs/Module/Admin/Security.php:82
msgid ""
@ -10938,9 +10938,9 @@ msgstr "Bei GNU social veröffentlichen"
#: ../../addon/statusnet/statusnet.php:195
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"Please contact your site administrator.<br>The provided API URL is not "
"valid."
msgstr "Bitte kontaktiere den Administrator deines Hubs.<br />Die angegebene API URL ist nicht korrekt."
msgstr "Bitte kontaktiere den Administrator deines Hubs.<br>Die angegebene API URL ist nicht korrekt."
#: ../../addon/statusnet/statusnet.php:232
msgid "We could not contact the GNU social API with the Path you entered."
@ -10959,7 +10959,7 @@ msgid ""
"There are preconfigured OAuth key pairs for some GNU social servers "
"available. If you are using one of them, please use these credentials.<br "
"/>If not feel free to connect to any other GNU social instance (see below)."
msgstr "Für einige GNU social Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. <br />Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen GNU social Server her (siehe unten)."
msgstr "Für einige GNU social Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. <br>Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen GNU social Server her (siehe unten)."
#: ../../addon/statusnet/statusnet.php:327
msgid "Provide your own OAuth Credentials"
@ -10969,10 +10969,10 @@ msgstr "Stelle deine eigenen OAuth Credentials zur Verfügung"
msgid ""
"No consumer key pair for GNU social found. Register your Hubzilla Account as"
" an desktop client on your GNU social account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"here and enter the API base root.<br>Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Hubzilla installation at your favourite GNU social installation."
msgstr "Kein Consumer-Schlüsselpaar für GNU social gefunden. Registriere deinen Hubzilla-Account als Desktop-Client bei deinem GNU social Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.<br />Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Hubzilla-Servers, ob schon ein Schlüsselpaar für diesen Hubzilla-Server auf diesem GNU social-Server existiert."
msgstr "Kein Consumer-Schlüsselpaar für GNU social gefunden. Registriere deinen Hubzilla-Account als Desktop-Client bei deinem GNU social Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.<br>Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Hubzilla-Servers, ob schon ein Schlüsselpaar für diesen Hubzilla-Server auf diesem GNU social-Server existiert."
#: ../../addon/statusnet/statusnet.php:333
msgid "OAuth Consumer Key"
@ -13530,7 +13530,7 @@ msgstr "Nicht anzeigen"
msgid ""
"Post permissions %s cannot be changed %s after a post is shared.</br />These"
" permissions set who is allowed to view the post."
msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.<br />Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."
msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.<br>Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."
#: ../../include/dba/dba_driver.php:178
#, php-format

View file

@ -647,7 +647,7 @@ App::$strings["Account language (for emails)"] = "Kontosprache (für E-Mails)";
App::$strings["Service class"] = "Dienstklasse";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher.";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
App::$strings["https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"] = "https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "Alle anderen eingebetteten Inhalte werden gefiltert, <strong>es sei denn</strong>, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert.";
App::$strings["Security"] = "Sicherheit";
App::$strings["Block public"] = "Öffentlichen Zugriff blockieren";
@ -2412,13 +2412,13 @@ App::$strings["right"] = "rechts";
App::$strings["Enable Flattr widget"] = "Flattr Widget verwenden";
App::$strings["Flattr Widget Settings"] = "Flattr Widget Einstellungen";
App::$strings["Post to GNU social"] = "Bei GNU social veröffentlichen";
App::$strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Bitte kontaktiere den Administrator deines Hubs.<br />Die angegebene API URL ist nicht korrekt.";
App::$strings["Please contact your site administrator.<br>The provided API URL is not valid."] = "Bitte kontaktiere den Administrator deines Hubs.<br>Die angegebene API URL ist nicht korrekt.";
App::$strings["We could not contact the GNU social API with the Path you entered."] = "Mit dem angegebenen Pfad war es uns nicht möglich, die GNU social API zu erreichen.";
App::$strings["GNU social settings updated."] = "GNU social Einstellungen aktualisiert.";
App::$strings["Globally Available GNU social OAuthKeys"] = "Global verfügbare GNU social OAuthKeys";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br />If not feel free to connect to any other GNU social instance (see below)."] = "Für einige GNU social Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. <br />Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen GNU social Server her (siehe unten).";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br>If not feel free to connect to any other GNU social instance (see below)."] = "Für einige GNU social Server sind voreingestellte OAuth Schlüsselpaare verfügbar. Solltest du einen dieser Server benutzen, dann verwende bitte diese Schlüssel. <br>Falls nicht, stelle stattdessen eine Verbindung zu irgend einem anderen GNU social Server her (siehe unten).";
App::$strings["Provide your own OAuth Credentials"] = "Stelle deine eigenen OAuth Credentials zur Verfügung";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Kein Consumer-Schlüsselpaar für GNU social gefunden. Registriere deinen Hubzilla-Account als Desktop-Client bei deinem GNU social Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.<br />Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Hubzilla-Servers, ob schon ein Schlüsselpaar für diesen Hubzilla-Server auf diesem GNU social-Server existiert.";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br>Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Kein Consumer-Schlüsselpaar für GNU social gefunden. Registriere deinen Hubzilla-Account als Desktop-Client bei deinem GNU social Account, kopiere das Consumer-Schlüsselpaar hierher und gib die API-URL ein.<br>Bevor du dein eigenes Consumer-Schlüsselpaar registrierst, frage den Administrator dieses Hubzilla-Servers, ob schon ein Schlüsselpaar für diesen Hubzilla-Server auf diesem GNU social-Server existiert.";
App::$strings["OAuth Consumer Key"] = "OAuth Consumer Key";
App::$strings["OAuth Consumer Secret"] = "OAuth Consumer Secret";
App::$strings["Base API Path"] = "Basis Pfad der API";
@ -3051,7 +3051,7 @@ App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl";
App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen.";
App::$strings["Show"] = "Anzeigen";
App::$strings["Don't show"] = "Nicht anzeigen";
App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.<br />Diese Berechtigungen bestimmen, wer den Beitrag sehen kann.";
App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.<br>Diese Berechtigungen bestimmen, wer den Beitrag sehen kann.";
App::$strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden";
App::$strings["Image/photo"] = "Bild/Foto";
App::$strings["Encrypted content"] = "Verschlüsselter Inhalt";

View file

@ -2316,11 +2316,11 @@ msgstr ""
#: ../../Zotlabs/Module/Admin/Security.php:117
msgid ""
"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br"
" />https://vimeo.com/<br />https://soundcloud.com/<br />"
"https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br"
" />https://vimeo.com/<br>https://soundcloud.com/<br>"
msgstr ""
"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br"
" />https://vimeo.com/<br />https://soundcloud.com/<br />"
"https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br"
" />https://vimeo.com/<br>https://soundcloud.com/<br>"
#: ../../Zotlabs/Module/Admin/Security.php:118
msgid ""

View file

@ -462,7 +462,7 @@ App::$strings["Account language (for emails)"] = "Idioma de la cuenta (para los
App::$strings["Service class"] = "Clase de servicio";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro.";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: ";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
App::$strings["https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"] = "https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "El resto del contenido incrustado se filtrará, <strong>excepto</ strong> si el contenido incorporado desde ese sitio está bloqueado de forma explícita.";
App::$strings["Security"] = "Seguridad";
App::$strings["Block public"] = "Bloquear páginas públicas";

View file

@ -3262,9 +3262,9 @@ msgstr "Ce paramétrage autorisant le HTML pour les sites suivants."
#: ../../Zotlabs/Module/Admin/Security.php:81
msgid ""
"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br"
" />https://vimeo.com/<br />https://soundcloud.com/<br />"
msgstr "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"
"https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br"
" />https://vimeo.com/<br>https://soundcloud.com/<br>"
msgstr "https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"
#: ../../Zotlabs/Module/Admin/Security.php:82
msgid ""
@ -10925,7 +10925,7 @@ msgstr "Publier sur GNU-social"
#: ../../addon/statusnet/statusnet.php:195
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"Please contact your site administrator.<br>The provided API URL is not "
"valid."
msgstr "Veuillez contacter l'administrateur de votre site. L'URL de l'API n'est pas valide."
@ -10956,7 +10956,7 @@ msgstr "Fournissez vos propres informations d'identification OAuth"
msgid ""
"No consumer key pair for GNU social found. Register your Hubzilla Account as"
" an desktop client on your GNU social account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"here and enter the API base root.<br>Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Hubzilla installation at your favourite GNU social installation."
msgstr "Aucune paire de clés utilisateur n'a été trouvée pour GNU-social. Enregistrer votre compte Hubzilla en tant que client de bureau sur votre compte GNU-social, puis copier la paire de clés utilisateur ici et entrer la racine de base de l'API.\nAvant d'enregistrer votre propre paire de clés OAuth, demandez à l'administrateur s'il existe déjà une paire de clés pour cette installation de Hubzilla à votre installation GNU-social préférée."

View file

@ -647,7 +647,7 @@ App::$strings["Account language (for emails)"] = "Langue de votre compte (pour e
App::$strings["Service class"] = "Classe de service";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Par défaut le code HTML est autorisé pour les média par exemple les vidéos embarquées. Cependant cela peut poser un faille de sécurité.";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Ce paramétrage autorisant le HTML pour les sites suivants.";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
App::$strings["https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"] = "https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "Les contenus html seront filtrés <strong>sauf</strong> ceux des sites explicitement bloqués.";
App::$strings["Security"] = "Sécurité";
App::$strings["Block public"] = "Bloquer \"public\"";
@ -2412,13 +2412,13 @@ App::$strings["right"] = "droite";
App::$strings["Enable Flattr widget"] = "Activer le widget Flattr";
App::$strings["Flattr Widget Settings"] = "Paramètres du widget Flattr";
App::$strings["Post to GNU social"] = "Publier sur GNU-social";
App::$strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Veuillez contacter l'administrateur de votre site. L'URL de l'API n'est pas valide.";
App::$strings["Please contact your site administrator.<br>The provided API URL is not valid."] = "Veuillez contacter l'administrateur de votre site. L'URL de l'API n'est pas valide.";
App::$strings["We could not contact the GNU social API with the Path you entered."] = "Nous ne pouvons pas contacter l'API de GNU-social avec le chemin que vous avez entré.";
App::$strings["GNU social settings updated."] = "Les paramètres GNU-social ont été mis à jour.";
App::$strings["Globally Available GNU social OAuthKeys"] = "Les OAuthKeys GNU-social sont globalement disponibles.";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br />If not feel free to connect to any other GNU social instance (see below)."] = "Il existe des paires de clés OAuth préconfigurées pour certains serveurs GNU-social disponibles. Si vous utilisez l'un d'eux, utilisez ces informations d'identification.\nSi vous ne voulez pas vous connecter à une autre instance GNU social (voir ci-dessous).";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br>If not feel free to connect to any other GNU social instance (see below)."] = "Il existe des paires de clés OAuth préconfigurées pour certains serveurs GNU-social disponibles. Si vous utilisez l'un d'eux, utilisez ces informations d'identification.\nSi vous ne voulez pas vous connecter à une autre instance GNU social (voir ci-dessous).";
App::$strings["Provide your own OAuth Credentials"] = "Fournissez vos propres informations d'identification OAuth";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Aucune paire de clés utilisateur n'a été trouvée pour GNU-social. Enregistrer votre compte Hubzilla en tant que client de bureau sur votre compte GNU-social, puis copier la paire de clés utilisateur ici et entrer la racine de base de l'API.\nAvant d'enregistrer votre propre paire de clés OAuth, demandez à l'administrateur s'il existe déjà une paire de clés pour cette installation de Hubzilla à votre installation GNU-social préférée.";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br>Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Aucune paire de clés utilisateur n'a été trouvée pour GNU-social. Enregistrer votre compte Hubzilla en tant que client de bureau sur votre compte GNU-social, puis copier la paire de clés utilisateur ici et entrer la racine de base de l'API.\nAvant d'enregistrer votre propre paire de clés OAuth, demandez à l'administrateur s'il existe déjà une paire de clés pour cette installation de Hubzilla à votre installation GNU-social préférée.";
App::$strings["OAuth Consumer Key"] = "Clé d'utilisateur OAuth";
App::$strings["OAuth Consumer Secret"] = "Secret d'utilisateur OAuth";
App::$strings["Base API Path"] = "Chemin de l'API de base";

View file

@ -4047,8 +4047,8 @@ msgstr ""
#: ../../Zotlabs/Module/Admin.php:750
msgid ""
"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br"
" />https://vimeo.com/<br />https://soundcloud.com/<br />"
"https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br"
" />https://vimeo.com/<br>https://soundcloud.com/<br>"
msgstr ""
#: ../../Zotlabs/Module/Admin.php:751

View file

@ -891,7 +891,7 @@ App::$strings["on server"] = "בשרת";
App::$strings["Server"] = "שרת";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "";
App::$strings["https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"] = "";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "";
App::$strings["Security"] = "אבטחה";
App::$strings["Block public"] = "";

View file

@ -3248,9 +3248,9 @@ msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai s
#: ../../Zotlabs/Module/Admin/Security.php:81
msgid ""
"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br"
" />https://vimeo.com/<br />https://soundcloud.com/<br />"
msgstr "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"
"https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br"
" />https://vimeo.com/<br>https://soundcloud.com/<br>"
msgstr "https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"
#: ../../Zotlabs/Module/Admin/Security.php:82
msgid ""
@ -10626,7 +10626,7 @@ msgstr ""
#: ../../addon/statusnet/statusnet.php:195
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"Please contact your site administrator.<br>The provided API URL is not "
"valid."
msgstr ""
@ -10657,7 +10657,7 @@ msgstr ""
msgid ""
"No consumer key pair for GNU social found. Register your Hubzilla Account as"
" an desktop client on your GNU social account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"here and enter the API base root.<br>Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Hubzilla installation at your favourite GNU social installation."
msgstr ""

View file

@ -646,7 +646,7 @@ App::$strings["Account language (for emails)"] = "Lingua (per le email di sistem
App::$strings["Service class"] = "Classe dell'account";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura.";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
App::$strings["https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"] = "https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "Tutti gli altri contenuti incorporati saranno filtrati <strong>a meno che</strong> il contenuto incorporato di quel sito non sia esplicitamente bloccato.";
App::$strings["Security"] = "Sicurezza";
App::$strings["Block public"] = "Blocca pagine pubbliche";
@ -2346,13 +2346,13 @@ App::$strings["right"] = "";
App::$strings["Enable Flattr widget"] = "";
App::$strings["Flattr Widget Settings"] = "";
App::$strings["Post to GNU social"] = "";
App::$strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "";
App::$strings["Please contact your site administrator.<br>The provided API URL is not valid."] = "";
App::$strings["We could not contact the GNU social API with the Path you entered."] = "";
App::$strings["GNU social settings updated."] = "";
App::$strings["Globally Available GNU social OAuthKeys"] = "";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br />If not feel free to connect to any other GNU social instance (see below)."] = "";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br>If not feel free to connect to any other GNU social instance (see below)."] = "";
App::$strings["Provide your own OAuth Credentials"] = "";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br>Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "";
App::$strings["OAuth Consumer Key"] = "";
App::$strings["OAuth Consumer Secret"] = "";
App::$strings["Base API Path"] = "";

View file

@ -1581,7 +1581,7 @@ function b2h(s) {
rep(/\>/gi,"&gt;");
rep(/\"/gi,"&quot;");
rep(/\n/gi,"<br />");
rep(/\n/gi,"<br>");
rep(/\[b\]/gi,"<strong>");
rep(/\[\/b\]/gi,"</strong>");
rep(/\[i\]/gi,"<em>");

View file

@ -23,7 +23,7 @@ function doRatings(hash) {
}
function buildRatingForm(hash) {
var html = '<form id="ratings_form" action="prate" method="post"><input type="hidden" name="target" value="'+hash+'" /><div class="rating-desc">' + aStr.rating_desc + '</div><input id="dir-rating-range" class="directory-slider" type="text" value="' + ratingVal + '" name="rating" style="display: none;" /><div class="rating-text-label">' + aStr.rating_text + '<input type="text" name="rating_text" class="directory-rating-text" value="' + ratingText + '" /><br /><input name="submit" class="directory-rating-submit" type="submit" value="' + aStr.submit + '" onclick="postRatings(); return false;"></form><div class="clear"></div><script>$("#dir-rating-range").jRange({ from: -10, to: 10, step: 1, showLabels: false, showScale: true, scale: [ "-10","-5","0","5","10" ], onstatechange: function(v) { $("#dir-rating-range").val(v); } });</script>';
var html = '<form id="ratings_form" action="prate" method="post"><input type="hidden" name="target" value="'+hash+'" /><div class="rating-desc">' + aStr.rating_desc + '</div><input id="dir-rating-range" class="directory-slider" type="text" value="' + ratingVal + '" name="rating" style="display: none;" /><div class="rating-text-label">' + aStr.rating_text + '<input type="text" name="rating_text" class="directory-rating-text" value="' + ratingText + '" /><br><input name="submit" class="directory-rating-submit" type="submit" value="' + aStr.submit + '" onclick="postRatings(); return false;"></form><div class="clear"></div><script>$("#dir-rating-range").jRange({ from: -10, to: 10, step: 1, showLabels: false, showScale: true, scale: [ "-10","-5","0","5","10" ], onstatechange: function(v) { $("#dir-rating-range").val(v); } });</script>';
$.colorbox({maxwidth: "50%", maxHeight: "50%", scrolling: false, html: html, close: 'X' });
currentHash = hash;

View file

@ -4041,8 +4041,8 @@ msgstr ""
#: ../../Zotlabs/Module/Admin.php:750
msgid ""
"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br"
" />https://vimeo.com/<br />https://soundcloud.com/<br />"
"https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br"
" />https://vimeo.com/<br>https://soundcloud.com/<br>"
msgstr ""
#: ../../Zotlabs/Module/Admin.php:751

View file

@ -891,7 +891,7 @@ App::$strings["on server"] = "på tjener";
App::$strings["Server"] = "Tjener";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "";
App::$strings["https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"] = "";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "";
App::$strings["Security"] = "Sikkerhet";
App::$strings["Block public"] = "Blokker offentlig tilgang";

View file

@ -3258,9 +3258,9 @@ msgstr "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende website
#: ../../Zotlabs/Module/Admin/Security.php:81
msgid ""
"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br"
" />https://vimeo.com/<br />https://soundcloud.com/<br />"
msgstr "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"
"https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br"
" />https://vimeo.com/<br>https://soundcloud.com/<br>"
msgstr "https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"
#: ../../Zotlabs/Module/Admin/Security.php:82
msgid ""
@ -10921,9 +10921,9 @@ msgstr "GNU social"
#: ../../addon/statusnet/statusnet.php:195
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"Please contact your site administrator.<br>The provided API URL is not "
"valid."
msgstr "De verstrekte API-URL is ongeldig.<br />Neem contact op met jouw hubbeheerder."
msgstr "De verstrekte API-URL is ongeldig.<br>Neem contact op met jouw hubbeheerder."
#: ../../addon/statusnet/statusnet.php:232
msgid "We could not contact the GNU social API with the Path you entered."
@ -10942,7 +10942,7 @@ msgid ""
"There are preconfigured OAuth key pairs for some GNU social servers "
"available. If you are using one of them, please use these credentials.<br "
"/>If not feel free to connect to any other GNU social instance (see below)."
msgstr "Er zijn op deze hub enkele voorgeconfigureerde OAuthkey-paren voor GNU social servers beschikbaar. Wanneer je een van deze servers gebruikt, gebruik dan deze voorgeconfigureerde gegevens.<br />Wanneer dit niet het geval is, maak dan gerust met een andere GNU social-server verbinding (zie hieronder)."
msgstr "Er zijn op deze hub enkele voorgeconfigureerde OAuthkey-paren voor GNU social servers beschikbaar. Wanneer je een van deze servers gebruikt, gebruik dan deze voorgeconfigureerde gegevens.<br>Wanneer dit niet het geval is, maak dan gerust met een andere GNU social-server verbinding (zie hieronder)."
#: ../../addon/statusnet/statusnet.php:327
msgid "Provide your own OAuth Credentials"
@ -10952,10 +10952,10 @@ msgstr "Verstrek jouw eigen OAuth-gegevens"
msgid ""
"No consumer key pair for GNU social found. Register your Hubzilla Account as"
" an desktop client on your GNU social account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"here and enter the API base root.<br>Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Hubzilla installation at your favourite GNU social installation."
msgstr "Geen consumerkey voor GNU social gevonden. Registreer jouw Hubzilla-account als een desktopclient in jouw GNU-social-account, kopieer en plak hier de consumerkey en de consumersecret, en vul de API-base-root in.<br />Voordat je jouw eigen OAuthkey-paar registreert, vraag dan eerst aan jouw hubbeheerder of er al een key-paar voor deze hub op jouw favoriete GNU social-server bestaat."
msgstr "Geen consumerkey voor GNU social gevonden. Registreer jouw Hubzilla-account als een desktopclient in jouw GNU-social-account, kopieer en plak hier de consumerkey en de consumersecret, en vul de API-base-root in.<br>Voordat je jouw eigen OAuthkey-paar registreert, vraag dan eerst aan jouw hubbeheerder of er al een key-paar voor deze hub op jouw favoriete GNU social-server bestaat."
#: ../../addon/statusnet/statusnet.php:333
msgid "OAuth Consumer Key"

View file

@ -647,7 +647,7 @@ App::$strings["Account language (for emails)"] = "Taal van account (voor e-mails
App::$strings["Service class"] = "Abonnement";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig.";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />";
App::$strings["https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"] = "https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "Alle andere ingesloten (embedded) inhoud wordt gefilterd, <strong>tenzij</strong> ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd.";
App::$strings["Security"] = "Beveiliging";
App::$strings["Block public"] = "Openbare toegang blokkeren";
@ -2412,13 +2412,13 @@ App::$strings["right"] = "rechts";
App::$strings["Enable Flattr widget"] = "Flattrwidget inschakelen";
App::$strings["Flattr Widget Settings"] = "Flattrwidget";
App::$strings["Post to GNU social"] = "GNU social";
App::$strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "De verstrekte API-URL is ongeldig.<br />Neem contact op met jouw hubbeheerder.";
App::$strings["Please contact your site administrator.<br>The provided API URL is not valid."] = "De verstrekte API-URL is ongeldig.<br>Neem contact op met jouw hubbeheerder.";
App::$strings["We could not contact the GNU social API with the Path you entered."] = "Wij konden de GNU social-API niet bereiken door middel van het ingevulde pad.";
App::$strings["GNU social settings updated."] = "GNU social-instellingen bijgewerkt.";
App::$strings["Globally Available GNU social OAuthKeys"] = "Op de gehele hub te gebruiken GNU social OAuthkeys.";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br />If not feel free to connect to any other GNU social instance (see below)."] = "Er zijn op deze hub enkele voorgeconfigureerde OAuthkey-paren voor GNU social servers beschikbaar. Wanneer je een van deze servers gebruikt, gebruik dan deze voorgeconfigureerde gegevens.<br />Wanneer dit niet het geval is, maak dan gerust met een andere GNU social-server verbinding (zie hieronder).";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br>If not feel free to connect to any other GNU social instance (see below)."] = "Er zijn op deze hub enkele voorgeconfigureerde OAuthkey-paren voor GNU social servers beschikbaar. Wanneer je een van deze servers gebruikt, gebruik dan deze voorgeconfigureerde gegevens.<br>Wanneer dit niet het geval is, maak dan gerust met een andere GNU social-server verbinding (zie hieronder).";
App::$strings["Provide your own OAuth Credentials"] = "Verstrek jouw eigen OAuth-gegevens";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Geen consumerkey voor GNU social gevonden. Registreer jouw Hubzilla-account als een desktopclient in jouw GNU-social-account, kopieer en plak hier de consumerkey en de consumersecret, en vul de API-base-root in.<br />Voordat je jouw eigen OAuthkey-paar registreert, vraag dan eerst aan jouw hubbeheerder of er al een key-paar voor deze hub op jouw favoriete GNU social-server bestaat.";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br>Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Geen consumerkey voor GNU social gevonden. Registreer jouw Hubzilla-account als een desktopclient in jouw GNU-social-account, kopieer en plak hier de consumerkey en de consumersecret, en vul de API-base-root in.<br>Voordat je jouw eigen OAuthkey-paar registreert, vraag dan eerst aan jouw hubbeheerder of er al een key-paar voor deze hub op jouw favoriete GNU social-server bestaat.";
App::$strings["OAuth Consumer Key"] = "OAuth-consumerkey";
App::$strings["OAuth Consumer Secret"] = "Oauth-consumersecret";
App::$strings["Base API Path"] = "Basispad API";

View file

@ -2359,9 +2359,9 @@ msgstr "Опубликовать в GNU Social"
#: ../../extend/addon/hzaddons/statusnet/statusnet.php:195
msgid ""
"Please contact your site administrator.<br />The provided API URL is not "
"Please contact your site administrator.<br>The provided API URL is not "
"valid."
msgstr "Пожалуйста свяжитесь с администратором сайта. <br />Предоставленный URL API недействителен."
msgstr "Пожалуйста свяжитесь с администратором сайта. <br>Предоставленный URL API недействителен."
#: ../../extend/addon/hzaddons/statusnet/statusnet.php:232
msgid "We could not contact the GNU social API with the Path you entered."
@ -2380,7 +2380,7 @@ msgid ""
"There are preconfigured OAuth key pairs for some GNU social servers "
"available. If you are using one of them, please use these credentials.<br /"
">If not feel free to connect to any other GNU social instance (see below)."
msgstr "Существуют предварительно настроенные пары ключей OAuth для некоторых доступных серверов GNU social. Если вы используете один из них, используйте эти учетные данные. <br />Если вы не хотите подключаться к какому-либо другому серверу GNU social (см. ниже)."
msgstr "Существуют предварительно настроенные пары ключей OAuth для некоторых доступных серверов GNU social. Если вы используете один из них, используйте эти учетные данные. <br>Если вы не хотите подключаться к какому-либо другому серверу GNU social (см. ниже)."
#: ../../extend/addon/hzaddons/statusnet/statusnet.php:327
msgid "Provide your own OAuth Credentials"
@ -2390,10 +2390,10 @@ msgstr "Предоставьте ваши собственные регистр
msgid ""
"No consumer key pair for GNU social found. Register your Hubzilla Account as "
"an desktop client on your GNU social account, copy the consumer key pair "
"here and enter the API base root.<br />Before you register your own OAuth "
"here and enter the API base root.<br>Before you register your own OAuth "
"key pair ask the administrator if there is already a key pair for this "
"Hubzilla installation at your favourite GNU social installation."
msgstr "Не найдена пользовательская пара ключей для GNU social. Зарегистрируйте свою учетную запись Hubzilla в качестве настольного клиента в своей учетной записи GNU social, скопируйте cюда пару ключей пользователя и введите корневой каталог базы API. <br />Прежде чем регистрировать свою собственную пару ключей OAuth, спросите администратора, если ли уже пара ключей для этой установки Hubzilla в вашем GNU social."
msgstr "Не найдена пользовательская пара ключей для GNU social. Зарегистрируйте свою учетную запись Hubzilla в качестве настольного клиента в своей учетной записи GNU social, скопируйте cюда пару ключей пользователя и введите корневой каталог базы API. <br>Прежде чем регистрировать свою собственную пару ключей OAuth, спросите администратора, если ли уже пара ключей для этой установки Hubzilla в вашем GNU social."
#: ../../extend/addon/hzaddons/statusnet/statusnet.php:333
msgid "OAuth Consumer Key"
@ -12007,8 +12007,8 @@ msgstr "Рекомендуется настроить разрешения ис
#: ../../Zotlabs/Module/Admin/Security.php:87
msgid ""
"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/"
"<br />https://vimeo.com/<br />https://soundcloud.com/<br />"
"https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/"
"<br>https://vimeo.com/<br>https://soundcloud.com/<br>"
msgstr ""
#: ../../Zotlabs/Module/Admin/Security.php:88

View file

@ -449,13 +449,13 @@ App::$strings["Friendica login name"] = "Имя входа Friendica";
App::$strings["Friendica password"] = "Пароль Friendica";
App::$strings["Hubzilla to Friendica Post Settings"] = "Настройки публикаций Hubzilla для Friendica";
App::$strings["Post to GNU social"] = "Опубликовать в GNU Social";
App::$strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "Пожалуйста свяжитесь с администратором сайта. <br />Предоставленный URL API недействителен.";
App::$strings["Please contact your site administrator.<br>The provided API URL is not valid."] = "Пожалуйста свяжитесь с администратором сайта. <br>Предоставленный URL API недействителен.";
App::$strings["We could not contact the GNU social API with the Path you entered."] = "Нам не удалось установить контакт с GNU Social API по введённому вами пути";
App::$strings["GNU social settings updated."] = "Настройки GNU Social обновлены.";
App::$strings["Globally Available GNU social OAuthKeys"] = "Глобально доступные ключи OAuthKeys GNU Social";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br />If not feel free to connect to any other GNU social instance (see below)."] = "Существуют предварительно настроенные пары ключей OAuth для некоторых доступных серверов GNU social. Если вы используете один из них, используйте эти учетные данные. <br />Если вы не хотите подключаться к какому-либо другому серверу GNU social (см. ниже).";
App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.<br>If not feel free to connect to any other GNU social instance (see below)."] = "Существуют предварительно настроенные пары ключей OAuth для некоторых доступных серверов GNU social. Если вы используете один из них, используйте эти учетные данные. <br>Если вы не хотите подключаться к какому-либо другому серверу GNU social (см. ниже).";
App::$strings["Provide your own OAuth Credentials"] = "Предоставьте ваши собственные регистрационные данные OAuth";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br />Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Не найдена пользовательская пара ключей для GNU social. Зарегистрируйте свою учетную запись Hubzilla в качестве настольного клиента в своей учетной записи GNU social, скопируйте cюда пару ключей пользователя и введите корневой каталог базы API. <br />Прежде чем регистрировать свою собственную пару ключей OAuth, спросите администратора, если ли уже пара ключей для этой установки Hubzilla в вашем GNU social.";
App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.<br>Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = "Не найдена пользовательская пара ключей для GNU social. Зарегистрируйте свою учетную запись Hubzilla в качестве настольного клиента в своей учетной записи GNU social, скопируйте cюда пару ключей пользователя и введите корневой каталог базы API. <br>Прежде чем регистрировать свою собственную пару ключей OAuth, спросите администратора, если ли уже пара ключей для этой установки Hubzilla в вашем GNU social.";
App::$strings["OAuth Consumer Key"] = "Ключ клиента OAuth";
App::$strings["OAuth Consumer Secret"] = "Пароль клиента OAuth";
App::$strings["Base API Path"] = "Основной путь к API";
@ -2699,7 +2699,7 @@ App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts
App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Этот аккаунт {0} будет удалён!\n\nВсё что им было опубликовано на этом сайте будет удалено навсегда!\n\nВы уверены?";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "По умолчанию, HTML без фильтрации доступен во встраиваемых медиа. Это небезопасно.";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Рекомендуется настроить разрешения использовать HTML без фильтрации только для следующих сайтов:";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "";
App::$strings["https://youtube.com/<br>https://www.youtube.com/<br>https://youtu.be/<br>https://vimeo.com/<br>https://soundcloud.com/<br>"] = "";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "се остальные встроенные материалы будут отфильтрованы, <strong>если </strong> встроенное содержимое с этого сайта явно заблокировано.";
App::$strings["Block public"] = "Блокировать публичный доступ";
App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Установите флажок для блокировки публичного доступа ко всем другим общедоступным страницам на этом сайте, если вы в настоящее время не аутентифицированы.";

View file

@ -6,7 +6,7 @@
<div class="section-content-tools-wrapper">
<div class="section-content-info-wrapper">{{$all_desc}}
<br /><br />
<br><br>
{{$all}}
</div>
@ -22,9 +22,9 @@
{{if $cust_fields}}
<br /><br />
<br><br>
<div><strong>{{$cust_field_desc}}</strong></div>
<br />
<br>
<table width="100%">
{{foreach $cust_fields as $field}}

View file

@ -108,15 +108,15 @@
<!--label id="profile-photo-upload-label" class="form-label" for="profile-photo-upload">{{$lbl_upfile}}</label>
<input name="userfile" class="form-input" type="file" id="profile-photo-upload" size="48" / -->
<div class="clear"></div>
<br />
<br />
<br>
<br>
<div id="profile-photo-submit-wrapper">
<input type="submit" name="submit" id="profile-photo-submit" value="{{$submit}}">
</div>
</div>
</form>
<br />
<br>
<div id="profile-photo-link-select-wrapper">
<button id="embed-photo-wrapper" class="btn btn-default btn-primary" title="{{$embedPhotos}}" onclick="initializeEmbedPhotoDialog();return false;">
<i id="embed-photo" class="fa fa-file-image-o"></i> {{$select}}

View file

@ -1,6 +1,6 @@
<div class="generic-content-wrapper-styled">
<h1>{{$title}}</h1>
<br />
<br>
<div id="language-selector" >
<form action="#" method="post" >
<select name="system_language" onchange="this.form.submit();" >

View file

@ -7,13 +7,13 @@
<div id="mood-desc">{{$desc}}</div>
<br />
<br />
<br>
<br>
<form action="mood" method="get">
<br />
<br />
<br>
<br>
<input id="mood-parent" type="hidden" value="{{$parent}}" name="parent" />
@ -24,8 +24,8 @@
{{/foreach}}
</select>
</div>
<br />
<br />
<br>
<br>
<input type="submit" name="submit" value="{{$submit}}" />
</form>

View file

@ -3,24 +3,24 @@
<h2>{{$mname}} {{$module}}</h2>
<br />
<br>
<a href="help/comanche" target="hubzilla-help">{{$help}}</a>
<br>
<br>
<a href="pdledit">{{$another}}</a>
<br />
<br />
<br>
<br>
<div class="descriptive-text">{{$original}}</div>
<pre><code>{{$src}}</code></pre>
<br />
<br>
<form action="pdledit" method="post" >
<input type="hidden" name="module" value="{{$module}}" />
<textarea rows="24" cols="80" name="content">{{$content}}</textarea>
<br />
<br>
<input type="submit" name="submit" value="{{$submit}}" />
</form>

View file

@ -7,8 +7,8 @@
<div id="poke-desc">{{$desc}}</div>
<br />
<br />
<br>
<br>
<form action="poke" method="get">

View file

@ -318,7 +318,7 @@
{{foreach $items as $item}}
<li>{{if $item.img}}<a href="{{$item.url}}" ><img src="{{$item.img}}" class="profile-thing-img" width="100" height="100" alt="{{$item.term}}" /></a>{{/if}}
<a href="{{$item.editurl}}" >{{$item.term}}</a>
{{if $profile.canlike}}<br />
{{if $profile.canlike}}<br>
<button type="button" class="btn btn-outline-secondary btn-sm" onclick="doprofilelike('thing/' + '{{$item.term_hash}}','like'); return false;" title="{{$likethis}}" >
<i class="fa fa-thumbs-o-up" title="{{$likethis}}"></i>
</button>

View file

@ -131,8 +131,8 @@
{{/foreach}}
</select>
<div class="clear"></div>
<br />
<br />
<br>
<br>
{{/if}}
<div id="profile-photo-submit-wrapper">
@ -141,7 +141,7 @@
</div>
</form>
<br />
<br>
<div id="profile-photo-link-select-wrapper">
<button id="embed-photo-wrapper" class="btn btn-default btn-primary" title="{{$embedPhotos}}" onclick="initializeEmbedPhotoDialog();return false;">
<i id="embed-photo" class="fa fa-file-image-o"></i> {{$select}}

View file

@ -13,7 +13,7 @@
<input type="hidden" name="target" value="{{$target}}" />
<input id="contact-rating-mirror" type="hidden" name="rating" value="{{$rating_val}}" />
<br />
<br>
<h3 class="abook-rating-text-desc">{{$lbl_rating_txt}}</h3>
<textarea name="rating_text" id="rating-text" >{{$rating_txt}}</textarea>

View file

@ -54,7 +54,7 @@
<button class="btn btn-primary" type="submit" name="submit" id="newchannel-submit-button" value="{{$submit}}">{{$submit}}</button>
<div id="register-submit-end" class="register-field-end"></div>
</form>
<br />
<br>
<div class="descriptive-text">{{$verify_note}}</div>
</div>

View file

@ -15,8 +15,8 @@
<input type="submit" name="submit" class="sources-submit" value="{{$submit}}" />
</div>
</form>
<br />
<br />
<br>
<br>
<a href="sources/{{$id}}/drop">{{$drop}}</a>
</div>