Skip to content

Commit

Permalink
Merge pull request #200 from Courseplay/Issue-147
Browse files Browse the repository at this point in the history
Add Keybinds to directly start at first/nearest or last waypoint
  • Loading branch information
Tensuko authored Dec 29, 2024
2 parents 453354c + 2e9f648 commit 30803cc
Show file tree
Hide file tree
Showing 27 changed files with 145 additions and 46 deletions.
13 changes: 13 additions & 0 deletions config/MasterTranslations.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3115,6 +3115,19 @@ TPS extension
<Text language="de"><![CDATA[CP: CP-Helfer starten/stoppen]]></Text>
<Text language="en"><![CDATA[CP: Start/stop driver]]></Text>
</Translation>
<Translation name="input_CP_START_STOP_AT_FIRST_WAYPOINT">
<Text language="de"><![CDATA[CP: CP-Helfer starten/stoppen (am ersten Wegpunkt)]]></Text>
<Text language="en"><![CDATA[CP: Start/stop driver (at first waypoint)]]></Text>
</Translation>
<Translation name="input_CP_START_STOP_AT_NEAREST_WAYPOINT">
<Text language="de"><![CDATA[CP: CP-Helfer starten/stoppen (am nächsten Wegpunkt)]]></Text>
<Text language="en"><![CDATA[CP: Start/stop driver (at nearest waypoint)]]></Text>
</Translation>
<Translation name="input_CP_START_STOP_AT_LAST_WAYPOINT">
<Text language="de"><![CDATA[CP: CP-Helfer starten/stoppen (am letzten Wegpunkt)]]></Text>
<Text language="en"><![CDATA[CP: Start/stop driver (at last waypoint)]]></Text>
</Translation>

<Translation name="input_CP_GENERATE_COURSE">
<Text language="de"><![CDATA[CP: Kurs generieren]]></Text>
<Text language="en"><![CDATA[CP: Generate course]]></Text>
Expand Down
13 changes: 12 additions & 1 deletion modDesc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,15 @@ Changelog 8.0.0.0:
<actionBinding action="CP_START_STOP">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lctrl KEY_h" />
</actionBinding>

<actionBinding action="CP_START_STOP_AT_FIRST_WAYPOINT">
<binding device="" input="" />
</actionBinding>
<actionBinding action="CP_START_STOP_AT_NEAREST_WAYPOINT">
<binding device="" input="" />
</actionBinding>
<actionBinding action="CP_START_STOP_AT_LAST_WAYPOINT">
<binding device="" input="" />
</actionBinding>
<actionBinding action="CP_GENERATE_COURSE">
<binding device="KB_MOUSE_DEFAULT" input="KEY_lctrl KEY_g" />
</actionBinding>
Expand Down Expand Up @@ -400,6 +408,9 @@ Changelog 8.0.0.0:

<action name="CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" />
<action name="CP_START_STOP" />
<action name="CP_START_STOP_AT_FIRST_WAYPOINT"/>
<action name="CP_START_STOP_AT_NEAREST_WAYPOINT"/>
<action name="CP_START_STOP_AT_LAST_WAYPOINT"/>
<action name="CP_GENERATE_COURSE" />

<action name="CP_CHANGE_SELECTED_JOB"/>
Expand Down
93 changes: 48 additions & 45 deletions scripts/specializations/CpAIWorker.lua
Original file line number Diff line number Diff line change
Expand Up @@ -127,22 +127,54 @@ function CpAIWorker:onRegisterActionEvents(isActiveForInput, isActiveForInputIgn
end
end

addActionEvent(self, InputAction.CP_START_STOP, CpAIWorker.startStopCpActionEvent)
addActionEvent(self, InputAction.CP_GENERATE_COURSE, CpAIWorker.generateCourse)
addActionEvent(self, InputAction.CP_CHANGE_SELECTED_JOB, CpAIWorker.changeCurrentSelectedJob)
addActionEvent(self, InputAction.CP_CHANGE_STARTING_POINT, CpAIWorker.changeStartingPoint)
addActionEvent(self, InputAction.CP_CLEAR_COURSE, CpAIWorker.clearCourse,
g_i18n:getText("input_CP_CLEAR_COURSE"))
addActionEvent(self, InputAction.CP_CHANGE_COURSE_VISIBILITY, CpAIWorker.changeCourseVisibility)

addActionEvent(self, InputAction.CP_OPEN_VEHICLE_SETTINGS, CpGuiUtil.openVehicleSettingsGui,
g_i18n:getText("input_CP_OPEN_VEHICLE_SETTINGS"))
addActionEvent(self, InputAction.CP_OPEN_GLOBAL_SETTINGS, CpGuiUtil.openGlobalSettingsGui,
g_i18n:getText("input_CP_OPEN_GLOBAL_SETTINGS"))
addActionEvent(self, InputAction.CP_OPEN_COURSEGENERATOR_SETTINGS, CpGuiUtil.openCourseGeneratorGui,
g_i18n:getText("input_CP_OPEN_COURSEGENERATOR_SETTINGS"))
addActionEvent(self, InputAction.CP_OPEN_COURSEMANAGER, CpGuiUtil.openCourseManagerGui,
g_i18n:getText("input_CP_OPEN_COURSEMANAGER"))
addActionEvent(self, InputAction.CP_START_STOP, function ()
self:cpStartStopDriver(true)
end)
addActionEvent(self, InputAction.CP_START_STOP_AT_FIRST_WAYPOINT, function (self)
local startingPointSetting = self:getCpStartingPointSetting()
startingPointSetting:setValue(CpFieldWorkJobParameters.START_AT_FIRST_POINT)
self:cpStartStopDriver(true)
end)
addActionEvent(self, InputAction.CP_START_STOP_AT_NEAREST_WAYPOINT, function (self)
local startingPointSetting = self:getCpStartingPointSetting()
startingPointSetting:setValue(CpFieldWorkJobParameters.START_AT_NEAREST_POINT)
self:cpStartStopDriver(true)
end)
addActionEvent(self, InputAction.CP_START_STOP_AT_LAST_WAYPOINT, function (self)
local startingPointSetting = self:getCpStartingPointSetting()
startingPointSetting:setValue(CpFieldWorkJobParameters.START_AT_LAST_POINT)
self:cpStartStopDriver(true)
end)

addActionEvent(self, InputAction.CP_GENERATE_COURSE, function (self)
CourseGeneratorInterface.generateDefaultCourse()
end)
addActionEvent(self, InputAction.CP_CHANGE_SELECTED_JOB, function (self)
local currentJobSetting = self:cpGetHudSelectedJobSetting()
currentJobSetting:setNextItem()
end)
addActionEvent(self, InputAction.CP_CHANGE_STARTING_POINT, function (self)
local startingPointSetting = self:getCpStartingPointSetting()
startingPointSetting:setNextItem()
end)
addActionEvent(self, InputAction.CP_CLEAR_COURSE, function (self)
self:resetCpCoursesFromGui()
end, g_i18n:getText("input_CP_CLEAR_COURSE"))
addActionEvent(self, InputAction.CP_CHANGE_COURSE_VISIBILITY, function ()
self:getCpSettings().showCourse:setNextItem()
end)
addActionEvent(self, InputAction.CP_OPEN_VEHICLE_SETTINGS, function ()
CpGuiUtil.openVehicleSettingsGui(self)
end, g_i18n:getText("input_CP_OPEN_VEHICLE_SETTINGS"))
addActionEvent(self, InputAction.CP_OPEN_GLOBAL_SETTINGS, function ()
CpGuiUtil.openGlobalSettingsGui(self)
end, g_i18n:getText("input_CP_OPEN_GLOBAL_SETTINGS"))
addActionEvent(self, InputAction.CP_OPEN_COURSEGENERATOR_SETTINGS, function ()
CpGuiUtil.openCourseGeneratorGui(self)
end, g_i18n:getText("input_CP_OPEN_COURSEGENERATOR_SETTINGS"))
addActionEvent(self, InputAction.CP_OPEN_COURSEMANAGER, function ()
CpGuiUtil.openCourseManagerGui(self)
end, g_i18n:getText("input_CP_OPEN_COURSEMANAGER"))

CpAIWorker.updateActionEvents(self)
end
Expand Down Expand Up @@ -209,28 +241,6 @@ function CpAIWorker:updateActionEvents()
end
end

function CpAIWorker:changeStartingPoint()
local startingPointSetting = self:getCpStartingPointSetting()
startingPointSetting:setNextItem()
end

function CpAIWorker:changeCurrentSelectedJob()
local currentJobSetting = self:cpGetHudSelectedJobSetting()
currentJobSetting:setNextItem()
end

function CpAIWorker:clearCourse()
self:resetCpCoursesFromGui()
end

function CpAIWorker:changeCourseVisibility()
self:getCpSettings().showCourse:setNextItem()
end

function CpAIWorker:startStopCpActionEvent()
self:cpStartStopDriver(true)
end

--- Directly starts a cp job or stops a currently active job.
function CpAIWorker:cpStartStopDriver(isStartedByHud)
CpUtil.debugVehicle(CpDebug.DBG_FIELDWORK, self, "Start/stop cp helper")
Expand Down Expand Up @@ -545,13 +555,6 @@ function CpAIWorker:onStartAutoDrive()
end
end

-----------------------------------------------
--- Generate course
---------------------------------------------
function CpAIWorker:generateCourse()
CourseGeneratorInterface.generateDefaultCourse()
end

---------------------------------------------
--- Console commands
---------------------------------------------
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_br.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1045,6 +1045,9 @@ Agora sua seleção deve ser semelhante à imagem.
<text name="input_CP_DBG_CHANNEL_MENU_VISIBILITY" text="CP: Mostrar canal de debug sim/não."/>
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: Abrir mini GUI"/>
<text name="input_CP_START_STOP" text="CP: Dirigir/stop motorista"/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: Start/stop driver (at first waypoint)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: Start/stop driver (at nearest waypoint)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: Start/stop driver (at last waypoint)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: Mudar ponto inicial"/>
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_cs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1014,6 +1014,9 @@ hud还显示助手工作时堆或思洛存储器的剩余填充水平。
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: 打开迷你HUB"/>
<text name="input_CP_START_STOP" text="CP: 启动/停止司机
"/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: Start/stop driver (at first waypoint)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: Start/stop driver (at nearest waypoint)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: Start/stop driver (at last waypoint)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: 更改起始点"/>
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_ct.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1014,6 +1014,9 @@ Now your selection should look similar to the image.
<text name="input_CP_DBG_CHANNEL_MENU_VISIBILITY" text="CP: 顯示除錯通道菜單 是/否。"/>
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: 打開迷你HUB"/>
<text name="input_CP_START_STOP" text="CP: 啟動/停止司機"/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: Start/stop driver (at first waypoint)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: Start/stop driver (at nearest waypoint)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: Start/stop driver (at last waypoint)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: 改變起始點"/>
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_cz.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1012,6 +1012,9 @@ Nyní by váš výběr měl vypadat podobně jako na obrázku.
<text name="input_CP_DBG_CHANNEL_MENU_VISIBILITY" text="CP: Zobrazit nabídku kanálu ladění ano/ne"/>
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: Otevřt/zavřít nastavení vozidla"/>
<text name="input_CP_START_STOP" text="CP: Spustit mini GUI"/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: Start/stop driver (at first waypoint)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: Start/stop driver (at nearest waypoint)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: Start/stop driver (at last waypoint)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Změnit aktuálně zvolenou práci"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Změnit aktuálně zvolenou práci"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: Změnit startovní bod"/>
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_da.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1025,6 +1025,9 @@ Now your selection should look similar to the image.
<text name="input_CP_DBG_CHANNEL_MENU_VISIBILITY" text="CP: Vis debug channels menu ja/nej."/>
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: Åbne mini GUI"/>
<text name="input_CP_START_STOP" text="CP: Start/stop CP hjælper"/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: Start/stop driver (at first waypoint)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: Start/stop driver (at nearest waypoint)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: Start/stop driver (at last waypoint)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: Skift start punkt"/>
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_de.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1046,6 +1046,9 @@ Das Kreuz sollte jetzt, wie im Bild dargestellt, gelb sein.
<text name="input_CP_DBG_CHANNEL_MENU_VISIBILITY" text="CP: Debugkanäle-Menü anzeigen/ausblenden"/>
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: Mini-GUI öffnen"/>
<text name="input_CP_START_STOP" text="CP: CP-Helfer starten/stoppen"/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: CP-Helfer starten/stoppen (am ersten Wegpunkt)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: CP-Helfer starten/stoppen (am nächsten Wegpunkt)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: CP-Helfer starten/stoppen (am letzten Wegpunkt)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Kurs generieren"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Aktuell ausgewählten Job ändern"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: Startpunkt ändern"/>
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_ea.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1056,6 +1056,9 @@ Ahora su selección debería verse similar a la imagen.
<text name="input_CP_DBG_CHANNEL_MENU_VISIBILITY" text="CP: Muestra el menú del canal de depuración Sí/No."/>
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: Abrir/Cerrar GUI del vehículo."/>
<text name="input_CP_START_STOP" text="CP: Iniciar/Detener conductor."/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: Start/stop driver (at first waypoint)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: Start/stop driver (at nearest waypoint)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: Start/stop driver (at last waypoint)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Generar Curso"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Cambiar trabajo seleccionado"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: Cambia el punto de inicio."/>
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_en.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1063,6 +1063,9 @@ Now your selection should look similar to the image.
<text name="input_CP_DBG_CHANNEL_MENU_VISIBILITY" text="CP: Show/hide debug channel menu"/>
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: Open mini GUI"/>
<text name="input_CP_START_STOP" text="CP: Start/stop driver"/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: Start/stop driver (at first waypoint)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: Start/stop driver (at nearest waypoint)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: Start/stop driver (at last waypoint)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Generate course"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: Change starting point"/>
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_es.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1056,6 +1056,9 @@ Ahora su selección debería verse similar a la imagen.
<text name="input_CP_DBG_CHANNEL_MENU_VISIBILITY" text="CP: Muestra el menú del canal de depuración Sí/No."/>
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: Abrir/Cerrar GUI del vehículo."/>
<text name="input_CP_START_STOP" text="CP: Iniciar/Detener conductor."/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: Start/stop driver (at first waypoint)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: Start/stop driver (at nearest waypoint)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: Start/stop driver (at last waypoint)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Generar curso"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Cambiar trabajo seleccionado"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: Cambia el punto de inicio."/>
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_fc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1022,6 +1022,9 @@ Now your selection should look similar to the image.
<text name="input_CP_DBG_CHANNEL_MENU_VISIBILITY" text="CP: Shows debug channel menu yes/no."/>
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: Open mini GUI"/>
<text name="input_CP_START_STOP" text="CP: Start/stop driver"/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: Start/stop driver (at first waypoint)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: Start/stop driver (at nearest waypoint)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: Start/stop driver (at last waypoint)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: Changes starting point"/>
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_fi.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1022,6 +1022,9 @@ Now your selection should look similar to the image.
<text name="input_CP_DBG_CHANNEL_MENU_VISIBILITY" text="CP: Shows debug channel menu yes/no."/>
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: Open mini GUI"/>
<text name="input_CP_START_STOP" text="CP: Start/stop driver"/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: Start/stop driver (at first waypoint)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: Start/stop driver (at nearest waypoint)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: Start/stop driver (at last waypoint)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: Changes starting point"/>
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_fr.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1007,6 +1007,9 @@ Votre sélection devrait ressembler à l'illustration ci-contre.
<text name="input_CP_DBG_CHANNEL_MENU_VISIBILITY" text="CP: Affiche/masque les canaux de debogage."/>
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: Affiche mini ATH"/>
<text name="input_CP_START_STOP" text="CP: Ouvrier Courseplay"/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: Start/stop driver (at first waypoint)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: Start/stop driver (at nearest waypoint)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: Start/stop driver (at last waypoint)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: Change le point de départ"/>
Expand Down
3 changes: 3 additions & 0 deletions translations/translation_hu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1031,6 +1031,9 @@ A kijelölésnek hasonlónak kell lennie, mint a képen.
<text name="input_CP_DBG_CHANNEL_MENU_VISIBILITY" text="CP: Megjeleníti a hibakeresés menüjét igen/nem."/>
<text name="input_CP_OPEN_CLOSE_VEHICLE_SETTING_DISPLAY" text="CP: Nyissa meg a mini GUI-t"/>
<text name="input_CP_START_STOP" text="CP: Segítő indítás/leállítás"/>
<text name="input_CP_START_STOP_AT_FIRST_WAYPOINT" text="CP: Start/stop driver (at first waypoint)"/>
<text name="input_CP_START_STOP_AT_NEAREST_WAYPOINT" text="CP: Start/stop driver (at nearest waypoint)"/>
<text name="input_CP_START_STOP_AT_LAST_WAYPOINT" text="CP: Start/stop driver (at last waypoint)"/>
<text name="input_CP_GENERATE_COURSE" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_SELECTED_JOB" text="CP: Change current selected job"/>
<text name="input_CP_CHANGE_STARTING_POINT" text="CP: Kiindulópont módosítása"/>
Expand Down
Loading

0 comments on commit 30803cc

Please sign in to comment.