regenerated all strings.php files from the current translation strings (message.po)

This commit is contained in:
Tobias Diekershoff 2021-02-01 18:47:38 +01:00
parent 7f3704ae54
commit 500aab3c53
716 changed files with 1081 additions and 1607 deletions

View file

@ -3,7 +3,7 @@
if(! function_exists("string_plural_select_cs")) {
function string_plural_select_cs($n){
$n = intval($n);
return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
if (($n == 1 && $n % 1 == 0)) { return 0; } else if (($n >= 2 && $n <= 4 && $n % 1 == 0)) { return 1; } else if (($n % 1 != 0 )) { return 2; } else { return 3; }
}}
;
$a->strings["Content Filter (NSFW and more)"] = "Filtr obsahu (citlivý obsah a další)";

View file

@ -3,7 +3,7 @@
if(! function_exists("string_plural_select_de")) {
function string_plural_select_de($n){
$n = intval($n);
return ($n != 1);;
return intval($n != 1);
}}
;
$a->strings["Content Filter (NSFW and more)"] = "Inhaltsfilter (NSFW und mehr)";

View file

@ -2,14 +2,12 @@
if(! function_exists("string_plural_select_en_gb")) {
function string_plural_select_en_gb($n){
return ($n != 1);;
$n = intval($n);
return intval($n != 1);
}}
;
$a->strings["Content Filter (NSFW and more)"] = "";
$a->strings["This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view."] = "";
$a->strings["Enable Content filter"] = "Enable content filter";
$a->strings["Comma separated list of keywords to hide"] = "Comma separated list of keywords";
$a->strings["Save Settings"] = "";
$a->strings["Use /expression/ to provide regular expressions"] = "Use /expression/ for regular expressions.";
$a->strings["NSFW Settings saved."] = "NSFW settings saved.";
$a->strings["%s - Click to open/close"] = "%s - Reveal/hide";

View file

@ -2,14 +2,12 @@
if(! function_exists("string_plural_select_en_us")) {
function string_plural_select_en_us($n){
return ($n != 1);;
$n = intval($n);
return intval($n != 1);
}}
;
$a->strings["Content Filter (NSFW and more)"] = "";
$a->strings["This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view."] = "";
$a->strings["Enable Content filter"] = "Enable content filter";
$a->strings["Comma separated list of keywords to hide"] = "Comma separated list of keywords";
$a->strings["Save Settings"] = "";
$a->strings["Use /expression/ to provide regular expressions"] = "Use /expression/ for regular expressions.";
$a->strings["NSFW Settings saved."] = "NSFW settings saved.";
$a->strings["%s - Click to open/close"] = "%s - Reveal/hide";

View file

@ -2,7 +2,8 @@
if(! function_exists("string_plural_select_es")) {
function string_plural_select_es($n){
return ($n != 1);;
$n = intval($n);
return intval($n != 1);
}}
;
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Configuración \"No apto para trabajar\" (Filtro genérico de contenido)";

View file

@ -3,15 +3,12 @@
if(! function_exists("string_plural_select_fi_fi")) {
function string_plural_select_fi_fi($n){
$n = intval($n);
return ($n != 1);;
return intval($n != 1);
}}
;
$a->strings["Content Filter (NSFW and more)"] = "Sisällönsuodatin (NSFW yms.)";
$a->strings["This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view."] = "";
$a->strings["Enable Content filter"] = "Ota sisällönsuodatin käyttöön";
$a->strings["Comma separated list of keywords to hide"] = "";
$a->strings["Save Settings"] = "Tallenna asetukset";
$a->strings["Use /expression/ to provide regular expressions"] = "";
$a->strings["NSFW Settings saved."] = "NSFW-asetukset tallennettu.";
$a->strings["Filtered tag: %s"] = "Suodatettu tunniste: %s";
$a->strings["Filtered word: %s"] = "Suodatettu sana: %s";

View file

@ -3,7 +3,7 @@
if(! function_exists("string_plural_select_it")) {
function string_plural_select_it($n){
$n = intval($n);
return ($n != 1);;
return intval($n != 1);
}}
;
$a->strings["Content Filter (NSFW and more)"] = "Filtro Contenuto (NSFW e altro)";

View file

@ -3,15 +3,11 @@
if(! function_exists("string_plural_select_nl")) {
function string_plural_select_nl($n){
$n = intval($n);
return ($n != 1);;
return intval($n != 1);
}}
;
$a->strings["Content Filter (NSFW and more)"] = "Inhoud filter (NSFW en meer)";
$a->strings["This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view."] = "Deze add-on zoekt naar gespecificeerde woorden / tekst in berichten en vouwt ze samen. Het kan worden gebruikt om inhoud te filteren die is getagd met bijvoorbeeld #NSFW die op bepaalde tijden of plaatsen als ongepast kan worden beschouwd, zoals op het werk. Het is ook handig om irrelevante of irritante inhoud voor direct zicht te verbergen.";
$a->strings["Enable Content filter"] = "Content filter inschakelen";
$a->strings["Comma separated list of keywords to hide"] = "";
$a->strings["Save Settings"] = "Instellingen opslaan";
$a->strings["Use /expression/ to provide regular expressions"] = "";
$a->strings["NSFW Settings saved."] = "NSFW instellingen opgeslagen";
$a->strings["Filtered tag: %s"] = "";
$a->strings["Filtered word: %s"] = "";

View file

@ -2,7 +2,8 @@
if(! function_exists("string_plural_select_pl")) {
function string_plural_select_pl($n){
return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14) ? 1 : $n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14) ? 2 : 3);;
$n = intval($n);
if ($n==1) { return 0; } else if (($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14)) { return 1; } else if ($n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14)) { return 2; } else { return 3; }
}}
;
$a->strings["Content Filter (NSFW and more)"] = "Filtr zawartości (NSFW i więcej)";

View file

@ -2,14 +2,9 @@
if(! function_exists("string_plural_select_pt_br")) {
function string_plural_select_pt_br($n){
return ($n > 1);;
$n = intval($n);
return intval($n > 1);
}}
;
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "";
$a->strings["This addon looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = "";
$a->strings["Enable Content filter"] = "Habilitar filtro de conteúdo";
$a->strings["Comma separated list of keywords to hide"] = "";
$a->strings["Submit"] = "Enviar";
$a->strings["Use /expression/ to provide regular expressions"] = "";
$a->strings["NSFW Settings saved."] = "";
$a->strings["%s - Click to open/close"] = "";

View file

@ -2,7 +2,8 @@
if(! function_exists("string_plural_select_ro")) {
function string_plural_select_ro($n){
return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));;
$n = intval($n);
if ($n==1) { return 0; } else if ((($n%100>19)||(($n%100==0)&&($n!=0)))) { return 2; } else { return 1; }
}}
;
$a->strings["Not Safe For Work (General Purpose Content Filter) settings"] = "Nesigur Pentru Lucru (Filtrare de Conținut pentru Uz General )";

View file

@ -3,7 +3,7 @@
if(! function_exists("string_plural_select_ru")) {
function string_plural_select_ru($n){
$n = intval($n);
return ($n%10==1 && $n%100!=11 ? 0 : $n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14) ? 1 : $n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)? 2 : 3);;
if ($n%10==1 && $n%100!=11) { return 0; } else if ($n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14)) { return 1; } else if ($n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)) { return 2; } else { return 3; }
}}
;
$a->strings["Content Filter (NSFW and more)"] = "Фильтр контента (NSFW и прочее)";

View file

@ -3,11 +3,10 @@
if(! function_exists("string_plural_select_zh_cn")) {
function string_plural_select_zh_cn($n){
$n = intval($n);
return 0;;
return intval(0);
}}
;
$a->strings["Content Filter (NSFW and more)"] = "内容过滤 ( NSFW 及其他更多)";
$a->strings["This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view."] = "";
$a->strings["Enable Content filter"] = "启用内容过滤";
$a->strings["Comma separated list of keywords to hide"] = "以逗号分隔需隐藏关键字列表";
$a->strings["Save Settings"] = "保存设置";