diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-06-27 11:37:08 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-06-27 11:37:08 +0200 |
commit | 4afdf922f2683ebe90748debc30d86988aeacdc9 (patch) | |
tree | a77d2ae398dcd4ba70913f147f4616c8c1ab54d4 /core | |
parent | 81ad19b4e235f4ee12b10ec2a6f0c434f8b861fb (diff) | |
download | nextcloud-server-4afdf922f2683ebe90748debc30d86988aeacdc9.tar.gz nextcloud-server-4afdf922f2683ebe90748debc30d86988aeacdc9.zip |
Make skip navigation links translatable
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.user.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 26669f4a573..44820c4a9a8 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -28,8 +28,8 @@ <body id="<?php p($_['bodyid']);?>"> <?php include 'layout.noscript.warning.php'; ?> - <a href="#app-content" class="button primary skip-navigation skip-content">Skip to main content</a> - <a href="#app-navigation" class="button primary skip-navigation">Skip to navigation of app</a> + <a href="#app-content" class="button primary skip-navigation skip-content"><?php p($l->t('Skip to main content')); ?></a> + <a href="#app-navigation" class="button primary skip-navigation"><?php p($l->t('Skip to navigation of app')); ?></a> <div id="notification-container"> <div id="notification"></div> |