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_is")) {
function string_plural_select_is($n){
$n = intval($n);
return ($n % 10 != 1 || $n % 100 == 11);;
}}
;