mirror of
https://github.com/friendica/friendica
synced 2024-11-18 06:23:41 +00:00
Move L10n::withLang() calls to DI::l10n()->withLang() calls
This commit is contained in:
parent
a9a36fb302
commit
d3255afa66
4 changed files with 5 additions and 5 deletions
|
@ -57,7 +57,7 @@ function notification($params)
|
||||||
$params['to_email'] = ($params['to_email'] ?? '') ?: $user['email'];
|
$params['to_email'] = ($params['to_email'] ?? '') ?: $user['email'];
|
||||||
|
|
||||||
// from here on everything is in the recipients language
|
// from here on everything is in the recipients language
|
||||||
$l10n = L10n::withLang($params['language']);
|
$l10n = DI::l10n()->withLang($params['language']);
|
||||||
|
|
||||||
$banner = $l10n->t('Friendica Notification');
|
$banner = $l10n->t('Friendica Notification');
|
||||||
$product = FRIENDICA_PLATFORM;
|
$product = FRIENDICA_PLATFORM;
|
||||||
|
|
|
@ -36,7 +36,7 @@ function user_allow($hash)
|
||||||
Worker::add(PRIORITY_LOW, "Directory", $url);
|
Worker::add(PRIORITY_LOW, "Directory", $url);
|
||||||
}
|
}
|
||||||
|
|
||||||
$l10n = L10n::withLang($register['language']);
|
$l10n = DI::l10n()->withLang($register['language']);
|
||||||
|
|
||||||
$res = User::sendRegisterOpenEmail(
|
$res = User::sendRegisterOpenEmail(
|
||||||
$l10n,
|
$l10n,
|
||||||
|
|
|
@ -253,7 +253,7 @@ class Update
|
||||||
$sent[] = $admin['email'];
|
$sent[] = $admin['email'];
|
||||||
|
|
||||||
$lang = (($admin['language'])?$admin['language']:'en');
|
$lang = (($admin['language'])?$admin['language']:'en');
|
||||||
$l10n = L10n::withLang($lang);
|
$l10n = DI::l10n()->withLang($lang);
|
||||||
|
|
||||||
$preamble = Strings::deindent($l10n->t("
|
$preamble = Strings::deindent($l10n->t("
|
||||||
The friendica developers released update %s recently,
|
The friendica developers released update %s recently,
|
||||||
|
@ -295,7 +295,7 @@ class Update
|
||||||
$sent[] = $admin['email'];
|
$sent[] = $admin['email'];
|
||||||
|
|
||||||
$lang = (($admin['language']) ? $admin['language'] : 'en');
|
$lang = (($admin['language']) ? $admin['language'] : 'en');
|
||||||
$l10n = L10n::withLang($lang);
|
$l10n = DI::l10n()->withLang($lang);
|
||||||
|
|
||||||
$preamble = Strings::deindent($l10n->t("
|
$preamble = Strings::deindent($l10n->t("
|
||||||
The friendica database was successfully updated from %s to %s.",
|
The friendica database was successfully updated from %s to %s.",
|
||||||
|
|
|
@ -297,7 +297,7 @@ class Register extends BaseModule
|
||||||
// Only send a password mail when the password wasn't manually provided
|
// Only send a password mail when the password wasn't manually provided
|
||||||
if (empty($_POST['password1']) || empty($_POST['confirm'])) {
|
if (empty($_POST['password1']) || empty($_POST['confirm'])) {
|
||||||
$res = Model\User::sendRegisterOpenEmail(
|
$res = Model\User::sendRegisterOpenEmail(
|
||||||
L10n::withLang($arr['language']),
|
DI::l10n()->withLang($arr['language']),
|
||||||
$user,
|
$user,
|
||||||
Config::get('config', 'sitename'),
|
Config::get('config', 'sitename'),
|
||||||
$base_url,
|
$base_url,
|
||||||
|
|
Loading…
Reference in a new issue