Move L10n::t() calls to DI::l10n()->t() calls
This commit is contained in:
@@ -27,13 +27,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;
|
||||
}
|
||||
|
||||
@@ -66,7 +66,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];
|
||||
@@ -112,11 +112,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>';
|
||||
|
||||
}
|
||||
|
||||
@@ -125,7 +125,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">';
|
||||
|
||||
@@ -141,7 +141,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">';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user