]> git.mxchange.org Git - friendica.git/commitdiff
Rebuild PO to strings
authorAlexandre Alapetite <alexandre@alapetite.fr>
Thu, 17 May 2018 07:31:29 +0000 (09:31 +0200)
committerAlexandre Alapetite <alexandre@alapetite.fr>
Thu, 17 May 2018 07:31:29 +0000 (09:31 +0200)
```sh
for i in view/lang/*/messages.po; do bin/console po2php $i; done
```

19 files changed:
view/lang/bg/strings.php
view/lang/ca/strings.php
view/lang/cs/strings.php
view/lang/de/strings.php
view/lang/en-gb/strings.php
view/lang/en-us/strings.php
view/lang/eo/strings.php
view/lang/es/strings.php
view/lang/fi-fi/strings.php
view/lang/fr/strings.php
view/lang/is/strings.php
view/lang/it/strings.php
view/lang/nb-no/strings.php
view/lang/nl/strings.php
view/lang/pl/strings.php
view/lang/pt-br/strings.php
view/lang/ro/strings.php
view/lang/sv/strings.php
view/lang/zh-cn/strings.php

index 8d3bf4d5cd7fb608a09ec3fa1e7c3d8e1667e326..b70ac3b1aba306dfe94932c46958269ec764e093 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_bg")) {
 function string_plural_select_bg($n){
+       $n = intval($n);
        return ($n != 1);;
 }}
 ;
index 5e891565c622db2339765a71f49a19f7faf8a7e5..dbf3919c6306b11b6908276dff620509fe72fb6e 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_ca")) {
 function string_plural_select_ca($n){
+       $n = intval($n);
        return ($n != 1);;
 }}
 ;
index 8237019ee9655054d3473762f5bb00d86d5fe0ff..efc9ecd34ac5750ce994a2ee7493756920c43bff 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_cs")) {
 function string_plural_select_cs($n){
+       $n = intval($n);
        return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
 }}
 ;
index 32e3f8f1509480000c8bd7ee560a5da49819ec3f..9cb9559fb909dba4bf9bf4031f3c60e09933044f 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_de")) {
 function string_plural_select_de($n){
+       $n = intval($n);
        return ($n != 1);;
 }}
 ;
index a2c1a944f15a24ad43dafc1cc747fa57f72a15cb..50333b15bee00f3ec17b8e1ffc547764efa99cc7 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_en_gb")) {
 function string_plural_select_en_gb($n){
+       $n = intval($n);
        return ($n != 1);;
 }}
 ;
index f7371792631bbd2bae136aa89736c411984c03a4..377ad314a6025d48ae33b5351aef36964d4f0b25 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_en_us")) {
 function string_plural_select_en_us($n){
+       $n = intval($n);
        return ($n != 1);;
 }}
 ;
index c7dbcb4fffdbadee80953a4910e0a11c1f96b8e9..3704fd32fc6a518610a06fbd09ccc8ee8d4ab329 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_eo")) {
 function string_plural_select_eo($n){
+       $n = intval($n);
        return ($n != 1);;
 }}
 ;
index f12d61b7a8de324df1ce7d2635cf9b8922849907..530ea979c8494610ab8f8f09950a0474c9f0951f 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_es")) {
 function string_plural_select_es($n){
+       $n = intval($n);
        return ($n != 1);;
 }}
 ;
index 16c3e9539fe379b312d6c40ae4e15bf4f5fbd6a5..7e96af9b44bcd48fb01ceb5a5c3ac2b0edf51247 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_fi_fi")) {
 function string_plural_select_fi_fi($n){
+       $n = intval($n);
        return ($n != 1);;
 }}
 ;
index 34c805e990350f537f795250a4cea77e20a6d8ea..67d40388857e89187988ccb6cd3d43137bfb1605 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_fr")) {
 function string_plural_select_fr($n){
+       $n = intval($n);
        return ($n > 1);;
 }}
 ;
index fda0c85bf374fd513a0dbe1e8280fd4b9a879c1c..d67b45816a06b2143831ef46747af300aee8d27b 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_is")) {
 function string_plural_select_is($n){
+       $n = intval($n);
        return ($n % 10 != 1 || $n % 100 == 11);;
 }}
 ;
index 91c74d77a93c1aa355de3966a88d446499ff25fa..e4548eb24991691f1570ba8ceefb8e47af875340 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_it")) {
 function string_plural_select_it($n){
+       $n = intval($n);
        return ($n != 1);;
 }}
 ;
index 18351bada33e62da0a4c9cf5fa7bced35b5c6d38..6f1c49a2242f4537f414900252434b2283b39ef9 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_nb_no")) {
 function string_plural_select_nb_no($n){
+       $n = intval($n);
        return ($n != 1);;
 }}
 ;
index 5b74f580a243457e5ab0bd11a0f5cf092928f431..878ede7cba35accb748f41894695b6c3be512d54 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_nl")) {
 function string_plural_select_nl($n){
+       $n = intval($n);
        return ($n != 1);;
 }}
 ;
index 27b381f93046deb950560bb3060b956fed6ed2d7..6d4d6ed09f94c057505443ed9e91b420e805d524 100644 (file)
@@ -2,6 +2,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);;
 }}
 ;
index 1c3d47bc0364c07d681fe8b04f8353017354912f..5df9b3a2ec48bfa9d70cbadb823e9540e5e45cea 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_pt_br")) {
 function string_plural_select_pt_br($n){
+       $n = intval($n);
        return ($n > 1);;
 }}
 ;
index fcbbfa5d12ee7de644423134ee5d088dde537785..50e963b08c4f4febdf09f3daa8d7f72ccbdc8232 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_ro")) {
 function string_plural_select_ro($n){
+       $n = intval($n);
        return ($n==1?0:((($n%100>19)||(($n%100==0)&&($n!=0)))?2:1));;
 }}
 ;
index e25c03293aec90f3d66a496e78d22e7f01d511b7..f7276ce62035712def6b22b4aedb9215bef1dfea 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_sv")) {
 function string_plural_select_sv($n){
+       $n = intval($n);
        return ($n != 1);;
 }}
 ;
index 4747c791ba162e8972d551f1f08b117188a2d778..3868fda99e968c0e8a2bbb3df838794ca7a0f26f 100644 (file)
@@ -2,6 +2,7 @@
 
 if(! function_exists("string_plural_select_zh_cn")) {
 function string_plural_select_zh_cn($n){
+       $n = intval($n);
        return 0;;
 }}
 ;