diff options
author | Mario <mario@mariovavti.com> | 2021-06-04 11:10:14 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-06-04 11:10:14 +0200 |
commit | a3f4ad9ea0bb3d4641eab5d3de862358d5caeecb (patch) | |
tree | 61991907dbfc504904c7a81d059d26dd1b66d5f6 | |
parent | ec3b1131d9fc2099cb9ea4a5ea3c194670793941 (diff) | |
download | volse-hubzilla-a3f4ad9ea0bb3d4641eab5d3de862358d5caeecb.tar.gz volse-hubzilla-a3f4ad9ea0bb3d4641eab5d3de862358d5caeecb.tar.bz2 volse-hubzilla-a3f4ad9ea0bb3d4641eab5d3de862358d5caeecb.zip |
fix es plural return
-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)"; |