From f952d65cfd612a73dad0de0160318c630eed4c69 Mon Sep 17 00:00:00 2001 From: Max Kostikov Date: Mon, 8 Mar 2021 15:48:44 +0000 Subject: Fix Spanish plural expression --- view/es-es/hstrings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/es-es') diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index f77a1906c..097656a6c 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