mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-06-07 09:54:27 +02:00
regenerated all strings.php files from the current translation strings (message.po)
This commit is contained in:
parent
7f3704ae54
commit
500aab3c53
716 changed files with 1081 additions and 1607 deletions
|
@ -3,30 +3,21 @@
|
|||
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["Androgyne"] = "Androgyn";
|
||||
$a->strings["Bear"] = "Medvěd";
|
||||
$a->strings["Bigender"] = "Bigender";
|
||||
$a->strings["Cross dresser"] = "Crossdresser";
|
||||
$a->strings["Drag queen"] = "";
|
||||
$a->strings["Eunuch"] = "Eunuch";
|
||||
$a->strings["Faux queen"] = "";
|
||||
$a->strings["Gender fluid"] = "";
|
||||
$a->strings["Kathoey"] = "";
|
||||
$a->strings["Lady"] = "Dáma";
|
||||
$a->strings["Lipstick lesbian"] = "";
|
||||
$a->strings["Metrosexual"] = "Metrosexuál";
|
||||
$a->strings["Monk"] = "Mnich";
|
||||
$a->strings["Nun"] = "Jeptiška";
|
||||
$a->strings["Soft butch"] = "";
|
||||
$a->strings["Stone femme"] = "";
|
||||
$a->strings["Tomboy"] = "";
|
||||
$a->strings["Transman"] = "Transmuž";
|
||||
$a->strings["Transwoman"] = "Transžena";
|
||||
$a->strings["Transvesti"] = "Transvestita";
|
||||
$a->strings["Trigender"] = "";
|
||||
$a->strings["Can't remember"] = "Nepamatuju si";
|
||||
$a->strings["Hard to tell these days"] = "Těžké říct touhle dobou";
|
||||
$a->strings["Girls with big tits"] = "Holky s velkýma kozama";
|
||||
|
@ -39,13 +30,10 @@ $a->strings["Statues, mannequins and immobility"] = "Sochy, figuríny a nepohybl
|
|||
$a->strings["Pain"] = "Bolest";
|
||||
$a->strings["Trans men"] = "Transmuži";
|
||||
$a->strings["Older women"] = "Starší ženy";
|
||||
$a->strings["Asphyxiation"] = "";
|
||||
$a->strings["In public"] = "Na veřejnosti";
|
||||
$a->strings["In danger"] = "V nebezpečí";
|
||||
$a->strings["Pretending to be male"] = "Předstírají, že jsou muži";
|
||||
$a->strings["Pretending to be female"] = "Předstírají, že jsou ženy";
|
||||
$a->strings["Breats"] = "";
|
||||
$a->strings["Scat"] = "";
|
||||
$a->strings["Crying"] = "Pláčí";
|
||||
$a->strings["Nappies/Diapers"] = "Plenky";
|
||||
$a->strings["Trees"] = "Stromy";
|
||||
|
@ -59,30 +47,22 @@ $a->strings["Elderly people"] = "Postarší lidé";
|
|||
$a->strings["Transgender people"] = "Transgenderoví lidé";
|
||||
$a->strings["Criminals"] = "Zločinci";
|
||||
$a->strings["Stealing"] = "Kradou";
|
||||
$a->strings["Breast milk"] = "";
|
||||
$a->strings["Immersing genitals in liquids"] = "";
|
||||
$a->strings["Giants"] = "Obři";
|
||||
$a->strings["Masochism"] = "Masochismus";
|
||||
$a->strings["Cars"] = "Auto";
|
||||
$a->strings["Menstruation"] = "Menstruace";
|
||||
$a->strings["Mucus"] = "";
|
||||
$a->strings["Obscene language"] = "Sprostý jazyk";
|
||||
$a->strings["Noses"] = "Nosy";
|
||||
$a->strings["Navels"] = "Pupky";
|
||||
$a->strings["Corpses"] = "Mrtvoly";
|
||||
$a->strings["Smells"] = "Pachy";
|
||||
$a->strings["Buttocks"] = "";
|
||||
$a->strings["Nonliving objects"] = "Neživoucí předměty";
|
||||
$a->strings["Sleeping people"] = "Spící lidé";
|
||||
$a->strings["Urination"] = "Močení";
|
||||
$a->strings["Eating people"] = "Žerou lidi";
|
||||
$a->strings["Being eaten"] = "";
|
||||
$a->strings["Animals"] = "Zvířata";
|
||||
$a->strings["I'd rather just have some chocolate"] = "Radši bych si prostě dal čokoládu";
|
||||
$a->strings["Married to my job"] = "";
|
||||
$a->strings["Polygamist"] = "Polygamist(k)a";
|
||||
$a->strings["Half married"] = "Napůl ženatý/vdaná";
|
||||
$a->strings["Living in the past"] = "Žiju v minulosti";
|
||||
$a->strings["Pretending to be over my ex"] = "";
|
||||
$a->strings["Hurt in the past"] = "Ublížen v minulosti";
|
||||
$a->strings["Wallowing in self-pity"] = "";
|
||||
|
|
|
@ -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["Androgyne"] = "Androgyn";
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
if(! function_exists("string_plural_select_en_gb")) {
|
||||
function string_plural_select_en_gb($n){
|
||||
$n = intval($n);
|
||||
return ($n != 1);;
|
||||
return intval($n != 1);
|
||||
}}
|
||||
;
|
||||
$a->strings["Androgyne"] = "Androgyne";
|
||||
|
|
|
@ -3,26 +3,18 @@
|
|||
if(! function_exists("string_plural_select_fr")) {
|
||||
function string_plural_select_fr($n){
|
||||
$n = intval($n);
|
||||
return ($n > 1);;
|
||||
return intval($n > 1);
|
||||
}}
|
||||
;
|
||||
$a->strings["Androgyne"] = "Androgyne";
|
||||
$a->strings["Bear"] = "Ours";
|
||||
$a->strings["Bigender"] = "Bigenre";
|
||||
$a->strings["Cross dresser"] = "";
|
||||
$a->strings["Drag queen"] = "drag queen";
|
||||
$a->strings["Eunuch"] = "eunuque";
|
||||
$a->strings["Faux queen"] = "";
|
||||
$a->strings["Gender fluid"] = "genre fluide";
|
||||
$a->strings["Kathoey"] = "";
|
||||
$a->strings["Lady"] = "";
|
||||
$a->strings["Lipstick lesbian"] = "";
|
||||
$a->strings["Metrosexual"] = "métrosexuel";
|
||||
$a->strings["Monk"] = "moine";
|
||||
$a->strings["Nun"] = "religieuse";
|
||||
$a->strings["Soft butch"] = "";
|
||||
$a->strings["Stone femme"] = "";
|
||||
$a->strings["Tomboy"] = "";
|
||||
$a->strings["Transman"] = "homme trans";
|
||||
$a->strings["Transwoman"] = "femme trans";
|
||||
$a->strings["Transvesti"] = "travesti";
|
||||
|
@ -31,58 +23,8 @@ $a->strings["Can't remember"] = "Ne se rappelle pas";
|
|||
$a->strings["Hard to tell these days"] = "Difficile à dire en ce moment";
|
||||
$a->strings["Girls with big tits"] = "Filles à gros seins";
|
||||
$a->strings["Millionaires"] = "Millionnaires";
|
||||
$a->strings["Guys with big schlongs"] = "";
|
||||
$a->strings["Easy women"] = "Femmes faciles";
|
||||
$a->strings["People with impaired mobility"] = "Personnes à mobilité réduite";
|
||||
$a->strings["Amputees"] = "Amputés";
|
||||
$a->strings["Statues, mannequins and immobility"] = "";
|
||||
$a->strings["Pain"] = "Douleur";
|
||||
$a->strings["Trans men"] = "Hommes trans";
|
||||
$a->strings["Older women"] = "";
|
||||
$a->strings["Asphyxiation"] = "";
|
||||
$a->strings["In public"] = "";
|
||||
$a->strings["In danger"] = "";
|
||||
$a->strings["Pretending to be male"] = "";
|
||||
$a->strings["Pretending to be female"] = "";
|
||||
$a->strings["Breats"] = "";
|
||||
$a->strings["Scat"] = "";
|
||||
$a->strings["Crying"] = "";
|
||||
$a->strings["Nappies/Diapers"] = "";
|
||||
$a->strings["Trees"] = "";
|
||||
$a->strings["Vomit"] = "";
|
||||
$a->strings["Murder"] = "";
|
||||
$a->strings["Fat people"] = "";
|
||||
$a->strings["Feet"] = "";
|
||||
$a->strings["Covered in insects"] = "";
|
||||
$a->strings["Turning a human being into furniture"] = "";
|
||||
$a->strings["Elderly people"] = "";
|
||||
$a->strings["Transgender people"] = "";
|
||||
$a->strings["Criminals"] = "";
|
||||
$a->strings["Stealing"] = "";
|
||||
$a->strings["Breast milk"] = "";
|
||||
$a->strings["Immersing genitals in liquids"] = "";
|
||||
$a->strings["Giants"] = "";
|
||||
$a->strings["Masochism"] = "";
|
||||
$a->strings["Cars"] = "";
|
||||
$a->strings["Menstruation"] = "";
|
||||
$a->strings["Mucus"] = "";
|
||||
$a->strings["Obscene language"] = "";
|
||||
$a->strings["Noses"] = "";
|
||||
$a->strings["Navels"] = "";
|
||||
$a->strings["Corpses"] = "";
|
||||
$a->strings["Smells"] = "";
|
||||
$a->strings["Buttocks"] = "";
|
||||
$a->strings["Nonliving objects"] = "";
|
||||
$a->strings["Sleeping people"] = "";
|
||||
$a->strings["Urination"] = "";
|
||||
$a->strings["Eating people"] = "";
|
||||
$a->strings["Being eaten"] = "";
|
||||
$a->strings["Animals"] = "";
|
||||
$a->strings["I'd rather just have some chocolate"] = "";
|
||||
$a->strings["Married to my job"] = "";
|
||||
$a->strings["Polygamist"] = "";
|
||||
$a->strings["Half married"] = "";
|
||||
$a->strings["Living in the past"] = "";
|
||||
$a->strings["Pretending to be over my ex"] = "";
|
||||
$a->strings["Hurt in the past"] = "";
|
||||
$a->strings["Wallowing in self-pity"] = "";
|
||||
|
|
|
@ -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["Androgyne"] = "Androgino";
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
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["Androgyne"] = "Dubbel geslacht";
|
||||
|
@ -13,7 +13,6 @@ $a->strings["Cross dresser"] = "Gekleed als het ander";
|
|||
$a->strings["Drag queen"] = "Travestiet";
|
||||
$a->strings["Eunuch"] = "Castraat";
|
||||
$a->strings["Faux queen"] = "Fout";
|
||||
$a->strings["Gender fluid"] = "";
|
||||
$a->strings["Kathoey"] = "Tussen man en vrouw";
|
||||
$a->strings["Lady"] = "Trotse vrouw";
|
||||
$a->strings["Lipstick lesbian"] = "Lesbienne-vrouw";
|
||||
|
@ -25,7 +24,6 @@ $a->strings["Stone femme"] = "Butch en femme";
|
|||
$a->strings["Tomboy"] = "Tomboy";
|
||||
$a->strings["Transman"] = "Transman";
|
||||
$a->strings["Transwoman"] = "Transvrouw";
|
||||
$a->strings["Transvesti"] = "";
|
||||
$a->strings["Trigender"] = "Drieslacht";
|
||||
$a->strings["Can't remember"] = "Kan ik mij niet meer herinneren";
|
||||
$a->strings["Hard to tell these days"] = "Moeilijk te zeggen vandaag";
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
if(! function_exists("string_plural_select_pl")) {
|
||||
function string_plural_select_pl($n){
|
||||
$n = intval($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);;
|
||||
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["Androgyne"] = "Androgyniczny";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue