]> git.mxchange.org Git - friendica.git/blobdiff - mod/profperm.php
Merge pull request #8141 from annando/brief2
[friendica.git] / mod / profperm.php
index 0377a5f1b158e89ef3c8a0b4dfb8dcb820f41e0c..2e8803fde3345d65d1491bce9ef1ef0429f954f3 100644 (file)
@@ -4,8 +4,6 @@
  */
 use Friendica\App;
 use Friendica\Core\Config;
-use Friendica\Core\L10n;
-use Friendica\Core\PConfig;
 use Friendica\Core\Protocol;
 use Friendica\Content\Text\HTML;
 use Friendica\Database\DBA;
@@ -28,13 +26,13 @@ function profperm_init(App $a)
 function profperm_content(App $a) {
 
        if (!local_user()) {
-               notice(L10n::t('Permission denied') . EOL);
+               notice(DI::l10n()->t('Permission denied') . EOL);
                return;
        }
 
 
        if ($a->argc < 2) {
-               notice(L10n::t('Invalid profile identifier.') . EOL );
+               notice(DI::l10n()->t('Invalid profile identifier.') . EOL );
                return;
        }
 
@@ -67,7 +65,7 @@ function profperm_content(App $a) {
                        intval(local_user())
                );
                if (!DBA::isResult($r)) {
-                       notice(L10n::t('Invalid profile identifier.') . EOL );
+                       notice(DI::l10n()->t('Invalid profile identifier.') . EOL );
                        return;
                }
                $profile = $r[0];
@@ -113,11 +111,11 @@ function profperm_content(App $a) {
                                        $ingroup[] = $member['id'];
                }
 
-               $o .= '<h2>' . L10n::t('Profile Visibility Editor') . '</h2>';
+               $o .= '<h2>' . DI::l10n()->t('Profile Visibility Editor') . '</h2>';
 
-               $o .= '<h3>' . L10n::t('Profile') . ' \'' . $profile['profile-name'] . '\'</h3>';
+               $o .= '<h3>' . DI::l10n()->t('Profile') . ' \'' . $profile['profile-name'] . '\'</h3>';
 
-               $o .= '<div id="prof-edit-desc">' . L10n::t('Click on a contact to add or remove.') . '</div>';
+               $o .= '<div id="prof-edit-desc">' . DI::l10n()->t('Click on a contact to add or remove.') . '</div>';
 
        }
 
@@ -126,7 +124,7 @@ function profperm_content(App $a) {
                $o = '';
 
        $o .= '<div id="prof-members-title">';
-       $o .= '<h3>' . L10n::t('Visible To') . '</h3>';
+       $o .= '<h3>' . DI::l10n()->t('Visible To') . '</h3>';
        $o .= '</div>';
        $o .= '<div id="prof-members">';
 
@@ -142,7 +140,7 @@ function profperm_content(App $a) {
        $o .= '<hr id="prof-separator" />';
 
        $o .= '<div id="prof-all-contcts-title">';
-       $o .= '<h3>' . L10n::t("All Contacts \x28with secure profile access\x29") . '</h3>';
+       $o .= '<h3>' . DI::l10n()->t("All Contacts \x28with secure profile access\x29") . '</h3>';
        $o .= '</div>';
        $o .= '<div id="prof-all-contacts">';