Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-01-03 09:39:57 +0300
committerGitHub <noreply@github.com>2019-01-03 09:39:57 +0300
commit3698a44f17721ad3dc3cce4b679908ead8550dd5 (patch)
tree5453c902b3a2817f02f3141a90ff734164307a7e /core
parent6e78ac08881db2a53aadb271142b8e52bc8e014d (diff)
parent5fae1b9cdadec38185c2cf389685307e67d77be6 (diff)
Merge pull request #13322 from nextcloud/backport/13163/stable14
[stable14] Make the footer "Get your own free account" translatable
Diffstat (limited to 'core')
-rw-r--r--core/templates/layout.public.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php
index 0558da52d0b..85146aa79a3 100644
--- a/core/templates/layout.public.php
+++ b/core/templates/layout.public.php
@@ -83,7 +83,9 @@
if ($_['showSimpleSignUpLink']) {
?>
<p>
- <a href="https://nextcloud.com/signup/" target="_blank" rel="noreferrer noopener">Get your own free account</a>
+ <a href="https://nextcloud.com/signup/" target="_blank" rel="noreferrer noopener">
+ <?php p($l->t('Get your own free account')); ?>
+ </a>
</p>
<?php
}