es: update plural function

This commit is contained in:
Mario
2022-06-23 17:10:35 +00:00
parent 7602de85c3
commit e0915cffda

View File

@@ -2,7 +2,7 @@
if(! function_exists("string_plural_select_es_es")) {
function string_plural_select_es_es($n){
return ($n != 1);
return ($n != 1 ? 1 : 0);
}}
App::$rtl = 0;
App::$strings["plural_function_code"] = "(n != 1 ? 1 : 0)";