5147 Typo 'bandwith' should be 'bandwidth'

This commit is contained in:
Pascal Deklerck 2018-05-30 08:50:29 +02:00
parent 26927accb1
commit e1dd1aa358
28 changed files with 46 additions and 46 deletions

View File

@ -1442,7 +1442,7 @@ function admin_page_site(App $a)
'$max_comments' => ['max_comments', L10n::t("Maximum numbers of comments per post"), Config::get('system','max_comments'), L10n::t("How much comments should be shown for each post? Default value is 100.")],
'$temppath' => ['temppath', L10n::t("Temp path"), Config::get('system','temppath'), L10n::t("If you have a restricted system where the webserver can't access the system temp path, enter another path here.")],
'$basepath' => ['basepath', L10n::t("Base path to installation"), Config::get('system','basepath'), L10n::t("If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot.")],
'$proxy_disabled' => ['proxy_disabled', L10n::t("Disable picture proxy"), Config::get('system','proxy_disabled'), L10n::t("The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith.")],
'$proxy_disabled' => ['proxy_disabled', L10n::t("Disable picture proxy"), Config::get('system','proxy_disabled'), L10n::t("The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth.")],
'$only_tag_search' => ['only_tag_search', L10n::t("Only search in tags"), Config::get('system','only_tag_search'), L10n::t("On large systems the text search can slow down the system extremely.")],
'$relocate_url' => ['relocate_url', L10n::t("New base url"), System::baseUrl(), L10n::t("Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users.")],

View File

@ -966,7 +966,7 @@ function settings_content(App $a)
'$noinfo' => ['noinfo', L10n::t("Don't show notices"), $noinfo, ''],
'$infinite_scroll' => ['infinite_scroll', L10n::t("Infinite scroll"), $infinite_scroll, ''],
'$no_auto_update' => ['no_auto_update', L10n::t("Automatic updates only at the top of the network page"), $no_auto_update, L10n::t('When disabled, the network page is updated all the time, which could be confusing while reading.')],
'$bandwidth_saver' => ['bandwidth_saver', L10n::t('Bandwith Saver Mode'), $bandwidth_saver, L10n::t('When enabled, embedded content is not displayed on automatic updates, they only show on page reload.')],
'$bandwidth_saver' => ['bandwidth_saver', L10n::t('Bandwidth Saver Mode'), $bandwidth_saver, L10n::t('When enabled, embedded content is not displayed on automatic updates, they only show on page reload.')],
'$smart_threading' => ['smart_threading', L10n::t('Smart Threading'), $smart_threading, L10n::t('When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled.')],
'$d_tset' => L10n::t('General Theme Settings'),

View File

@ -23,7 +23,7 @@ function update_community_content(App $a) {
$replace = "<img\${1} dst=\"\${2}\"";
$text = preg_replace($pattern, $replace, $text);
if (PConfig::get(local_user(), "system", "bandwith_saver")) {
if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
$replace = "<br />".L10n::t("[Embedded content - reload page to view]")."<br />";
$pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
$text = preg_replace($pattern, $replace, $text);

View File

@ -23,7 +23,7 @@ function update_display_content(App $a)
$replace = "<img\${1} dst=\"\${2}\"";
$text = preg_replace($pattern, $replace, $text);
if (PConfig::get(local_user(), "system", "bandwith_saver")) {
if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
$replace = "<br />" . L10n::t("[Embedded content - reload page to view]") . "<br />";
$pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
$text = preg_replace($pattern, $replace, $text);

View File

@ -29,7 +29,7 @@ function update_network_content(App $a)
$replace = "<img\${1} dst=\"\${2}\"";
$text = preg_replace($pattern, $replace, $text);
if (PConfig::get(local_user(), "system", "bandwith_saver")) {
if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
$replace = "<br />" . L10n::t("[Embedded content - reload page to view]") . "<br />";
$pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
$text = preg_replace($pattern, $replace, $text);

View File

@ -36,7 +36,7 @@ function update_notes_content(App $a) {
$replace = "<img\${1} dst=\"\${2}\"";
$text = preg_replace($pattern, $replace, $text);
if (PConfig::get(local_user(), "system", "bandwith_saver")) {
if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
$replace = "<br />".L10n::t("[Embedded content - reload page to view]")."<br />";
$pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
$text = preg_replace($pattern, $replace, $text);

View File

@ -35,7 +35,7 @@ function update_profile_content(App $a) {
$replace = "<img\${1} dst=\"\${2}\"";
$text = preg_replace($pattern, $replace, $text);
if (PConfig::get(local_user(), "system", "bandwith_saver")) {
if (PConfig::get(local_user(), "system", "bandwidth_saver")) {
$replace = "<br />".L10n::t("[Embedded content - reload page to view]")."<br />";
$pattern = "/<\s*audio[^>]*>(.*?)<\s*\/\s*audio>/i";
$text = preg_replace($pattern, $replace, $text);

View File

@ -526,7 +526,7 @@ $a->strings["Path for lock file"] = "";
$a->strings["Temp path"] = "";
$a->strings["Base path to installation"] = "";
$a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
$a->strings["New base url"] = "";
$a->strings["Disable noscrape"] = "";
$a->strings["The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping. Disabling it will cause higher load on your server and the directory server."] = "";

View File

@ -1348,7 +1348,7 @@ $a->strings["Beginning of week:"] = "";
$a->strings["Don't show notices"] = "";
$a->strings["Infinite scroll"] = "";
$a->strings["Automatic updates only at the top of the network page"] = "";
$a->strings["Bandwith Saver Mode"] = "";
$a->strings["Bandwidth Saver Mode"] = "";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
$a->strings["General Theme Settings"] = "";
$a->strings["Custom Theme Settings"] = "";
@ -1652,7 +1652,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
$a->strings["Enable old style pager"] = "";
$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
$a->strings["Only search in tags"] = "";

View File

@ -1348,7 +1348,7 @@ $a->strings["Beginning of week:"] = "";
$a->strings["Don't show notices"] = "";
$a->strings["Infinite scroll"] = "";
$a->strings["Automatic updates only at the top of the network page"] = "";
$a->strings["Bandwith Saver Mode"] = "";
$a->strings["Bandwidth Saver Mode"] = "";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
$a->strings["General Theme Settings"] = "";
$a->strings["Custom Theme Settings"] = "";
@ -1652,7 +1652,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Trajectoria base per a instal·lar";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
$a->strings["Enable old style pager"] = "";
$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
$a->strings["Only search in tags"] = "";

View File

@ -1361,7 +1361,7 @@ $a->strings["Beginning of week:"] = "";
$a->strings["Don't show notices"] = "Nezobrazovat oznámění";
$a->strings["Infinite scroll"] = "Nekonečné posouvání";
$a->strings["Automatic updates only at the top of the network page"] = "Automatické aktualizace pouze na hlavní stránce Síť.";
$a->strings["Bandwith Saver Mode"] = "";
$a->strings["Bandwidth Saver Mode"] = "";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
$a->strings["General Theme Settings"] = "";
$a->strings["Custom Theme Settings"] = "";
@ -1665,7 +1665,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Základní cesta k instalaci";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = "Vypnutí obrázkové proxy";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Obrázková proxi zvyšuje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti.";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "Obrázková proxi zvyšuje výkonnost a soukromí. Neměla by být použita na systémech s pomalým připojením k síti.";
$a->strings["Enable old style pager"] = "Aktivovat \"old style\" stránkování ";
$a->strings["The old style pager has page numbers but slows down massively the page speed."] = " \"old style\" stránkování zobrazuje čísla stránek ale značně zpomaluje rychlost stránky.";
$a->strings["Only search in tags"] = "Hledat pouze ve štítkách";

View File

@ -1164,7 +1164,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Basis-Pfad zur Installation";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Falls das System nicht den korrekten Pfad zu deiner Installation gefunden hat, gib den richtigen Pfad bitte hier ein. Du solltest hier den Pfad nur auf einem eingeschränkten System angeben müssen, bei dem du mit symbolischen Links auf dein Webverzeichnis verweist.";
$a->strings["Disable picture proxy"] = "Bilder Proxy deaktivieren";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen.";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen.";
$a->strings["Only search in tags"] = "Nur in Tags suchen";
$a->strings["On large systems the text search can slow down the system extremely."] = "Auf großen Knoten kann die Volltext-Suche das System ausbremsen.";
$a->strings["New base url"] = "Neue Basis-URL";
@ -1569,7 +1569,7 @@ $a->strings["Don't show notices"] = "Info-Popups nicht anzeigen";
$a->strings["Infinite scroll"] = "Endloses Scrollen";
$a->strings["Automatic updates only at the top of the network page"] = "Automatische Updates nur, wenn Du oben auf der Netzwerkseite bist.";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Wenn dies deaktiviert ist, wird die Netzwerk Seite aktualisiert, wann immer neue Beiträge eintreffen, egal an welcher Stelle gerade gelesen wird.";
$a->strings["Bandwith Saver Mode"] = "Bandbreiten-Spar-Modus";
$a->strings["Bandwidth Saver Mode"] = "Bandbreiten-Spar-Modus";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Wenn aktiviert, wird der eingebettete Inhalt nicht automatisch aktualisiert. In diesem Fall Seite bitte neu laden.";
$a->strings["Smart Threading"] = "Intelligentes Threading";
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Ist dies aktiviert, werden Einrückungen in Unterhaltungen unterdrückt wo sie nicht benötigt werden. Werden sie benötigt, werden die Threads weiterhin eingerückt.";

View File

@ -1164,7 +1164,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Base path to installation";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot.";
$a->strings["Disable picture proxy"] = "Disable picture proxy";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith.";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth.";
$a->strings["Only search in tags"] = "Only search in tags";
$a->strings["On large systems the text search can slow down the system extremely."] = "On large systems the text search can slow down the system significantly.";
$a->strings["New base url"] = "New base URL";
@ -1569,7 +1569,7 @@ $a->strings["Don't show notices"] = "Don't show notices";
$a->strings["Infinite scroll"] = "Infinite scroll";
$a->strings["Automatic updates only at the top of the network page"] = "Automatically updates only top of the network page";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "When disabled, the network page is updated all the time, which could be confusing while reading.";
$a->strings["Bandwith Saver Mode"] = "Bandwith saving mode";
$a->strings["Bandwidth Saver Mode"] = "Bandwidth saving mode";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "If enabled, embedded content is not displayed on automatic updates; it is only shown on page reload.";
$a->strings["Smart Threading"] = "Smart threading";
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Suppresses extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled.";

View File

@ -1164,7 +1164,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Base path to installation";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot.";
$a->strings["Disable picture proxy"] = "Disable picture proxy";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith.";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth.";
$a->strings["Only search in tags"] = "Only search in tags";
$a->strings["On large systems the text search can slow down the system extremely."] = "On large systems the text search can slow down the system significantly.";
$a->strings["New base url"] = "New base URL";
@ -1569,7 +1569,7 @@ $a->strings["Don't show notices"] = "Don't show notices";
$a->strings["Infinite scroll"] = "Infinite scroll";
$a->strings["Automatic updates only at the top of the network page"] = "Automatically updates only top of the network page";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "When disabled, the network page is updated all the time, which could be confusing while reading.";
$a->strings["Bandwith Saver Mode"] = "Bandwith saving mode";
$a->strings["Bandwidth Saver Mode"] = "Bandwidth saving mode";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "If enabled, embedded content is not displayed on automatic updates; it is only shown on page reload.";
$a->strings["Smart Threading"] = "Smart Threading";
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Suppresses extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled.";

View File

@ -1348,7 +1348,7 @@ $a->strings["Beginning of week:"] = "";
$a->strings["Don't show notices"] = "";
$a->strings["Infinite scroll"] = "";
$a->strings["Automatic updates only at the top of the network page"] = "";
$a->strings["Bandwith Saver Mode"] = "";
$a->strings["Bandwidth Saver Mode"] = "";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
$a->strings["General Theme Settings"] = "";
$a->strings["Custom Theme Settings"] = "";
@ -1652,7 +1652,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
$a->strings["Enable old style pager"] = "";
$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
$a->strings["Only search in tags"] = "";

View File

@ -1394,7 +1394,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Ruta base para la instalación";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Si el sistema no puede detectar el acceso correcto a la instalación, ingrese la dirección correcta aquí. Esta configuración solo debería utilizarse si si usa un sistema restringido y enlaces simbolicos a su webroot.";
$a->strings["Disable picture proxy"] = "Deshabilitar proxy de imagen";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "El proxy de imagen mejora el performance y privacidad. No debería ser usado en sistemas con poco ancho de banda.";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "El proxy de imagen mejora el performance y privacidad. No debería ser usado en sistemas con poco ancho de banda.";
$a->strings["Only search in tags"] = "Solo buscar en tags";
$a->strings["On large systems the text search can slow down the system extremely."] = "En sistemas grandes, la búsqueda de texto puede enlentecer el sistema gravemente.";
$a->strings["New base url"] = "Nueva URLbase";
@ -1895,7 +1895,7 @@ $a->strings["Don't show notices"] = "No mostrara avisos";
$a->strings["Infinite scroll"] = "pagina infinita (sroll)";
$a->strings["Automatic updates only at the top of the network page"] = "Actualizaciones automaticas solo estando al principio de la pagina";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Cuando está deshabilitada, la página de red se actualiza constantemente, lo que podría ser confuso al leer.";
$a->strings["Bandwith Saver Mode"] = "Modo de guardado de ancho de banda";
$a->strings["Bandwidth Saver Mode"] = "Modo de guardado de ancho de banda";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Cuando está habilitado, el contenido incrustado no se muestra en las actualizaciones automáticas, sólo en las páginas recargadas.";
$a->strings["General Theme Settings"] = "Ajustes generales de tema";
$a->strings["Custom Theme Settings"] = "Ajustes personalizados de tema";

View File

@ -1164,7 +1164,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Asennuksen peruspolku";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
$a->strings["Only search in tags"] = "Tunnistehaku";
$a->strings["On large systems the text search can slow down the system extremely."] = "";
$a->strings["New base url"] = "Uusi perusosoite";
@ -1569,7 +1569,7 @@ $a->strings["Don't show notices"] = "";
$a->strings["Infinite scroll"] = "Loputon selaaminen";
$a->strings["Automatic updates only at the top of the network page"] = "";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "";
$a->strings["Bandwith Saver Mode"] = "Kaistanleveyssäästömoodi";
$a->strings["Bandwidth Saver Mode"] = "Kaistanleveyssäästömoodi";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
$a->strings["Smart Threading"] = "";
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "";

View File

@ -1164,7 +1164,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Chemin de base de l'installation";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Si le système ne peut pas détecter le chemin de l'installation, entrez le bon chemin ici. Ce paramètre doit être utilisé uniquement si vous avez des accès restreints à votre système et que vous n'avez qu'un lien symbolique vers le répertoire web.";
$a->strings["Disable picture proxy"] = "Désactiver le proxy image ";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante.";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "Le proxy d'image augmente les performances et l'intimité. Il ne devrait pas être utilisé sur des systèmes avec une très faible bande passante.";
$a->strings["Only search in tags"] = "Rechercher seulement dans les étiquettes";
$a->strings["On large systems the text search can slow down the system extremely."] = "La recherche textuelle peut ralentir considérablement les systèmes de grande taille.";
$a->strings["New base url"] = "Nouvelle URL de base";
@ -1569,7 +1569,7 @@ $a->strings["Don't show notices"] = "Ne plus afficher les avis";
$a->strings["Infinite scroll"] = "Défilement infini";
$a->strings["Automatic updates only at the top of the network page"] = "Mises à jour automatiques seulement en haut de la page Réseau";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Si désactivé, la page Réseau est mise à jour en permanence, ce qui peut rendre la lecture difficile.";
$a->strings["Bandwith Saver Mode"] = "Limiter le transfert de données";
$a->strings["Bandwidth Saver Mode"] = "Limiter le transfert de données";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Si activé, le contenu intégré aux pages est mis à jour uniquement lors du rafraîchissement manuel des pages : il n'est plus mis à jour lors des rafraîchissements automatiques.";
$a->strings["Smart Threading"] = "";
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "";

View File

@ -1164,7 +1164,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
$a->strings["Only search in tags"] = "";
$a->strings["On large systems the text search can slow down the system extremely."] = "";
$a->strings["New base url"] = "";
@ -1569,7 +1569,7 @@ $a->strings["Don't show notices"] = "Ekki birta tilkynningar";
$a->strings["Infinite scroll"] = "";
$a->strings["Automatic updates only at the top of the network page"] = "";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "";
$a->strings["Bandwith Saver Mode"] = "";
$a->strings["Bandwidth Saver Mode"] = "";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
$a->strings["Smart Threading"] = "";
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "";

View File

@ -1164,7 +1164,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Percorso base all'installazione";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Se il sistema non è in grado di rilevare il percorso corretto per l'installazione, immettere il percorso corretto qui. Questa impostazione deve essere inserita solo se si utilizza un sistema limitato e/o collegamenti simbolici al tuo webroot.";
$a->strings["Disable picture proxy"] = "Disabilita il proxy immagini";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Il proxy immagini aumenta le performance e la privacy. Non dovrebbe essere usato su server con poca banda disponibile.";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "Il proxy immagini aumenta le performance e la privacy. Non dovrebbe essere usato su server con poca banda disponibile.";
$a->strings["Only search in tags"] = "Cerca solo nei tag";
$a->strings["On large systems the text search can slow down the system extremely."] = "Su server con molti dati, la ricerca nel testo può estremamente rallentare il sistema.";
$a->strings["New base url"] = "Nuovo url base";
@ -1569,7 +1569,7 @@ $a->strings["Don't show notices"] = "Non mostrare gli avvisi";
$a->strings["Infinite scroll"] = "Scroll infinito";
$a->strings["Automatic updates only at the top of the network page"] = "Aggiornamenti automatici solo in cima alla pagina \"rete\"";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Quando disabilitato, la pagina \"rete\" è aggiornata continuamente, cosa che può confondere durante la lettura.";
$a->strings["Bandwith Saver Mode"] = "Modalità Salva Banda";
$a->strings["Bandwidth Saver Mode"] = "Modalità Salva Banda";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Quando abilitato, il contenuto embeddato non è mostrato quando la pagina si aggiorna automaticamente, ma solo quando la pagina viene ricaricata.";
$a->strings["Smart Threading"] = "Smart Threading";
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Quando è abilitato, rimuove i rientri eccessivi nella visualizzazione delle discussioni, mantenendoli dove sono importanti. Funziona solo se le conversazioni a thread sono disponibili e abilitate.";

View File

@ -546,7 +546,7 @@ $a->strings["Path for lock file"] = "Sti til fillås";
$a->strings["Temp path"] = "Temp-sti";
$a->strings["Base path to installation"] = "Sti til installasjonsbasen";
$a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
$a->strings["Enable old style pager"] = "";
$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
$a->strings["Only search in tags"] = "";

View File

@ -1407,7 +1407,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Basispad voor installatie";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
$a->strings["Only search in tags"] = "";
$a->strings["On large systems the text search can slow down the system extremely."] = "";
$a->strings["New base url"] = "";
@ -1606,7 +1606,7 @@ $a->strings["Don't show notices"] = "";
$a->strings["Infinite scroll"] = "Oneindig scrollen";
$a->strings["Automatic updates only at the top of the network page"] = "";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "";
$a->strings["Bandwith Saver Mode"] = "";
$a->strings["Bandwidth Saver Mode"] = "";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
$a->strings["Smart Threading"] = "";
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "";

View File

@ -1194,7 +1194,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Podstawowa ścieżka do instalacji";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "Jeśli system nie może wykryć poprawnej ścieżki do instalacji, wprowadź tutaj poprawną ścieżkę. To ustawienie powinno być ustawione tylko wtedy, gdy używasz ograniczonego systemu i dowiązań symbolicznych do twojego webroota.";
$a->strings["Disable picture proxy"] = "Wyłącz obraz proxy";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Proxy obrazu zwiększa wydajność i prywatność. Nie należy go stosować w systemach o bardzo niskiej przepustowości.";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "Proxy obrazu zwiększa wydajność i prywatność. Nie należy go stosować w systemach o bardzo niskiej przepustowości.";
$a->strings["Only search in tags"] = "Szukaj tylko w tagach";
$a->strings["On large systems the text search can slow down the system extremely."] = "W dużych systemach wyszukiwanie tekstu może wyjątkowo spowolnić system.";
$a->strings["New base url"] = "Nowy bazowy adres url";
@ -1605,7 +1605,7 @@ $a->strings["Don't show notices"] = "Nie pokazuj powiadomień";
$a->strings["Infinite scroll"] = "Nieskończone przewijanie";
$a->strings["Automatic updates only at the top of the network page"] = "Automatyczne aktualizacje tylko u góry strony sieci";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "Po wyłączeniu strona sieciowa jest cały czas aktualizowana, co może być mylące podczas czytania.";
$a->strings["Bandwith Saver Mode"] = "Tryb oszczędzania przepustowości";
$a->strings["Bandwidth Saver Mode"] = "Tryb oszczędzania przepustowości";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Po włączeniu wbudowana zawartość nie jest wyświetlana w automatycznych aktualizacjach, wyświetlają się tylko przy przeładowaniu strony.";
$a->strings["Smart Threading"] = "Inteligentne wątki";
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "Włączenie tej opcji powoduje pomijanie wcięcia wątków zewnętrznych, zachowując je w dowolnym miejscu. Działa tylko wtedy, gdy wątki są dostępne i włączone.";

View File

@ -1531,7 +1531,7 @@ $a->strings["Don't show notices"] = "Não mostra avisos";
$a->strings["Infinite scroll"] = "rolamento infinito";
$a->strings["Automatic updates only at the top of the network page"] = "Atualizações automáticas só na parte superior da página da rede";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "";
$a->strings["Bandwith Saver Mode"] = "";
$a->strings["Bandwidth Saver Mode"] = "";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
$a->strings["General Theme Settings"] = "";
$a->strings["Custom Theme Settings"] = "";
@ -1845,7 +1845,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Diretório base para instalação";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = "Disabilitar proxy de imagem";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa.";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "O proxy de imagem aumenta o desempenho e privacidade. Ele não deve ser usado em sistemas com largura de banda muito baixa.";
$a->strings["Only search in tags"] = "Somente pesquisa nas estiquetas";
$a->strings["On large systems the text search can slow down the system extremely."] = "Em grandes sistemas a pesquisa de texto pode deixar o sistema muito lento.";
$a->strings["New base url"] = "Nova URL base";

View File

@ -549,7 +549,7 @@ $a->strings["Path for lock file"] = "Cale pentru blocare fișiere";
$a->strings["Temp path"] = "Calea Temp";
$a->strings["Base path to installation"] = "Calea de bază pentru instalare";
$a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
$a->strings["Enable old style pager"] = "";
$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
$a->strings["Only search in tags"] = "";

View File

@ -1194,7 +1194,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "Путь для установки";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = "Отключить проксирование картинок";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "Прокси картинок увеличивает производительность и приватность. Он не должен использоваться на системах с очень маленькой мощностью.";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "Прокси картинок увеличивает производительность и приватность. Он не должен использоваться на системах с очень маленькой мощностью.";
$a->strings["Only search in tags"] = "Искать только в тегах";
$a->strings["On large systems the text search can slow down the system extremely."] = "На больших системах текстовый поиск может сильно замедлить систему.";
$a->strings["New base url"] = "Новый базовый url";
@ -1605,7 +1605,7 @@ $a->strings["Don't show notices"] = "Не показывать уведомле
$a->strings["Infinite scroll"] = "Бесконечная прокрутка";
$a->strings["Automatic updates only at the top of the network page"] = "Автоматически обновлять только при нахождении вверху страницы \"Сеть\"";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "";
$a->strings["Bandwith Saver Mode"] = "Режим экономии трафика";
$a->strings["Bandwidth Saver Mode"] = "Режим экономии трафика";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "Если включено, то включенный контент не отображается при автоматическом обновлении, он будет показан только при перезагрузке страницы.";
$a->strings["Smart Threading"] = "";
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "";

View File

@ -1348,7 +1348,7 @@ $a->strings["Beginning of week:"] = "";
$a->strings["Don't show notices"] = "";
$a->strings["Infinite scroll"] = "";
$a->strings["Automatic updates only at the top of the network page"] = "";
$a->strings["Bandwith Saver Mode"] = "";
$a->strings["Bandwidth Saver Mode"] = "";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "";
$a->strings["General Theme Settings"] = "";
$a->strings["Custom Theme Settings"] = "";
@ -1652,7 +1652,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "";
$a->strings["Disable picture proxy"] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
$a->strings["Enable old style pager"] = "";
$a->strings["The old style pager has page numbers but slows down massively the page speed."] = "";
$a->strings["Only search in tags"] = "";

View File

@ -1149,7 +1149,7 @@ $a->strings["If you have a restricted system where the webserver can't access th
$a->strings["Base path to installation"] = "基础安装路线";
$a->strings["If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."] = "如果您的系统无法为您检测到正确的安装路径,请在这里输入正确的路径。此配置仅在您使用设有限制的系统时符号链接到网页服务器根目录使用。";
$a->strings["Disable picture proxy"] = "停用图片代理";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwith."] = "";
$a->strings["The picture proxy increases performance and privacy. It shouldn't be used on systems with very low bandwidth."] = "";
$a->strings["Only search in tags"] = "";
$a->strings["On large systems the text search can slow down the system extremely."] = "在大型系统中,正文搜索会极大降低系统运行速度。";
$a->strings["New base url"] = "新基础URL";
@ -1551,7 +1551,7 @@ $a->strings["Don't show notices"] = "不显示提示";
$a->strings["Infinite scroll"] = "无限的滚动";
$a->strings["Automatic updates only at the top of the network page"] = "仅在返回到网页头部时自动更新";
$a->strings["When disabled, the network page is updated all the time, which could be confusing while reading."] = "禁用后,网页将会一直更新,这可能会对阅读造成干扰。";
$a->strings["Bandwith Saver Mode"] = "省流量模式";
$a->strings["Bandwidth Saver Mode"] = "省流量模式";
$a->strings["When enabled, embedded content is not displayed on automatic updates, they only show on page reload."] = "当启用时,嵌入的内容不会在自动更新时显示,它们只在页面重载时显示。";
$a->strings["Smart Threading"] = "";
$a->strings["When enabled, suppress extraneous thread indentation while keeping it where it matters. Only works if threading is available and enabled."] = "";