diff options
author | Michael Weimann <mail@michael-weimann.eu> | 2018-12-19 23:27:36 +0100 |
---|---|---|
committer | Michael Weimann <mail@michael-weimann.eu> | 2018-12-19 23:27:36 +0100 |
commit | cfca20c14c926068ce971eb3e48cd4742cbb3a75 (patch) | |
tree | bd4ddb3b39ee4fcd6f1d0522698608bc3a475701 /core/templates | |
parent | ad9ece4e4839297e50d34bb50481a78407f6b835 (diff) | |
download | nextcloud-server-cfca20c14c926068ce971eb3e48cd4742cbb3a75.tar.gz nextcloud-server-cfca20c14c926068ce971eb3e48cd4742cbb3a75.zip |
Make the footer "Get your own free account" translatable
Signed-off-by: Michael Weimann <mail@michael-weimann.eu>
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/layout.public.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/templates/layout.public.php b/core/templates/layout.public.php index 8a87e88a16c..ad9a1e370eb 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 } |