mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
rename table header translations
This commit is contained in:
parent
21a3ff4bc8
commit
febabf9303
@ -15,23 +15,15 @@
|
||||
<thead class="ds-table-col ds-table-head-col">
|
||||
<tr valign="top">
|
||||
<th></th>
|
||||
<th>
|
||||
{{ $t('moderation.reports.contentRowHeadline') }}
|
||||
</th>
|
||||
<th>
|
||||
{{ $t('moderation.reports.authorRowHeadline') }}
|
||||
</th>
|
||||
<th>
|
||||
{{ $t('moderation.reports.typeRowHeadline') }}
|
||||
</th>
|
||||
<th>
|
||||
{{ $t('moderation.reports.decisionRowHeadline') }}
|
||||
</th>
|
||||
<th>{{ $t('moderation.reports.content') }}</th>
|
||||
<th>{{ $t('moderation.reports.author') }}</th>
|
||||
<th>{{ $t('moderation.reports.status') }}</th>
|
||||
<th>{{ $t('moderation.reports.decision') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<template v-for="report in reports">
|
||||
<tr :key="report.resource.id" valign="top" :data-test="report.resource.__typename">
|
||||
<tr :key="'1-' + report.resource.id" valign="top" :data-test="report.resource.__typename">
|
||||
<td class="ds-table-col">
|
||||
<ds-text color="soft">
|
||||
<base-icon
|
||||
@ -137,7 +129,7 @@
|
||||
</ds-button>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr :key="'2-' + report.resource.id">
|
||||
<td></td>
|
||||
<td>
|
||||
<counter-icon icon="flag" :count="report.filed.length">
|
||||
@ -147,7 +139,7 @@
|
||||
</counter-icon>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<tr :key="'3-' + report.resource.id">
|
||||
<td class="ds-table-col filed-table" colspan="4">
|
||||
<ds-space margin-bottom="base" />
|
||||
<filed-table :filed="report.filed" v-if="showFiledReports" />
|
||||
|
||||
@ -316,10 +316,10 @@
|
||||
"reports": {
|
||||
"empty": "Glückwunsch, es gibt nichts zu moderieren.",
|
||||
"name": "Meldungen",
|
||||
"typeRowHeadline": "Aktueller Status",
|
||||
"contentRowHeadline": "Inhalt",
|
||||
"authorRowHeadline": "Autor",
|
||||
"decisionRowHeadline": "Entscheidung",
|
||||
"status": "Aktueller Status",
|
||||
"content": "Inhalt",
|
||||
"author": "Autor",
|
||||
"decision": "Entscheidung",
|
||||
"enabled": "Entsperrt",
|
||||
"disabled": "Gesperrt",
|
||||
"decided": "Entschieden",
|
||||
|
||||
@ -482,10 +482,10 @@
|
||||
"reports": {
|
||||
"empty": "Congratulations, nothing to moderate.",
|
||||
"name": "Reports",
|
||||
"typeRowHeadline": "Current status",
|
||||
"contentRowHeadline": "Content",
|
||||
"authorRowHeadline": "Author",
|
||||
"decisionRowHeadline": "Decision",
|
||||
"status": "Current status",
|
||||
"content": "Content",
|
||||
"author": "Author",
|
||||
"decision": "Decision",
|
||||
"enabled": "Enabled",
|
||||
"disabled": "Disabled",
|
||||
"decided": "Decided",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user