diff options
author | Mario <mario@mariovavti.com> | 2024-05-14 09:05:02 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-05-14 09:05:02 +0000 |
commit | f086dfd8ca2508816c688aaaf5e9b0633605b9d9 (patch) | |
tree | 4f2e785f8c5721c2e5ac5090b80bbb1815ae3cde /view/es-es/hstrings.php | |
parent | 26cfc29303e6bfa31f612825c7e422fad2ed4f4e (diff) | |
download | volse-hubzilla-f086dfd8ca2508816c688aaaf5e9b0633605b9d9.tar.gz volse-hubzilla-f086dfd8ca2508816c688aaaf5e9b0633605b9d9.tar.bz2 volse-hubzilla-f086dfd8ca2508816c688aaaf5e9b0633605b9d9.zip |
missing semicolon and code readability
Diffstat (limited to 'view/es-es/hstrings.php')
-rw-r--r-- | view/es-es/hstrings.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 31f5de315..d10e40ed0 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -1,8 +1,11 @@ <?php -if(! function_exists("string_plural_select_es_es")) { -function string_plural_select_es_es($n){ - return ($n != 1 ? 1 : 0)}} +if(!function_exists("string_plural_select_es_es")) { + function string_plural_select_es_es($n) { + return ($n != 1 ? 1 : 0); + } +} + App::$rtl = 0; App::$strings["plural_function_code"] = "(n != 1 ? 1 : 0)"; App::$strings["Source channel not found."] = "No se ha encontrado el canal de origen."; |