Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(update): 941 - label update #1267

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ _**For better traceability add the corresponding GitHub issue number in each cha
- #1196 Update IRS to 7.3.1
- #941 made the naming for quality notifications consistent throughout the FE app
- #1190 store accepted policies in catalog offers on startup
- #941 updated labels from QualityTopic to QualityNotification

### Known knowns
- #786 Implemented short term solution for securing EDC Callback APIs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ <h3 class="flex items-center">
<app-notifications-tab
[notificationsView$]="alertsCreated$"
[translationContext]="'commonAlert'"
[tableHeader]="'pageTitle.sentQualityTopics'"
[tableHeader]="'pageTitle.sentQualityNotification'"
[tableType]="TableType.RECEIVED_NOTIFICATION"
[labelId]="'dashboard-alerts-created'"
[hasPagination]="false"
Expand Down Expand Up @@ -159,7 +159,7 @@ <h3 class="flex items-center">
<mat-card-content>
<app-notifications-tab
[notificationsView$]="alertsReceived$"
[tableHeader]="'pageTitle.receivedQualityTopics'"
[tableHeader]="'pageTitle.receivedQualityNotification'"
[translationContext]="'commonAlert'"
[labelId]="'dashboard-alerts-received'"
[hasPagination]="false"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
</ng-template>
<app-notifications-tab
*ngIf="menuActionsConfig"
[tableHeader]="'pageTitle.sentQualityTopics'"
[tableHeader]="'pageTitle.sentQualityNotification'"
[tableHeaderMenuEnabled]="true"
[notificationsView$]="queuedAndRequestedNotifications$"
[labelId]="queuedAndRequestedTabLabelId"
Expand Down Expand Up @@ -63,7 +63,7 @@
</ng-template>
<app-notifications-tab
*ngIf="menuActionsConfig"
[tableHeader]="'pageTitle.receivedQualityTopics'"
[tableHeader]="'pageTitle.receivedQualityNotification'"
[tableHeaderMenuEnabled]="true"
[notificationsView$]="receivedNotifications$"
[labelId]="receivedTabLabelId"
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/assets/locales/de/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
"relations": "Beziehungen",
"admin": "Verwaltung Catena-X",
"alerts" : "Qualitätsthemen",
"receivedQualityTopics" : "Empfangene Qualitätsthemen",
"sentQualityTopics" : "Versendete Qualitätsthemen"
"receivedQualityNotification" : "Empfangene Qualitätsthemen",
"sentQualityNotification" : "Versendete Qualitätsthemen"
},
"layout": {
"nav": {
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/assets/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
"relations": "Part relations",
"admin": "Administration Catena-X",
"alerts" : "Quality notifications",
"receivedQualityTopics" : "Received quality notifications",
"sentQualityTopics" : "Sent quality notifications"
"receivedQualityNotification" : "Received quality notifications",
"sentQualityNotification" : "Sent quality notifications"
},
"layout": {
"nav": {
Expand Down
Loading