Move L10n::t() calls to DI::l10n()->t() calls

This commit is contained in:
nupplaPhil 2020-01-18 20:52:34 +01:00
parent af88c2daa3
commit 5dfee31108
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
175 changed files with 2841 additions and 2841 deletions

View file

@ -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">';