diff options
author | Sascha Wiswedel <sascha.wiswedel@nextcloud.com> | 2020-01-06 14:44:31 +0100 |
---|---|---|
committer | Sascha Wiswedel <sascha.wiswedel@nextcloud.com> | 2020-01-06 14:44:31 +0100 |
commit | e24c7a8900dc6bfd68babd22ef03f252d68e2457 (patch) | |
tree | 546efa40c6c8073015c121b50380878cd9413b20 /core/templates/twofactorselectchallenge.php | |
parent | e5d3efb99e2d77b30339496285e15d5d00fc9e60 (diff) | |
download | nextcloud-server-e24c7a8900dc6bfd68babd22ef03f252d68e2457.tar.gz nextcloud-server-e24c7a8900dc6bfd68babd22ef03f252d68e2457.zip |
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>
Diffstat (limited to 'core/templates/twofactorselectchallenge.php')
-rw-r--r-- | core/templates/twofactorselectchallenge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/twofactorselectchallenge.php b/core/templates/twofactorselectchallenge.php index 8508039268e..86561cddb36 100644 --- a/core/templates/twofactorselectchallenge.php +++ b/core/templates/twofactorselectchallenge.php @@ -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> |