Add translation string for "Back to top"

This commit is contained in:
Hypolite Petovan 2021-03-14 18:12:20 -04:00
parent ddbe8730ed
commit 011e67d680
2 changed files with 8 additions and 6 deletions

View File

@ -149,7 +149,7 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
</div><!--row--> </div><!--row-->
</div><!-- container --> </div><!-- container -->
<div id="back-to-top" title="back to top"></div> <div id="back-to-top" title="<?php echo DI::l10n()->t('Back to top')?>"></div>
</main> </main>
<footer> <footer>

View File

@ -20,6 +20,8 @@
* The default site template * The default site template
*/ */
use Friendica\DI;
?> ?>
<!DOCTYPE html > <!DOCTYPE html >
<html> <html>
@ -27,9 +29,9 @@
<title><?php if(!empty($page['title'])) echo $page['title'] ?></title> <title><?php if(!empty($page['title'])) echo $page['title'] ?></title>
<meta name="viewport" content="initial-scale=1.0"> <meta name="viewport" content="initial-scale=1.0">
<meta request="<?php echo htmlspecialchars($_REQUEST['pagename']) ?>"> <meta request="<?php echo htmlspecialchars($_REQUEST['pagename']) ?>">
<script type="text/javascript">var baseurl="<?php echo Friendica\DI::baseUrl() ?>";</script> <script type="text/javascript">var baseurl="<?php echo DI::baseUrl() ?>";</script>
<script type="text/javascript">var frio="<?php echo "view/theme/frio"; ?>";</script> <script type="text/javascript">var frio="<?php echo "view/theme/frio"; ?>";</script>
<?php $baseurl = Friendica\DI::baseUrl(); ?> <?php $baseurl = DI::baseUrl(); ?>
<?php $frio = "view/theme/frio"; ?> <?php $frio = "view/theme/frio"; ?>
<?php if(!empty($page['htmlhead'])) echo $page['htmlhead']; ?> <?php if(!empty($page['htmlhead'])) echo $page['htmlhead']; ?>
</head> </head>
@ -38,8 +40,8 @@
<a href="#content" class="sr-only sr-only-focusable"><?php echo DI::l10n()->t('Skip to main content'); ?></a> <a href="#content" class="sr-only sr-only-focusable"><?php echo DI::l10n()->t('Skip to main content'); ?></a>
<?php <?php
if(!empty($page['nav'])) { if(!empty($page['nav'])) {
echo str_replace("~config.sitename~",Friendica\DI::config()->get('config','sitename'), echo str_replace("~config.sitename~", DI::config()->get('config','sitename'),
str_replace("~system.banner~",Friendica\DI::config()->get('system','banner'), str_replace("~system.banner~", DI::config()->get('system','banner'),
$page['nav'] $page['nav']
));}; ));};
?> ?>
@ -70,7 +72,7 @@
</div><!--row--> </div><!--row-->
</div><!-- container --> </div><!-- container -->
<div id="back-to-top" title="back to top"></div> <div id="back-to-top" title="<?php echo DI::l10n()->t('Back to top')?>"></div>
</main> </main>
<footer> <footer>