diff options
author | Mario <mario@mariovavti.com> | 2021-06-04 11:10:37 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-06-04 11:10:37 +0200 |
commit | 131ce826c325b7a2a36dfcfe7984eac03c989cfa (patch) | |
tree | bd8a48b4b0466b5ba854a4ad54490205eb8b655c | |
parent | 74c0345009962efb4cf6e7e0d4d093ab49aee381 (diff) | |
parent | a3f4ad9ea0bb3d4641eab5d3de862358d5caeecb (diff) | |
download | volse-hubzilla-131ce826c325b7a2a36dfcfe7984eac03c989cfa.tar.gz volse-hubzilla-131ce826c325b7a2a36dfcfe7984eac03c989cfa.tar.bz2 volse-hubzilla-131ce826c325b7a2a36dfcfe7984eac03c989cfa.zip |
Merge branch 'dev'
-rw-r--r-- | CHANGELOG | 28 | ||||
-rw-r--r-- | view/es-es/hstrings.php | 2 |
2 files changed, 29 insertions, 1 deletions
@@ -1,3 +1,31 @@ +Hubzilla 5.6.1 (2021-06-04) + - Update spanish translations + - Fix login name label if register email verification is disabled + - Fix zotinfo issue with deleted channels + - Make pubstream ordering configurable + - Fix article summary duplicated when editing + - Update polish translations + - Fix admin setting for invitations not displayed correctly + - Fix registration in invite only mode + - Fix notifications not returning offset -1 when returning early + - Fix direct messages for items imported via sync + - Bring back the channel protocols hooks + - Fix security headers switching + - Fix magic auth for delegated channels + - Introduce drop_query_params() for secure query parameter removal + - PHP8 fixes (ongoing) + - Fix menu wrapping regression + + Addons + - LDAPauth: fix regression creating an account + - Twitter: allow feeds crossposting + - Twitter: fix posting when post by default is disabled + - Pubcrawl: add litepub directMessage attribute + - Pubcrawl: allow xchan/hubloc upgrades from e.g. ostatus + - Diaspora: fix possible issue with missing hublocs + - Diaspora: refine dispatching of public of public items + + Hubzilla 5.6 (2021-05-11) - Improve postgres hubloc queries - Implement automatic duplicate singleton hubloc removal diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index d61cb65c2..025e5095d 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)"; |