From a3f4ad9ea0bb3d4641eab5d3de862358d5caeecb Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 4 Jun 2021 11:10:14 +0200 Subject: fix es plural return --- 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 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)"; -- cgit v1.2.3