diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-05-17 10:15:46 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2024-05-17 10:15:46 -0700 |
commit | 0bd384637a13a18e435dfe6b481f435231a28cd5 (patch) | |
tree | 694ad851e414019f37f8c9d8d1dc954cad9a1f53 /core | |
parent | 5b260ff480fbbefac6a41ebd8a14dd9a76a46df7 (diff) | |
download | nextcloud-server-0bd384637a13a18e435dfe6b481f435231a28cd5.tar.gz nextcloud-server-0bd384637a13a18e435dfe6b481f435231a28cd5.zip |
chore(core): Change "username" to "account name"
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/src/components/login/LoginForm.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/components/login/LoginForm.vue b/core/src/components/login/LoginForm.vue index 54e6fa97e95..c372e9e7017 100644 --- a/core/src/components/login/LoginForm.vue +++ b/core/src/components/login/LoginForm.vue @@ -238,9 +238,9 @@ export default { }, loginText() { if (this.emailEnabled) { - return t('core', 'Login with username or email') + return t('core', 'Login with account name or email') } - return t('core', 'Login with username') + return t('core', 'Login with account name') }, }, |