diff --git a/webapp/components/_new/features/ReportsTable/ReportsTable.vue b/webapp/components/_new/features/ReportsTable/ReportsTable.vue index d6cb3dfe4..666339685 100644 --- a/webapp/components/_new/features/ReportsTable/ReportsTable.vue +++ b/webapp/components/_new/features/ReportsTable/ReportsTable.vue @@ -6,15 +6,17 @@ cellpadding="0" > - + + - - - + + + + {{ $t('moderation.reports.submitter') }} {{ $t('moderation.reports.content') }} {{ $t('moderation.reports.author') }} {{ $t('moderation.reports.status') }} @@ -43,7 +45,15 @@ /> - + + + {{ $t('moderation.reports.numberOfUsers', { count: report.filed.length }) }} + + + {{ $t('moderation.reports.moreDetails') }} + + +
-
- - - {{ $t('moderation.reports.moreDetails') }} - - -
@@ -219,6 +222,11 @@ export default { } } +.user-count { + display: block; + margin-bottom: $space-xx-small; +} + .nested-table-toggle { position: absolute; left: 0; diff --git a/webapp/locales/de.json b/webapp/locales/de.json index 0e754d760..a5fa917f1 100644 --- a/webapp/locales/de.json +++ b/webapp/locales/de.json @@ -334,6 +334,15 @@ "reasonCategory": "Kategorie", "reasonDescription": "Beschreibung", "submitter": "Gemeldet von", + "numberOfUsers": "{count} Nutzern", + "filterLabel": { + "all": "Alle", + "unreviewed": "Nicht bearbeitet", + "reviewed": "Bearbeitet", + "closed": "Abgeschlossen" + }, + "reportedOn": "Datum", + "moreDetails": "Details öffnen", "decideModal": { "submit": "Bestätige Entscheidung", "cancel": "Abbruch", diff --git a/webapp/locales/en.json b/webapp/locales/en.json index dc73a2d82..ebb7a6efd 100644 --- a/webapp/locales/en.json +++ b/webapp/locales/en.json @@ -500,6 +500,7 @@ "reasonCategory": "Category", "reasonDescription": "Description", "submitter": "Reported by", + "numberOfUsers": "{count} users", "filterLabel": { "all": "All", "unreviewed": "Unreviewed", @@ -507,7 +508,7 @@ "closed": "Closed" }, "reportedOn": "Date", - "moreDetails": "Report Details", + "moreDetails": "View Details", "decideModal": { "submit": "Confirm decision", "cancel": "Cancel",