diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-12-03 20:22:02 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-12-03 21:24:29 +0100 |
commit | 5e14da67e1329947a14cc4f009cebcfe4a5ece2f (patch) | |
tree | 6b2c6e929fe9be1de5bbf9a309cd4b0cb961e5ca | |
parent | 577647154714dee00954d712ab4f31b77b3f5dff (diff) | |
download | volse-hubzilla-5e14da67e1329947a14cc4f009cebcfe4a5ece2f.tar.gz volse-hubzilla-5e14da67e1329947a14cc4f009cebcfe4a5ece2f.tar.bz2 volse-hubzilla-5e14da67e1329947a14cc4f009cebcfe4a5ece2f.zip |
quickfix for es-es language
(cherry picked from commit 6b68a76bbe2869c505e4c12d2b25ceb59d3ab813)
-rw-r--r-- | view/es-es/hstrings.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 67f499feb..1dd38b930 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -2,10 +2,10 @@ 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);"; +App::$strings["plural_function_code"] = "(n != 1 ? 1 : 0)"; App::$strings["Can view my channel stream and posts"] = "Pueden verse la actividad y publicaciones de mi canal"; App::$strings["Can send me their channel stream and posts"] = "Se me pueden enviar entradas y contenido de un canal"; App::$strings["Can view my default channel profile"] = "Puede verse mi perfil de canal predeterminado."; |