diff --git a/frontend/src/i18n.js b/frontend/src/i18n.js
index 20d578e75..a7e7e3356 100644
--- a/frontend/src/i18n.js
+++ b/frontend/src/i18n.js
@@ -48,9 +48,43 @@ const numberFormats = {
},
}
+const dateTimeFormats = {
+ en: {
+ short: {
+ year: 'numeric',
+ month: 'numeric',
+ day: 'numeric',
+ },
+ long: {
+ year: 'numeric',
+ month: 'short',
+ day: 'numeric',
+ weekday: 'short',
+ hour: 'numeric',
+ minute: 'numeric',
+ },
+ },
+ de: {
+ short: {
+ day: 'numeric',
+ month: 'numeric',
+ year: 'numeric',
+ },
+ long: {
+ day: 'numeric',
+ month: 'short',
+ year: 'numeric',
+ weekday: 'short',
+ hour: 'numeric',
+ minute: 'numeric',
+ },
+ },
+}
+
export default new VueI18n({
locale: 'en',
fallbackLocale: 'en',
messages: loadLocaleMessages(),
numberFormats,
+ dateTimeFormats,
})
diff --git a/frontend/src/views/Pages/AccountOverview/GddSend/TransactionConfirmation.vue b/frontend/src/views/Pages/AccountOverview/GddSend/TransactionConfirmation.vue
index 1ccbcf8c2..4749a0a60 100644
--- a/frontend/src/views/Pages/AccountOverview/GddSend/TransactionConfirmation.vue
+++ b/frontend/src/views/Pages/AccountOverview/GddSend/TransactionConfirmation.vue
@@ -16,8 +16,7 @@