diff options
author | Mario <mario@mariovavti.com> | 2024-07-22 21:19:28 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-07-22 21:19:28 +0000 |
commit | 39e5e29ce5ff98e87c1dd824d5f06a6d2b090ae0 (patch) | |
tree | d3f4adc3e6cd5ee8c5bcdd0fc8f21799f69ebb13 /Zotlabs | |
parent | f4ffef967aeea6da57edcf21a1094e14f6d15e2c (diff) | |
download | volse-hubzilla-39e5e29ce5ff98e87c1dd824d5f06a6d2b090ae0.tar.gz volse-hubzilla-39e5e29ce5ff98e87c1dd824d5f06a6d2b090ae0.tar.bz2 volse-hubzilla-39e5e29ce5ff98e87c1dd824d5f06a6d2b090ae0.zip |
fix logic and add translateable strings
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/ThreadItem.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ThreadItem.php b/Zotlabs/Lib/ThreadItem.php index 960cc82a9..d1206c604 100644 --- a/Zotlabs/Lib/ThreadItem.php +++ b/Zotlabs/Lib/ThreadItem.php @@ -543,7 +543,8 @@ class ThreadItem { 'moderate_approve' => t('Approve'), 'moderate_delete' => t('Delete'), 'rtl' => in_array($item['lang'], rtl_languages()), - 'reactions_allowed' => $reactions_allowed + 'reactions_allowed' => $reactions_allowed, + 'reaction_str' => [t('Add yours'), t('Remove yours')] ); $arr = array('item' => $item, 'output' => $tmp_item); |