]> git.mxchange.org Git - friendica.git/blobdiff - mod/nogroup.php
Add attendance check to event reminder
[friendica.git] / mod / nogroup.php
index cb09dd3547aaab273c8f565a6f4814f803fc1b53..75781765e05b7e4dd785313e34b77ff169baa9d2 100644 (file)
@@ -39,8 +39,8 @@ function nogroup_content(App $a)
                        $contact_details = Contact::getDetailsByURL($rr['url'], local_user(), $rr);
 
                        $contacts[] = [
-                               'img_hover' => t('Visit %s\'s profile [%s]', $contact_details['name'], $rr['url']),
-                               'edit_hover' => t('Edit contact'),
+                               'img_hover' => L10n::t('Visit %s\'s profile [%s]', $contact_details['name'], $rr['url']),
+                               'edit_hover' => L10n::t('Edit contact'),
                                'photo_menu' => Contact::photoMenu($rr),
                                'id' => $rr['id'],
                                'thumb' => proxy_url($contact_details['thumb'], false, PROXY_SIZE_THUMB),
@@ -60,7 +60,7 @@ function nogroup_content(App $a)
        $o = replace_macros(
                $tpl,
                [
-               '$header' => t('Contacts who are not members of a group'),
+               '$header' => L10n::t('Contacts who are not members of a group'),
                '$contacts' => $contacts,
                '$paginate' => paginate($a)]
        );