diff --git a/apps/red-ui/src/app/components/simple-doughnut-chart/simple-doughnut-chart.component.html b/apps/red-ui/src/app/components/simple-doughnut-chart/simple-doughnut-chart.component.html
index 23aa836c8..0aa80da2c 100644
--- a/apps/red-ui/src/app/components/simple-doughnut-chart/simple-doughnut-chart.component.html
+++ b/apps/red-ui/src/app/components/simple-doughnut-chart/simple-doughnut-chart.component.html
@@ -29,7 +29,7 @@
{
length: val.value,
color: val.color,
- label: val.value + ' ' + (val.label.toLowerCase().replace('_', '-') | translate)
+ label: val.value + ' ' + val.label
}
]"
>
diff --git a/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.html b/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.html
index 643961d01..f33367eb7 100644
--- a/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.html
+++ b/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.html
@@ -163,7 +163,7 @@
diff --git a/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.ts b/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.ts
index aa557fc1c..b56883957 100644
--- a/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.ts
+++ b/apps/red-ui/src/app/screens/project-listing-screen/project-listing-screen.component.ts
@@ -22,6 +22,7 @@ import { PermissionsService } from '../../common/service/permissions.service';
import { ProjectWrapper } from '../../state/model/project.wrapper';
import { Subscription, timer } from 'rxjs';
import { tap } from 'rxjs/operators';
+import { TranslateChartService } from '../../utils/translate-chart.service';
@Component({
selector: 'redaction-project-listing-screen',
@@ -53,7 +54,8 @@ export class ProjectListingScreenComponent implements OnInit, OnDestroy {
private readonly _changeDetectorRef: ChangeDetectorRef,
private readonly _dialogService: DialogService,
private readonly _translateService: TranslateService,
- public readonly sortingService: SortingService
+ public readonly sortingService: SortingService,
+ public readonly translateChartService: TranslateChartService
) {}
public ngOnInit(): void {
@@ -85,7 +87,11 @@ export class ProjectListingScreenComponent implements OnInit, OnDestroy {
const groups = groupBy(this.appStateService.aggregatedFiles, 'status');
this.documentsChartData = [];
for (const key of Object.keys(groups)) {
- this.documentsChartData.push({ value: groups[key].length, color: key, label: key });
+ this.documentsChartData.push({
+ value: groups[key].length,
+ color: key,
+ label: key
+ });
}
}
diff --git a/apps/red-ui/src/app/screens/project-overview-screen/project-details/project-details.component.html b/apps/red-ui/src/app/screens/project-overview-screen/project-details/project-details.component.html
index 583dec076..6384c8d4d 100644
--- a/apps/red-ui/src/app/screens/project-overview-screen/project-details/project-details.component.html
+++ b/apps/red-ui/src/app/screens/project-overview-screen/project-details/project-details.component.html
@@ -45,7 +45,7 @@
({ ...val, label: this._translateService.instant(val.label.toLowerCase().replace('_', '-')) }));
+ }
+}
diff --git a/apps/red-ui/src/assets/i18n/en.json b/apps/red-ui/src/assets/i18n/en.json
index 4eb7b7605..87e9bf0bc 100644
--- a/apps/red-ui/src/assets/i18n/en.json
+++ b/apps/red-ui/src/assets/i18n/en.json
@@ -351,9 +351,9 @@
"cancel": "Cancel"
},
"unassigned": "Unassigned",
- "under-review": "Under review",
- "under-approval": "Under approval",
- "efsa": "EFSA approval",
+ "under-review": "Under Review",
+ "under-approval": "Under Approval",
+ "efsa": "EFSA Approval",
"finished": "Finished",
"approved": "Approved",
"submitted": "Submitted",