Skip to content

Commit

Permalink
Rename stop button to skip
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddasol committed Feb 21, 2025
1 parent 2c596ea commit abb8d67
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const OngoingMissionButton = ({ missionName, robotId, missionTaskType }: Mission
<ButtonIcon variant="contained_icon" onClick={toggleSkipMissionDialog}>
<Icon name={Icons.Next} size={24} />
</ButtonIcon>
<Typography variant="caption">{TranslateText('Stop')}</Typography>
<Typography variant="caption">{TranslateText('Skip')}</Typography>
<SkipMissionDialog
missionName={missionName}
robotId={robotId}
Expand Down Expand Up @@ -135,7 +135,7 @@ const PausedMissionButton = ({ missionName, robotId, missionTaskType }: MissionP
<ButtonIcon variant="contained_icon" onClick={toggleSkipMissionDialog}>
<Icon name={Icons.Next} size={24} />
</ButtonIcon>
<Typography variant="caption">{TranslateText('Stop')}</Typography>
<Typography variant="caption">{TranslateText('Skip')}</Typography>
<SkipMissionDialog
missionName={missionName}
robotId={robotId}
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/language/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -298,5 +298,6 @@
"No automated scheduling set": "No automated scheduling set",
"No days have been selected. Please select days": "No days have been selected. Please select days",
"No times have been selected. Please add time": "No times have been selected. Please add time",
"Mission source id": "Mission source id"
"Mission source id": "Mission source id",
"Skip": "Skip"
}
3 changes: 2 additions & 1 deletion frontend/src/language/no.json
Original file line number Diff line number Diff line change
Expand Up @@ -298,5 +298,6 @@
"No automated scheduling set": "Automatisk kjøring er ikke satt",
"No days have been selected. Please select days": "Ingen dager er valgt. Vennligst velg dager",
"No times have been selected. Please add time": "Ingen tidspunkt er valgt. Vennligst legg til tidspunkt",
"Mission source id": "Mission source id"
"Mission source id": "Mission source id",
"Skip": "Neste"
}

0 comments on commit abb8d67

Please sign in to comment.