@@ -12,8 +12,9 @@
{{ $t('error.empty-transactionlist') }}
-
+
@@ -23,7 +24,15 @@
:previousBookedBalance="previousBookedBalance(index)"
/>
-
+
+
+
{{ $t('lastMonth') }}
+
+
{{ linkedUser.firstName }} {{ linkedUser.lastName }}
- {{ balanceDate }}
- {{ balanceDate }}
+ {{ this.$d(new Date(balanceDate), 'short') }}
+ {{ this.$d(new Date(balanceDate), 'time') }}
{{ $t('decay.types.receive') }}
- {{ amount | GDD }}
+ {{ amount | GDD }}
diff --git a/frontend/src/components/Transactions/TransactionLinkSummary.vue b/frontend/src/components/Transactions/TransactionLinkSummary.vue
index a3a8853ce..20fd01383 100644
--- a/frontend/src/components/Transactions/TransactionLinkSummary.vue
+++ b/frontend/src/components/Transactions/TransactionLinkSummary.vue
@@ -10,7 +10,7 @@
{{ $t('send_per_link') }}
- {{ amount | GDD }}
+ {{ amount | GDD }}
diff --git a/frontend/src/components/Transactions/TransactionReceive.vue b/frontend/src/components/Transactions/TransactionReceive.vue
index d0f7c7af8..5f0221ada 100644
--- a/frontend/src/components/Transactions/TransactionReceive.vue
+++ b/frontend/src/components/Transactions/TransactionReceive.vue
@@ -14,12 +14,12 @@
:transactionLinkId="transactionLinkId"
/>
-
{{ balanceDate }}
-
{{ balanceDate }}
+
{{ this.$d(new Date(balanceDate), 'short') }}
+
{{ this.$d(new Date(balanceDate), 'time') }}
{{ $t('decay.types.receive') }}
- {{ amount | GDD }}
+ {{ amount | GDD }}
diff --git a/frontend/src/components/Transactions/TransactionSend.vue b/frontend/src/components/Transactions/TransactionSend.vue
index 41f82abae..e593b95dd 100644
--- a/frontend/src/components/Transactions/TransactionSend.vue
+++ b/frontend/src/components/Transactions/TransactionSend.vue
@@ -14,12 +14,12 @@
:transactionLinkId="transactionLinkId"
/>
-
{{ balanceDate }}
-
{{ balanceDate }}
+
{{ this.$d(new Date(balanceDate), 'short') }}
+
{{ this.$d(new Date(balanceDate), 'time') }}
{{ $t('decay.types.send') }}
- {{ amount | GDD }}
+ {{ amount | GDD }}
diff --git a/frontend/src/i18n.js b/frontend/src/i18n.js
index 243c35a24..a3b6e461c 100644
--- a/frontend/src/i18n.js
+++ b/frontend/src/i18n.js
@@ -115,6 +115,10 @@ const dateTimeFormats = {
month: 'long',
year: 'numeric',
},
+ time: {
+ hour: 'numeric',
+ minute: 'numeric',
+ },
},
de: {
short: {
@@ -143,6 +147,10 @@ const dateTimeFormats = {
month: 'long',
year: 'numeric',
},
+ time: {
+ hour: 'numeric',
+ minute: 'numeric',
+ },
},
es: {
short: {
@@ -171,6 +179,10 @@ const dateTimeFormats = {
month: 'long',
year: 'numeric',
},
+ time: {
+ hour: 'numeric',
+ minute: 'numeric',
+ },
},
fr: {
short: {
@@ -199,6 +211,10 @@ const dateTimeFormats = {
month: 'long',
year: 'numeric',
},
+ time: {
+ hour: 'numeric',
+ minute: 'numeric',
+ },
},
nl: {
short: {
@@ -227,6 +243,10 @@ const dateTimeFormats = {
month: 'long',
year: 'numeric',
},
+ time: {
+ hour: 'numeric',
+ minute: 'numeric',
+ },
},
}
diff --git a/frontend/src/locales/de.json b/frontend/src/locales/de.json
index eee251b8f..6ecf9c4be 100644
--- a/frontend/src/locales/de.json
+++ b/frontend/src/locales/de.json
@@ -309,6 +309,7 @@
}
},
"success": "Erfolg",
+ "lastMonth":"letzter Monat",
"time": {
"days": "Tage",
"hours": "Stunden",
diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json
index 96c029533..9e31fdf8a 100644
--- a/frontend/src/locales/en.json
+++ b/frontend/src/locales/en.json
@@ -29,6 +29,7 @@
"openContributionLinkText": "The following {count} automatic creations are currently provided by the \"{name}\" community.",
"submitContribution": "Submit contribution"
},
+ "lastMonth":"Last month",
"contact": "Contact",
"contribution": {
"activity": "Activity",