diff --git a/apps/skolplattformen-app/components/week.component.tsx b/apps/skolplattformen-app/components/week.component.tsx index 519848299..de804fa49 100644 --- a/apps/skolplattformen-app/components/week.component.tsx +++ b/apps/skolplattformen-app/components/week.component.tsx @@ -17,6 +17,7 @@ import { LanguageService } from '../services/languageService' import { Sizing, Typography } from '../styles' import { TransitionView } from './transitionView.component' import { getMeaningfulStartingDate } from '../utils/calendarHelpers' +import { translate } from '../utils/translation' interface WeekProps { child: Child @@ -130,7 +131,7 @@ export const Week = ({ child }: WeekProps) => { }, [lessons]) const getWeekText = (date = moment()) => { - return `Vecka ${date.isoWeek()}` + return `${translate('schedule.week')} ${date.isoWeek()}` } return showSchema ? ( diff --git a/apps/skolplattformen-app/translations/en.json b/apps/skolplattformen-app/translations/en.json index 188a51d60..be8d4d4da 100644 --- a/apps/skolplattformen-app/translations/en.json +++ b/apps/skolplattformen-app/translations/en.json @@ -129,7 +129,8 @@ "start": "Start", "end": "End", "lunch": "Lunch", - "gymBag": "Gym bag" + "gymBag": "Gym bag", + "week": "Week" }, "classmates": { "class": "Class",