diff options
| author | 2015-07-22 22:04:33 +0200 | |
|---|---|---|
| committer | 2015-07-22 22:04:33 +0200 | |
| commit | de2e221aca0639c45cfe30f049ec71a493b17a5c (patch) | |
| tree | ed53112ecd9dd883c0a6bd729f4ec131e7881651 /app/views/auth | |
| parent | 3a929138b000a45f57b3a6c62d5cfa72b842538c (diff) | |
Fix translations
See https://github.com/FreshRSS/FreshRSS/issues/679
Diffstat (limited to 'app/views/auth')
| -rw-r--r-- | app/views/auth/formLogin.phtml | 2 | ||||
| -rw-r--r-- | app/views/auth/personaLogin.phtml | 2 | ||||
| -rw-r--r-- | app/views/auth/register.phtml | 4 |
3 files changed, 3 insertions, 5 deletions
diff --git a/app/views/auth/formLogin.phtml b/app/views/auth/formLogin.phtml index 3a6053065..b0083944f 100644 --- a/app/views/auth/formLogin.phtml +++ b/app/views/auth/formLogin.phtml @@ -2,7 +2,7 @@ <h1><?php echo _t('gen.auth.login'); ?></h1> <?php if (!max_registrations_reached()) { ?> - <a href="<?php echo _url('auth', 'register'); ?>"><?php echo _t('gen.auth.register.ask'); ?></a> + <a href="<?php echo _url('auth', 'register'); ?>"><?php echo _t('gen.auth.registration.ask'); ?></a> <?php } ?> <form id="crypto-form" method="post" action="<?php echo _url('auth', 'login'); ?>"> diff --git a/app/views/auth/personaLogin.phtml b/app/views/auth/personaLogin.phtml index 91349a67e..c6d738bf6 100644 --- a/app/views/auth/personaLogin.phtml +++ b/app/views/auth/personaLogin.phtml @@ -3,7 +3,7 @@ <h1><?php echo _t('gen.auth.login'); ?></h1> <?php if (!max_registrations_reached()) { ?> - <a href="<?php echo _url('auth', 'register'); ?>"><?php echo _t('gen.auth.register.ask'); ?></a> + <a href="<?php echo _url('auth', 'register'); ?>"><?php echo _t('gen.auth.registration.ask'); ?></a> <?php } ?> <p> diff --git a/app/views/auth/register.phtml b/app/views/auth/register.phtml index 96c91f411..ada654b15 100644 --- a/app/views/auth/register.phtml +++ b/app/views/auth/register.phtml @@ -1,12 +1,10 @@ <?php /* TODO list * - Show help for username and password formats - * - Don't show this page if there is no more free account slots - * - Fix i18n */ ?> <div class="prompt"> - <h1><?php echo _t('gen.auth.register'); ?></h1> + <h1><?php echo _t('gen.auth.registration'); ?></h1> <form method="post" action="<?php echo _url('user', 'create'); ?>"> <div> |
