diff options
author | Mario <mario@mariovavti.com> | 2023-01-04 20:20:14 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-01-04 20:20:14 +0000 |
commit | 7d4bcc2e8bb8e91d5bbb2c4cf3c10555ebda0bca (patch) | |
tree | 8f0e71b6d866275b3b260e13d151f753b80952d7 /Zotlabs | |
parent | 2eb4d8762101df4e5dc6feddcfd479727853763b (diff) | |
download | volse-hubzilla-7d4bcc2e8bb8e91d5bbb2c4cf3c10555ebda0bca.tar.gz volse-hubzilla-7d4bcc2e8bb8e91d5bbb2c4cf3c10555ebda0bca.tar.bz2 volse-hubzilla-7d4bcc2e8bb8e91d5bbb2c4cf3c10555ebda0bca.zip |
translateable strings
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Widget/Channel_activities.php | 4 |
1 files 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 = '<div id="channel-activities" class="d-none overflow-hidden">'; - $o .= '<h2 class="mb-4">Welcome ' . self::$channel['channel_name'] . '!</h2>'; + $o .= '<h2 class="mb-4">' . t('Welcome') . ' ' . self::$channel['channel_name'] . '!</h2>'; //$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 .= '<h3>No recent activity to display</h3>'; + $o .= '<h3>' . t('No recent activities') . '</h3>'; $o .= '</div>'; return $o; } |