From 7d4bcc2e8bb8e91d5bbb2c4cf3c10555ebda0bca Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 4 Jan 2023 20:20:14 +0000 Subject: translateable strings --- Zotlabs/Widget/Channel_activities.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Zotlabs/Widget/Channel_activities.php b/Zotlabs/Widget/Channel_activities.php index 9acde591d..06080f8c8 100644 --- a/Zotlabs/Widget/Channel_activities.php +++ b/Zotlabs/Widget/Channel_activities.php @@ -26,7 +26,7 @@ class Channel_activities { self::$channel = App::get_channel(); $o = '
'; - $o .= '

Welcome ' . self::$channel['channel_name'] . '!

'; + $o .= '

' . t('Welcome') . ' ' . self::$channel['channel_name'] . '!

'; //$o .= 'Last login date: ' . get_pconfig(self::$uid, 'system', 'stored_login_date') . ' from ' . get_pconfig(self::$uid, 'system', 'stored_login_addr'); self::get_photos_activity(); @@ -43,7 +43,7 @@ class Channel_activities { call_hooks('channel_activities_widget', $hookdata); if (!$hookdata['activities']) { - $o .= '

No recent activity to display

'; + $o .= '

' . t('No recent activities') . '

'; $o .= '
'; return $o; } -- cgit v1.2.3