Skip to content

Commit

Permalink
Feature/624 Dialog creation refactoring using a service (#1045)
Browse files Browse the repository at this point in the history
* add jar debug dev tools only on profile

* refactor dialog calls with config by introducing a service

* convert all confirmation dialog texts to i18n texts

* use refactored  confirmation component

* fix string and use interface for confirm dialog data

* Update title of delete confirmation

* clean up dialog service

* refactor frontend tests related to dialogService

* display correct dialog in objective

* fix objective release dialog

* refactor dialog responsiveness

* clean up dialog service

* remove backend/pom.xml from branch

* update translations and fix release dialog

* update dialog.service.ts
  • Loading branch information
kcinay055679 authored and RandomTannenbaum committed Nov 15, 2024
1 parent 890e8d9 commit e0a8231
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions frontend/src/assets/i18n/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,38 @@
}
}
},
"CONFIRMATION": {
"DRAFT_CREATE": {
"TITLE": "Check-in im Draft-Status",
"TEXT": "Dein Objective befindet sich noch im DRAFT Status. Möchtest du das Check-in trotzdem erfassen?"
},
"RELEASE": {
"TITLE": "Objective veröffentlichen",
"TEXT": "Soll dieses Objective veröffentlicht werden?"
},
"TO_DRAFT": {
"TITLE": "Objective als Draft speichern",
"TEXT": "Soll dieses Objective als Draft gespeichert werden?"
},
"DELETE": {
"ACTION":{
"TITLE": "Löschen bestätigen",
"TEXT": "Möchtest du die Action wirklich löschen?"
},
"TEAM":{
"TITLE": "Löschen bestätigen",
"TEXT": "Möchtest du dieses Team wirklich löschen? Zugehörige Objectives werden dadurch in allen Quartalen ebenfalls gelöscht!"
},
"OBJECTIVE":{
"TITLE": "Objective löschen",
"TEXT": "Möchtest du dieses Objective wirklich löschen? Zugehörige Key Results werden dadurch ebenfalls gelöscht!"
},
"KEYRESULT":{
"TITLE": "Key Result löschen",
"TEXT": "Möchtest du dieses Key Result wirklich löschen? Zugehörige Check-ins werden dadurch ebenfalls gelöscht!"
}
}
},
"ERROR": {
"UNAUTHORIZED": "Du bist nicht autorisiert, um das Objekt mit der Id {1} zu öffnen.",
"NOT_FOUND": "Das Objekt '{0}' mit der Id {1} konnte nicht gefunden werden.",
Expand Down

0 comments on commit e0a8231

Please sign in to comment.