diff --git a/frontend/src/components/Pages/FrontPage/MissionOverview/MissionQueueView.tsx b/frontend/src/components/Pages/FrontPage/MissionOverview/MissionQueueView.tsx index 9d526f8e..0d476058 100644 --- a/frontend/src/components/Pages/FrontPage/MissionOverview/MissionQueueView.tsx +++ b/frontend/src/components/Pages/FrontPage/MissionOverview/MissionQueueView.tsx @@ -10,12 +10,12 @@ import { AlertCategory } from 'components/Alerts/AlertsBanner' import { Robot } from 'models/Robot' import { tokens } from '@equinor/eds-tokens' import { useEffect } from 'react' +import { Typography } from '@equinor/eds-core-react' const StyledMissionView = styled.div` display: flex; padding: 16px; flex-direction: column; - align-items: flex-end; gap: 8px; align-self: stretch; border-top: 1px solid ${tokens.colors.ui.background__medium.hex}; @@ -74,6 +74,7 @@ export const RobotMissionQueueView = ({ robot }: { robot: Robot }): JSX.Element <> {(robotMissionQueue.length > 0 || robotLoadingMissions.length > 0) && ( + {TranslateText('Queued Missions')} {missionQueueDisplay} {robotLoadingMissions.length > 0 && loadingQueueDisplay} diff --git a/frontend/src/language/en.json b/frontend/src/language/en.json index 2d4e9b97..6c591f0e 100644 --- a/frontend/src/language/en.json +++ b/frontend/src/language/en.json @@ -285,5 +285,6 @@ "Pressure is too high to start a mission. Queued missions will start when the pressure is under {0}mBar.": "Pressure is too high to start a mission. Queued missions will start when the pressure is under {0}mBar.", "Pressure is too high to start a mission.": "Pressure is too high to start a mission.", "Pressure is too low to start a mission. Queued missions will start when the pressure is over {0}mBar.": "Pressure is too low to start a mission. Queued missions will start when the pressure is over {0}mBar.", - "Pressure is too low to start a mission.": "Pressure is too low to start a mission." + "Pressure is too low to start a mission.": "Pressure is too low to start a mission.", + "Queued Missions": "Queued Missions" } diff --git a/frontend/src/language/no.json b/frontend/src/language/no.json index c37e90b3..c14ff667 100644 --- a/frontend/src/language/no.json +++ b/frontend/src/language/no.json @@ -285,5 +285,6 @@ "Pressure is too high to start a mission. Queued missions will start when the pressure is under {0}mBar.": "Trykket er for høyt til å starte oppdrag. Oppdrag i kø vil starte når trykket er under {0}mBar.", "Pressure is too high to start a mission.": "Trykket er for høyt til å starte oppdrag.", "Pressure is too low to start a mission. Queued missions will start when the pressure is over {0}mBar.": "Trykket er for lavt til å starte oppdrag. Oppdrag i kø vil starte når trykket er over {0}mBar.", - "Pressure is too low to start a mission.": "Trykket er for lavt til å starte oppdrag." + "Pressure is too low to start a mission.": "Trykket er for lavt til å starte oppdrag.", + "Queued Missions": "Oppdragskø" }