diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-02-28 08:38:56 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-02-28 08:38:56 +0100 |
commit | 924c8db71206dca0baa1e95c63719205404d5380 (patch) | |
tree | 6f05cd8b66a7b5918a83f0fbaf583cb5e8c4f8ac /Zotlabs | |
parent | 58ee2a49fa23bdc0de6c6cac59992d3a6a9c955e (diff) | |
download | volse-hubzilla-924c8db71206dca0baa1e95c63719205404d5380.tar.gz volse-hubzilla-924c8db71206dca0baa1e95c63719205404d5380.tar.bz2 volse-hubzilla-924c8db71206dca0baa1e95c63719205404d5380.zip |
missed some string for translation - update strings
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Lib/Enotify.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Lib/Enotify.php b/Zotlabs/Lib/Enotify.php index 1461a2e18..61c98c881 100644 --- a/Zotlabs/Lib/Enotify.php +++ b/Zotlabs/Lib/Enotify.php @@ -138,7 +138,7 @@ class Enotify { $itemlink = $params['link']; - $action = 'commented on'; + $action = t('commented on'); if(array_key_exists('item',$params) && in_array($params['item']['verb'], [ACTIVITY_LIKE, ACTIVITY_DISLIKE])) { @@ -149,10 +149,10 @@ class Enotify { } if(activity_match($params['verb'], ACTIVITY_LIKE)) - $action = 'liked'; + $action = t('liked'); if(activity_match($params['verb'], ACTIVITY_DISLIKE)) - $action = 'disliked'; + $action = t('disliked'); } |