X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffbrowser.php;h=a4ade6f8c10eac558811aa60fc0821a606babdbe;hb=d1be68b75462df77100c9262134b70717635ddfe;hp=b1daa2cc235e41399d2834f0edc862e660363872;hpb=b852e5842bffcc1df1e5ac5d356fd9f19b7af499;p=friendica.git diff --git a/mod/fbrowser.php b/mod/fbrowser.php index b1daa2cc23..a4ade6f8c1 100644 --- a/mod/fbrowser.php +++ b/mod/fbrowser.php @@ -6,9 +6,9 @@ */ use Friendica\App; -use Friendica\Core\L10n; use Friendica\Core\Renderer; use Friendica\Database\DBA; +use Friendica\DI; use Friendica\Util\Images; use Friendica\Util\Strings; @@ -39,7 +39,7 @@ function fbrowser_content(App $a) switch ($a->argv[1]) { case "image": - $path = [["", L10n::t("Photos")]]; + $path = [["", DI::l10n()->t("Photos")]]; $albums = false; $sql_extra = ""; $sql_extra2 = " ORDER BY created DESC LIMIT 0, 10"; @@ -48,7 +48,7 @@ function fbrowser_content(App $a) $albums = q("SELECT distinct(`album`) AS `album` FROM `photo` WHERE `uid` = %d AND `album` != '%s' AND `album` != '%s' ", intval(local_user()), DBA::escape('Contact Photos'), - DBA::escape(L10n::t('Contact Photos')) + DBA::escape(DI::l10n()->t('Contact Photos')) ); function _map_folder1($el) @@ -72,12 +72,12 @@ function fbrowser_content(App $a) GROUP BY `resource-id` $sql_extra2", intval(local_user()), DBA::escape('Contact Photos'), - DBA::escape(L10n::t('Contact Photos')) + DBA::escape(DI::l10n()->t('Contact Photos')) ); function _map_files1($rr) { - $a = \get_app(); + $a = DI::app(); $types = Images::supportedTypes(); $ext = $types[$rr['type']]; $filename_e = $rr['filename']; @@ -106,9 +106,9 @@ function fbrowser_content(App $a) '$path' => $path, '$folders' => $albums, '$files' => $files, - '$cancel' => L10n::t('Cancel'), + '$cancel' => DI::l10n()->t('Cancel'), '$nickname' => $a->user['nickname'], - '$upload' => L10n::t('Upload') + '$upload' => DI::l10n()->t('Upload') ]); break; @@ -132,12 +132,12 @@ function fbrowser_content(App $a) $tpl = Renderer::getMarkupTemplate($template_file); $o = Renderer::replaceMacros($tpl, [ '$type' => 'file', - '$path' => [ [ "", L10n::t("Files")] ], + '$path' => [ [ "", DI::l10n()->t("Files")] ], '$folders' => false, '$files' => $files, - '$cancel' => L10n::t('Cancel'), + '$cancel' => DI::l10n()->t('Cancel'), '$nickname' => $a->user['nickname'], - '$upload' => L10n::t('Upload') + '$upload' => DI::l10n()->t('Upload') ]); }