X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fmanage.php;h=0f60e704e4d299e5566dc044e9ce92646a4d48d9;hb=5af9596dde162b1b9819869e3d5129f571a1c503;hp=f2781f10815876dd412a320109c1ee9183eba9fc;hpb=26b335ef3d8b1ec4e1b4e22cd7d3c34e66d2549d;p=friendica.git diff --git a/mod/manage.php b/mod/manage.php index f2781f1081..0f60e704e4 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -1,10 +1,14 @@ user['nickname'] ); // NOTREACHED @@ -102,7 +128,7 @@ function manage_post(App $a) { function manage_content(App $a) { if (! local_user()) { - notice( t('Permission denied.') . EOL); + notice(L10n::t('Permission denied.') . EOL); return; } @@ -151,11 +177,11 @@ function manage_content(App $a) { } $o = replace_macros(get_markup_template('manage.tpl'), [ - '$title' => t('Manage Identities and/or Pages'), - '$desc' => t('Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'), - '$choose' => t('Select an identity to manage: '), + '$title' => L10n::t('Manage Identities and/or Pages'), + '$desc' => L10n::t('Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'), + '$choose' => L10n::t('Select an identity to manage: '), '$identities' => $identities, - '$submit' => t('Submit'), + '$submit' => L10n::t('Submit'), ]); return $o;