diff options
author | Max Kostikov <max@kostikov.co> | 2021-03-14 11:43:47 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-15 08:50:13 +0000 |
commit | ee453c4acc4fd041fcbe53e6a5e9b316f6c23cc4 (patch) | |
tree | d8a366d4cfce7ad5b924a56cde9c4c6f870197ce | |
parent | 4d3524ba9dd155d71969debc5c24198e8bd7b7a1 (diff) | |
download | volse-hubzilla-ee453c4acc4fd041fcbe53e6a5e9b316f6c23cc4.tar.gz volse-hubzilla-ee453c4acc4fd041fcbe53e6a5e9b316f6c23cc4.tar.bz2 volse-hubzilla-ee453c4acc4fd041fcbe53e6a5e9b316f6c23cc4.zip |
Fix plurals variable
-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 097656a6c..c41cf9fe9 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 ? 1 : 0); + return ($n != 1 ? 1 : 0); }} App::$rtl = 0; App::$strings["plural_function_code"] = "(n != 1 ? 1 : 0)"; |