diff --git a/CHANGELOG.md b/CHANGELOG.md index 85b007f..5b0c522 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,7 +23,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - The style has been entirely reworked using Bootstrap instead of Bulma - It is now impossible to include the separator in the dedicated name - When adding a new account, error messages are displayed alongside each affected elements whenever possible -- By default, the new sub-address form reset button switches to the default account ## Fixed - Invalid preferences are now automatically corrected diff --git a/src/const.js b/src/const.js index b743a44..f8ed9a5 100644 --- a/src/const.js +++ b/src/const.js @@ -6,4 +6,3 @@ export const allowedLocales = [ 'en', 'fr', ]; -export const resetToDefaultAccount = true; diff --git a/src/locales/en.json b/src/locales/en.json index 2a92660..802096b 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -53,7 +53,6 @@ "title": "Preferences", "language": "Language", "colorMode": "Theme", - "resetToDefault": "Switch to the default account when the new sub-address form is reset", "lightTheme": "Light", "darkTheme": "Dark", "close": "@:invariants.controls.close" diff --git a/src/locales/fr.json b/src/locales/fr.json index 8791722..b796013 100644 --- a/src/locales/fr.json +++ b/src/locales/fr.json @@ -53,7 +53,6 @@ "title": "Préférences", "language": "Langue", "colorMode": "Thème", - "resetToDefault": "Basculer sur le compte par défaut lorsque le formulaire de sous-adresse est réinitialisé", "lightTheme": "Clair", "darkTheme": "Sombre", "close": "@:invariants.controls.close" diff --git a/src/views/ConfigView.vue b/src/views/ConfigView.vue index 15ff2f1..0e534f1 100644 --- a/src/views/ConfigView.vue +++ b/src/views/ConfigView.vue @@ -1,5 +1,4 @@