fix wording log in vs. login

"log in" is used as verb, while "login" is a noun.
In this case, what's supposed to be cancelled is the login process - therefore the noun must be used.

Signed-off-by: Sascha Wiswedel <sascha.wiswedel@nextcloud.com>
This commit is contained in:
Sascha Wiswedel 2020-01-06 14:44:31 +01:00
parent e5d3efb99e
commit e24c7a8900
No known key found for this signature in database
GPG Key ID: DC336C0F05DBA0CD
4 changed files with 4 additions and 4 deletions

View File

@ -72,6 +72,6 @@ $noProviders = empty($_['providers']);
</p>
<?php endif; ?>
<p><a class="two-factor-secondary" href="<?php print_unescaped($_['logout_url']); ?>">
<?php p($l->t('Cancel log in')) ?>
<?php p($l->t('Cancel login')) ?>
</a></p>
</div>

View File

@ -11,6 +11,6 @@ $template = $_['template'];
<h2 class="two-factor-header"><?php p($provider->getDisplayName()); ?></h2>
<?php print_unescaped($template); ?>
<p><a class="two-factor-secondary" href="<?php print_unescaped($_['logout_url']); ?>">
<?php p($l->t('Cancel log in')) ?>
<?php p($l->t('Cancel login')) ?>
</a></p>
</div>

View File

@ -53,6 +53,6 @@ declare(strict_types=1);
<?php endforeach; ?>
</ul>
<p><a class="two-factor-secondary" href="<?php print_unescaped($_['logout_url']); ?>">
<?php p($l->t('Cancel log in')) ?>
<?php p($l->t('Cancel login')) ?>
</a></p>
</div>

View File

@ -34,6 +34,6 @@ $template = $_['template'];
</p>
<?php endif; ?>
<p><a class="two-factor-secondary" href="<?php print_unescaped($_['logout_url']); ?>">
<?php p($l->t('Cancel log in')) ?>
<?php p($l->t('Cancel login')) ?>
</a></p>
</div>