Adds option to Remember Me for a long time

This commit is contained in:
Alicia Sykes 2021-09-19 14:41:18 +01:00
parent cf5f7234eb
commit e83cdc014f
2 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,7 @@
"remember-me-hour": "4 Hours",
"remember-me-day": "1 Day",
"remember-me-week": "1 Week",
"remember-me-long-time": "A long time",
"error-missing-username": "Missing Username",
"error-missing-password": "Missing Password",
"error-incorrect-username": "User not found",

View File

@ -111,6 +111,7 @@ export default {
{ label: this.$t('login.remember-me-hour'), time: 14400 * 1000 },
{ label: this.$t('login.remember-me-day'), time: 86400 * 1000 },
{ label: this.$t('login.remember-me-week'), time: 604800 * 1000 },
{ label: this.$t('login.remember-me-long-time'), time: 604800 * 52 * 1000 },
];
},
/* Translations for login response messages */