diff options
Diffstat (limited to 'view/es-es/hstrings.php')
-rw-r--r-- | view/es-es/hstrings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index d61cb65c2..025e5095d 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -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)"; |