diff --git a/yaki_mobile/assets/translations/en.json b/yaki_mobile/assets/translations/en.json index 1f42674a1..f3c3ea2e4 100644 --- a/yaki_mobile/assets/translations/en.json +++ b/yaki_mobile/assets/translations/en.json @@ -90,8 +90,8 @@ "teamSelectionPageTitle2": "for today ?", "teamSelectionPageHint": "Select 1 or 2 activities", - "whenDoYouWork ": "When are you working", - "whereDoYouWork ": "Where are you working", + "whenDoYouWork": "When are you working", + "whereDoYouWork": "Where are you working", "whenAreYouAbsent": "When are you absent ?", "thisMorning": " this ", "thisAfternoon": " this ", @@ -124,7 +124,6 @@ "somethingWentWrong": "Some data are lost along the way", "retry": "Retry", - "upload": "Upload", "takePicture": "Take a picture", "imgGallery": "Gallery", diff --git a/yaki_mobile/lib/presentation/features/declaration/view/header_declaration_single_choice.dart b/yaki_mobile/lib/presentation/features/declaration/view/header_declaration_single_choice.dart index d9c5a566d..44bbb08f1 100644 --- a/yaki_mobile/lib/presentation/features/declaration/view/header_declaration_single_choice.dart +++ b/yaki_mobile/lib/presentation/features/declaration/view/header_declaration_single_choice.dart @@ -76,9 +76,9 @@ String setFirstSentence({ }) { return declarationMode == DeclarationPaths.timeOfDay.text ? teamNameList.contains("Absence") - ? "whenAreYouAbsent" - : "whenDoYouWork" - : "whereDoYouWork"; + ? tr('whenAreYouAbsent') + : tr('whenDoYouWork') + : tr('whereDoYouWork'); } String setTeam({required List teamList}) {