diff options
author | Manuel Jiménez Friaza <mjfriaza@disroot.org> | 2019-02-21 12:59:29 +0100 |
---|---|---|
committer | Manuel Jiménez Friaza <mjfriaza@disroot.org> | 2019-02-21 12:59:29 +0100 |
commit | 3e2489465f22833a44c727b13bd784c20c47ced9 (patch) | |
tree | 9084af803b8bf23de545e1a526593925de1d1348 | |
parent | 301c1861f39ef58cd80e362087c784b9e5142a41 (diff) | |
parent | a5bf32a97d3685ccd07c44e8636b19ae3ea38b6c (diff) | |
download | volse-hubzilla-3e2489465f22833a44c727b13bd784c20c47ced9.tar.gz volse-hubzilla-3e2489465f22833a44c727b13bd784c20c47ced9.tar.bz2 volse-hubzilla-3e2489465f22833a44c727b13bd784c20c47ced9.zip |
Merge branch 'cherry-pick-a9b75d05' into 'es-es'
Fix es-es/hstrings.php
See merge request mjfriaza/core!5
-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 19c324386..11a187a33 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);"; |