diff --git a/admin/src/locales/de.json b/admin/src/locales/de.json
index 237705ec2..b2d72cb91 100644
--- a/admin/src/locales/de.json
+++ b/admin/src/locales/de.json
@@ -35,7 +35,8 @@
"validTo": "Enddatum"
},
"contributionMessagesForm": {
- "resubmissionDateInPast": "Wiedervorlage Datum befindet sich in der Vergangenheit!"
+ "resubmissionDateInPast": "Wiedervorlage Datum befindet sich in der Vergangenheit!",
+ "userDetailsRegisteredAt": "{firstName} {lastName} <{email}> hat sich am {createdAt} registriert."
},
"contributions": {
"all": "Alle",
@@ -73,6 +74,7 @@
"deleted_user": "Alle gelöschten Nutzer",
"deny": "Ablehnen",
"description": "Beschreibung",
+ "details": "Details",
"e_mail": "E-Mail",
"edit": "bearbeiten",
"enabled": "aktiviert",
diff --git a/admin/src/locales/en.json b/admin/src/locales/en.json
index cb1f24477..0eee027a3 100644
--- a/admin/src/locales/en.json
+++ b/admin/src/locales/en.json
@@ -35,7 +35,8 @@
"validTo": "End-Date"
},
"contributionMessagesForm": {
- "resubmissionDateInPast": "Resubmission date is in the past!"
+ "resubmissionDateInPast": "Resubmission date is in the past!",
+ "userDetailsRegisteredAt": "{firstName} {lastName} <{email}> registered on {createdAt}."
},
"contributions": {
"all": "All",
@@ -74,6 +75,7 @@
"deny": "Reject",
"description": "Description",
"e_mail": "E-mail",
+ "details": "Details",
"edit": "edit",
"enabled": "enabled",
"error": "Error",
diff --git a/admin/src/pages/CreationConfirm.vue b/admin/src/pages/CreationConfirm.vue
index 4fe2f80af..7095d93c6 100644
--- a/admin/src/pages/CreationConfirm.vue
+++ b/admin/src/pages/CreationConfirm.vue
@@ -152,7 +152,7 @@ const fields = computed(
formatter: (value) => formatDateOrDash(value),
},
{ key: 'moderatorId', label: t('moderator.moderator') },
- { key: 'editCreation', label: t('chat') },
+ { key: 'editCreation', label: t('details') },
{ key: 'confirm', label: t('save') },
],
// confirmed contributions
@@ -181,7 +181,7 @@ const fields = computed(
formatter: (value) => formatDateOrDash(value),
},
{ key: 'confirmedBy', label: t('moderator.moderator') },
- { key: 'chatCreation', label: t('chat') },
+ { key: 'chatCreation', label: t('details') },
],
// denied contributions
[
@@ -209,7 +209,7 @@ const fields = computed(
formatter: (value) => formatDateOrDash(value),
},
{ key: 'deniedBy', label: t('moderator.moderator') },
- { key: 'chatCreation', label: t('chat') },
+ { key: 'chatCreation', label: t('details') },
],
// deleted contributions
[
@@ -237,7 +237,7 @@ const fields = computed(
formatter: (value) => formatDateOrDash(value),
},
{ key: 'deletedBy', label: t('moderator.moderator') },
- { key: 'chatCreation', label: t('chat') },
+ { key: 'chatCreation', label: t('details') },
],
// all contributions
[
@@ -266,7 +266,7 @@ const fields = computed(
formatter: (value) => formatDateOrDash(value),
},
{ key: 'confirmedBy', label: t('moderator.moderator') },
- { key: 'chatCreation', label: t('chat') },
+ { key: 'chatCreation', label: t('details') },
],
][tabIndex.value],
)