Audio TODO
@@ -130,9 +121,11 @@ import ResetAccount from './inlineSettings/resetAccount';
import DeleteAccount from './inlineSettings/deleteAccount';
import { sharedInlineSettingStore } from './components/inlineSettingMixin';
import LanguageSetting from './inlineSettings/languageSetting';
+import DateFormatSetting from '@/pages/settings/inlineSettings/dateFormatSetting';
export default {
components: {
+ DateFormatSetting,
LanguageSetting,
DeleteAccount,
ResetAccount,
diff --git a/website/client/src/pages/settings/inlineSettings/dateFormatSetting.vue b/website/client/src/pages/settings/inlineSettings/dateFormatSetting.vue
new file mode 100644
index 0000000000..1f3aa21311
--- /dev/null
+++ b/website/client/src/pages/settings/inlineSettings/dateFormatSetting.vue
@@ -0,0 +1,113 @@
+
+
+
+ |
+ {{ $t("dateFormat") }}
+ |
+
+ {{ currentActiveFormat }}
+ |
+
+
+ {{ $t('edit') }}
+
+ |
+
+
+ |
+
+ {{ $t("dateFormat") }}
+
+
+ {{ $t("dateFormatDisclaimer") }}
+
+
+
+
+ |
+
+
+
+
+
+
+
diff --git a/website/common/locales/en/settings.json b/website/common/locales/en/settings.json
index caa4b34d97..5656593a21 100644
--- a/website/common/locales/en/settings.json
+++ b/website/common/locales/en/settings.json
@@ -204,6 +204,7 @@
"changeEmailDisclaimer": "This is the email address that you use to log in to Habitica, as well as receive notifications.",
"changeDisplayNameDisclaimer": "This is the name that will be displayed for your Avatar in Habitica.",
"changePasswordDisclaimer": "Password must be 8 characters or more. We recommend a strong password that you're not using elsewhere.",
+ "dateFormatDisclaimer": "Adjust the date formatting across Habitica.",
"verifyUsernameVeteranPet": "One of these Veteran Pets will be waiting for you after you've finished confirming!",
"mentioning": "Mentioning",
"suggestMyUsername": "Suggest my username",
|