aboutsummaryrefslogtreecommitdiffstats
path: root/view/es-es/hstrings.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-06-23 17:10:35 +0000
committerMario <mario@mariovavti.com>2022-06-23 17:10:35 +0000
commite0915cffda34c9a83155281b85fac3d83445c141 (patch)
tree15dde777d31dd0dce0805a3719cf018b66431e94 /view/es-es/hstrings.php
parent7602de85c3c9e1bfd05534ec01191bc26c00ee94 (diff)
downloadvolse-hubzilla-e0915cffda34c9a83155281b85fac3d83445c141.tar.gz
volse-hubzilla-e0915cffda34c9a83155281b85fac3d83445c141.tar.bz2
volse-hubzilla-e0915cffda34c9a83155281b85fac3d83445c141.zip
es: update plural function
Diffstat (limited to 'view/es-es/hstrings.php')
-rw-r--r--view/es-es/hstrings.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php
index 6df4be5cf..47a18171d 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)";