aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-02-28 08:38:56 +0100
committerMario Vavti <mario@mariovavti.com>2018-02-28 08:39:57 +0100
commit90c82e4394240750333358dfad95c3745d7ea6ef (patch)
tree894c1b7535016ba7d4c548d0f19f78b9c811d49c /Zotlabs/Lib
parent68c6d7a099e8615a135b75464e308c719bd9b0fe (diff)
downloadvolse-hubzilla-90c82e4394240750333358dfad95c3745d7ea6ef.tar.gz
volse-hubzilla-90c82e4394240750333358dfad95c3745d7ea6ef.tar.bz2
volse-hubzilla-90c82e4394240750333358dfad95c3745d7ea6ef.zip
missed some string for translation - update strings
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r--Zotlabs/Lib/Enotify.php6
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');
}