From e0915cffda34c9a83155281b85fac3d83445c141 Mon Sep 17 00:00:00 2001 From: Mario Date: Thu, 23 Jun 2022 17:10:35 +0000 Subject: es: update plural function --- view/es-es/hstrings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/es-es/hstrings.php') diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 6df4be5cf..47a18171d 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)"; -- cgit v1.2.3