mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-10 17:14:26 +02:00
Move L10n::t() calls to DI::l10n()->t() calls
This commit is contained in:
parent
af88c2daa3
commit
5dfee31108
175 changed files with 2841 additions and 2841 deletions
|
@ -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">';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue