diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-02-26 20:17:53 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-02-26 20:17:53 +0100 |
commit | 3bd2288ea91b512503df3e76b5e2f11f774d87c5 (patch) | |
tree | a2f604d2d60da59e616e4606768de68b6e22ed92 /Zotlabs/Widget | |
parent | f8f69767b7099c1803fbebcd10c51b63918be38c (diff) | |
download | volse-hubzilla-3bd2288ea91b512503df3e76b5e2f11f774d87c5.tar.gz volse-hubzilla-3bd2288ea91b512503df3e76b5e2f11f774d87c5.tar.bz2 volse-hubzilla-3bd2288ea91b512503df3e76b5e2f11f774d87c5.zip |
fix icon position and make string translatable
Diffstat (limited to 'Zotlabs/Widget')
-rw-r--r-- | Zotlabs/Widget/Notifications.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Zotlabs/Widget/Notifications.php b/Zotlabs/Widget/Notifications.php index d51cb0113..f2619c5cf 100644 --- a/Zotlabs/Widget/Notifications.php +++ b/Zotlabs/Widget/Notifications.php @@ -23,7 +23,8 @@ class Notifications { 'label' => t('Mark all notifications read') ], 'filter' => [ - 'label' => t('Show new posts only') + 'posts_label' => t('Show new posts only'), + 'name_label' => t('Filter by name') ] ]; @@ -41,7 +42,8 @@ class Notifications { 'label' => t('Mark all notifications seen') ], 'filter' => [ - 'label' => t('Show new posts only') + 'posts_label' => t('Show new posts only'), + 'name_label' => t('Filter by name') ] ]; @@ -136,7 +138,8 @@ class Notifications { 'label' => t('Mark all notifications seen') ], 'filter' => [ - 'label' => t('Show new posts only') + 'posts_label' => t('Show new posts only'), + 'name_label' => t('Filter by name') ] ]; } |