diff options
author | Mario <mario@mariovavti.com> | 2021-03-14 20:29:29 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-03-14 20:29:29 +0000 |
commit | d35849c418f3bd449b98bafd3208fcb233372356 (patch) | |
tree | 3615a068b5d2fc14e5ff3873e018bbf176e1a448 /view/es-es | |
parent | ed64eba13adf55e564d127e1640409fccca00fd3 (diff) | |
parent | a9a112e06358eec9040cdc03e1f7bf93ef21378d (diff) | |
download | volse-hubzilla-d35849c418f3bd449b98bafd3208fcb233372356.tar.gz volse-hubzilla-d35849c418f3bd449b98bafd3208fcb233372356.tar.bz2 volse-hubzilla-d35849c418f3bd449b98bafd3208fcb233372356.zip |
Merge branch 'dev' into air
Diffstat (limited to 'view/es-es')
-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)"; |