Rebuild PO to strings

```sh
for i in view/lang/*/messages.po; do bin/console po2php $i; done
```
This commit is contained in:
Alexandre Alapetite 2018-05-17 09:31:29 +02:00
parent f980516545
commit 102377f19f
19 changed files with 19 additions and 0 deletions

View 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);;
}}
;