diff --git a/common/params.cc b/common/params.cc index bf3e054b8..900448f86 100644 --- a/common/params.cc +++ b/common/params.cc @@ -358,6 +358,7 @@ std::unordered_map keys = { {"GasRegenCmd", PERSISTENT}, {"GMPedalLongitudinal", PERSISTENT}, {"GoatScream", PERSISTENT}, + {"GoatScreamCriticalAlerts", PERSISTENT}, {"GreenLightAlert", PERSISTENT}, {"HideAlerts", PERSISTENT}, {"HideLeadMarker", PERSISTENT}, diff --git a/common/params_pyx.so b/common/params_pyx.so index b8cfe2c3b..f43ac6f9a 100755 Binary files a/common/params_pyx.so and b/common/params_pyx.so differ diff --git a/frogpilot/common/frogpilot_variables.py b/frogpilot/common/frogpilot_variables.py index 58ae1ff9c..b2cfc013b 100644 --- a/frogpilot/common/frogpilot_variables.py +++ b/frogpilot/common/frogpilot_variables.py @@ -246,6 +246,7 @@ frogpilot_default_params: list[tuple[str, str | bytes, int, str]] = [ ("GithubSshKeys", "", 0, ""), ("GithubUsername", "", 0, ""), ("GoatScream", "0", 1, "0"), + ("GoatScreamCriticalAlerts", "0", 1, "0"), ("GreenLightAlert", "0", 0, "0"), ("GsmApn", "", 0, ""), ("GsmRoaming", "1", 0, "0"), @@ -720,6 +721,7 @@ class FrogPilotVariables: toggle.custom_alerts = params.get_bool("CustomAlerts") if tuning_level >= level["CustomAlerts"] else default.get_bool("CustomAlerts") toggle.goat_scream_alert = toggle.custom_alerts and (params.get_bool("GoatScream") if tuning_level >= level["GoatScream"] else default.get_bool("GoatScream")) + toggle.goat_scream_critical_alerts = toggle.custom_alerts and (params.get_bool("GoatScreamCriticalAlerts") if tuning_level >= level["GoatScreamCriticalAlerts"] else default.get_bool("GoatScreamCriticalAlerts")) toggle.green_light_alert = toggle.custom_alerts and (params.get_bool("GreenLightAlert") if tuning_level >= level["GreenLightAlert"] else default.get_bool("GreenLightAlert")) toggle.lead_departing_alert = toggle.custom_alerts and (params.get_bool("LeadDepartingAlert") if tuning_level >= level["LeadDepartingAlert"] else default.get_bool("LeadDepartingAlert")) toggle.loud_blindspot_alert = has_bsm and toggle.custom_alerts and (params.get_bool("LoudBlindspotAlert") if tuning_level >= level["LoudBlindspotAlert"] else default.get_bool("LoudBlindspotAlert")) diff --git a/frogpilot/system/the_pond/assets/components/tools/device_settings_layout.json b/frogpilot/system/the_pond/assets/components/tools/device_settings_layout.json index b4950e100..f706a7489 100644 --- a/frogpilot/system/the_pond/assets/components/tools/device_settings_layout.json +++ b/frogpilot/system/the_pond/assets/components/tools/device_settings_layout.json @@ -2180,6 +2180,14 @@ "ui_type": "toggle", "parent_key": "CustomAlerts" }, + { + "key": "GoatScreamCriticalAlerts", + "label": "Goat Scream Critical Alerts", + "description": "Play the infamous \"Goat Scream\" for full-screen critical alerts that require immediate takeover.\n\nExamples include: \"TAKE CONTROL IMMEDIATELY\" and \"Stock AEB: Risk of Collision\".", + "data_type": "bool", + "ui_type": "toggle", + "parent_key": "CustomAlerts" + }, { "key": "GreenLightAlert", "label": "Green Light Alert", diff --git a/frogpilot/ui/qt/offroad/sounds_settings.cc b/frogpilot/ui/qt/offroad/sounds_settings.cc index dc36519bd..b847f70a8 100644 --- a/frogpilot/ui/qt/offroad/sounds_settings.cc +++ b/frogpilot/ui/qt/offroad/sounds_settings.cc @@ -53,6 +53,7 @@ FrogPilotSoundsPanel::FrogPilotSoundsPanel(FrogPilotSettingsWindow *parent) : Fr {"CustomAlerts", tr("FrogPilot Alerts"), tr("Optional FrogPilot alerts that highlight driving events in a more noticeable way."), "../../frogpilot/assets/toggle_icons/icon_green_light.png"}, {"GoatScream", tr("Goat Scream"), tr("Play the infamous \"Goat Scream\" when the steering controller reaches its limit. Based on the \"Turn Exceeds Steering Limit\" event."), ""}, + {"GoatScreamCriticalAlerts", tr("Goat Scream Critical Alerts"), tr("Play the infamous \"Goat Scream\" for full-screen critical alerts that require immediate takeover.

Examples include: \"TAKE CONTROL IMMEDIATELY\" and \"Stock AEB: Risk of Collision\"."), ""}, {"GreenLightAlert", tr("Green Light Alert"), tr("Play an alert when the model predicts a red light has turned green.

Disclaimer: openpilot does not explicitly detect traffic lights. This alert is based on end-to-end model predictions from camera input and may trigger even when the light has not changed."), ""}, {"LeadDepartingAlert", tr("Lead Departing Alert"), tr("Play an alert when the lead vehicle departs from a stop."), ""}, {"LoudBlindspotAlert", tr("Loud \"Car Detected in Blindspot\" Alert"), tr("Play a louder alert if a vehicle is in the blind spot when attempting to change lanes. Based on the \"Car Detected in Blindspot\" event."), ""}, diff --git a/frogpilot/ui/qt/offroad/sounds_settings.h b/frogpilot/ui/qt/offroad/sounds_settings.h index 0ba32bb5f..4aca7ff97 100644 --- a/frogpilot/ui/qt/offroad/sounds_settings.h +++ b/frogpilot/ui/qt/offroad/sounds_settings.h @@ -28,7 +28,7 @@ private: std::map toggles; QSet alertVolumeControlKeys {"DisengageVolume", "EngageVolume", "PromptDistractedVolume", "PromptVolume", "RefuseVolume", "WarningImmediateVolume", "WarningSoftVolume"}; - QSet customAlertsKeys {"GoatScream", "GreenLightAlert", "LeadDepartingAlert", "LoudBlindspotAlert", "SpeedLimitChangedAlert"}; + QSet customAlertsKeys {"GoatScream", "GoatScreamCriticalAlerts", "GreenLightAlert", "LeadDepartingAlert", "LoudBlindspotAlert", "SpeedLimitChangedAlert"}; QSet parentKeys; diff --git a/selfdrive/ui/_spinner b/selfdrive/ui/_spinner index 4f6a04b0e..3e19cf0f3 100755 Binary files a/selfdrive/ui/_spinner and b/selfdrive/ui/_spinner differ diff --git a/selfdrive/ui/_text b/selfdrive/ui/_text index 5b486c76a..ea9f29935 100755 Binary files a/selfdrive/ui/_text and b/selfdrive/ui/_text differ diff --git a/selfdrive/ui/soundd.py b/selfdrive/ui/soundd.py index 1e9e1bd36..9def02a8e 100644 --- a/selfdrive/ui/soundd.py +++ b/selfdrive/ui/soundd.py @@ -6,7 +6,7 @@ import wave from pathlib import Path from typing import Any -from cereal import car, custom, messaging +from cereal import car, custom, log, messaging from openpilot.common.basedir import BASEDIR from openpilot.common.filter_simple import FirstOrderFilter from openpilot.common.realtime import Ratekeeper @@ -170,6 +170,11 @@ class Soundd: new_alert = sm['controlsState'].alertSound.raw new_frogpilot_alert = sm['frogpilotControlsState'].alertSound.raw + critical_full_alert = sm['controlsState'].alertStatus == log.ControlsState.AlertStatus.critical + critical_full_alert &= sm['controlsState'].alertSize == log.ControlsState.AlertSize.full + if self.frogpilot_toggles.goat_scream_critical_alerts and critical_full_alert: + new_alert = FrogPilotAudibleAlert.goat + if new_alert == AudibleAlert.none and new_frogpilot_alert != FrogPilotAudibleAlert.none: new_alert = new_frogpilot_alert diff --git a/selfdrive/ui/translations/main_ar.qm b/selfdrive/ui/translations/main_ar.qm index f01e0882c..92906ee62 100644 Binary files a/selfdrive/ui/translations/main_ar.qm and b/selfdrive/ui/translations/main_ar.qm differ diff --git a/selfdrive/ui/translations/main_ar.ts b/selfdrive/ui/translations/main_ar.ts index 11494f72d..e2338574f 100644 --- a/selfdrive/ui/translations/main_ar.ts +++ b/selfdrive/ui/translations/main_ar.ts @@ -400,54 +400,6 @@ Pair your device with Konik connect (stable.konik.ai). أقرِن جهازك مع Konik connect (stable.konik.ai). - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ بدء تشغيل الكاميرا - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - اختيار - - - Cancel - إلغاء - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds ثوانٍ - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>تعديلات Twilsonco المعتمدة على العزم لتنعيم التوجيه في المنعطفات.</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>سلوك متابعة يحاكي السائقين البشر</b> عبر تقليل الفجوات خلف المركبات الأسرع لانطلاق أسرع وضبط مسافة المتابعة المطلوبة ديناميكياً لكبح ألطف وأكثر كفاءة. - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC اختر نموذجًا — 🗺️ = الملاحة | 📡 = الرادار | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3428,30 +3189,6 @@ Developer - Highly customizable settings for seasoned enthusiasts CANCEL إلغاء - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3894,42 +3631,6 @@ Developer - Highly customizable settings for seasoned enthusiasts comma Pedal Support دعم comma Pedal - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4621,10 +4322,6 @@ Developer - Highly customizable settings for seasoned enthusiasts <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>اضبط سماكة حافة الطريق.</b><br><br>القيمة الافتراضية تطابق نصف معيار MUTCD لعرض خط المسار وهو 10 سنتيمترات. - - Driving Model: Current - - FrogPilotWheelPanel @@ -4697,17 +4394,6 @@ Developer - Highly customizable settings for seasoned enthusiasts حدد وظيفة لتعيينها لهذا الزر - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4875,10 +4561,6 @@ Developer - Highly customizable settings for seasoned enthusiasts ALERT تنبيه - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5767,4 +5449,4 @@ This may take up to a minute. نسيان - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_caveman.qm b/selfdrive/ui/translations/main_caveman.qm index a9947b6f8..9297d41d0 100644 Binary files a/selfdrive/ui/translations/main_caveman.qm and b/selfdrive/ui/translations/main_caveman.qm differ diff --git a/selfdrive/ui/translations/main_caveman.ts b/selfdrive/ui/translations/main_caveman.ts index cff94c307..8eb70345a 100644 --- a/selfdrive/ui/translations/main_caveman.ts +++ b/selfdrive/ui/translations/main_caveman.ts @@ -401,54 +401,6 @@ Disengage to Power Off Stop drive. Power off. - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -480,41 +432,6 @@ camera start now - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - Pick - - - Cancel - Stop - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -957,14 +874,6 @@ seconds seconds - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1256,22 +1165,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>Twilsonco make torque tweak. Steering smooth in curve.</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2184,50 +2077,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>Make car follow like human</b>. Close gap behind fast car for quick takeoff. Change follow distance on the fly for soft, smart brake. - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2629,94 +2478,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC Pick Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - Reset - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3117,7 +2878,7 @@ Developer - Many custom setting for seasoned enthusiast FrogPilot Alerts - + <b>Optional FrogPilot alerts</b> that highlight driving events in a more noticeable way. @@ -3432,30 +3193,6 @@ Developer - Many custom setting for seasoned enthusiast CANCEL CANCEL - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3898,42 +3635,6 @@ Developer - Many custom setting for seasoned enthusiast comma Pedal Support comma Pedal Help - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4627,10 +4328,6 @@ Developer - Many custom setting for seasoned enthusiast <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>Set road-edge thickness.</b><br><br>Default same as half MUTCD lane-line width standard, 10 centimeters. - - Driving Model: Current - - FrogPilotWheelPanel @@ -4703,17 +4400,6 @@ Developer - Many custom setting for seasoned enthusiast Pick job for this button - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4877,10 +4563,6 @@ Developer - Many custom setting for seasoned enthusiast ALERT ALERT - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5757,4 +5439,4 @@ This take up to one minute. Forget - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_de.qm b/selfdrive/ui/translations/main_de.qm index 6be01df66..0631fab12 100644 Binary files a/selfdrive/ui/translations/main_de.qm and b/selfdrive/ui/translations/main_de.qm differ diff --git a/selfdrive/ui/translations/main_de.ts b/selfdrive/ui/translations/main_de.ts index 567de9e97..f5e9ec31f 100644 --- a/selfdrive/ui/translations/main_de.ts +++ b/selfdrive/ui/translations/main_de.ts @@ -400,54 +400,6 @@ Pair your device with Konik connect (stable.konik.ai). Koppeln Sie Ihr Gerät mit Konik connect (stable.konik.ai). - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ Kamera startet - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - Auswählen - - - Cancel - Abbrechen - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds Sekunden - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>Twilsoncos drehmomentbasierte Anpassungen zur Glättung der Lenkung in Kurven.</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>Dem Fahrverhalten menschlicher Fahrer nachempfunden</b>, indem Lücken hinter schnelleren Fahrzeugen geschlossen werden, um schneller anzufahren, und der gewünschte Folgeabstand dynamisch angepasst wird, um sanfteres und effizienteres Bremsen zu ermöglichen. - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC Modell auswählen — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - Zurücksetzen - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3428,30 +3189,6 @@ Entwickler – Hochgradig anpassbare Einstellungen für versierte EnthusiastenCANCEL ABBRECHEN - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3894,42 +3631,6 @@ Entwickler – Hochgradig anpassbare Einstellungen für versierte Enthusiastencomma Pedal Support Unterstützung für comma Pedal - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4621,10 +4322,6 @@ Entwickler – Hochgradig anpassbare Einstellungen für versierte Enthusiasten<b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>Stellen Sie die Randstreifendicke ein.</b><br><br>Standard entspricht der Hälfte des MUTCD-Standards für Fahrbahnmarkierungsbreite von 10 Zentimetern. - - Driving Model: Current - - FrogPilotWheelPanel @@ -4697,17 +4394,6 @@ Entwickler – Hochgradig anpassbare Einstellungen für versierte EnthusiastenWählen Sie eine Funktion aus, die dieser Taste zugewiesen werden soll - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4871,10 +4557,6 @@ Entwickler – Hochgradig anpassbare Einstellungen für versierte Enthusiasten ALERT HINWEIS - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5755,4 +5437,4 @@ Dies kann bis zu einer Minute dauern. Vergessen - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_duck.qm b/selfdrive/ui/translations/main_duck.qm index 47c9bd357..2acdb1884 100644 Binary files a/selfdrive/ui/translations/main_duck.qm and b/selfdrive/ui/translations/main_duck.qm differ diff --git a/selfdrive/ui/translations/main_duck.ts b/selfdrive/ui/translations/main_duck.ts index ebc342d07..f8c582143 100644 --- a/selfdrive/ui/translations/main_duck.ts +++ b/selfdrive/ui/translations/main_duck.ts @@ -400,54 +400,6 @@ Disengage to Power Off Quack! Waddle off to power down - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ Quack! Camera starting—waddle on! - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - Quack-select! - - - Cancel - - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -958,14 +875,6 @@ seconds quack seconds - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1257,22 +1166,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>Quack! Twilsonco’s torque tweaks to smooth out steering in curves, waddle-waddle.</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2184,50 +2077,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>Quack! Mimic human drivers</b> by waddling up to close gaps behind faster cars for zippy takeoffs, and duckily tweak the following distance for smoother, more efficient braking. - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2629,94 +2478,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC Quack a Model — 🗺️ = Navigation, 📡 = Radar, 👀 = VOACC, waddle! - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3430,30 +3191,6 @@ Developer - Ultra-custom settings for seasoned duckthusiasts CANCEL QUACK-CANCEL - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3896,42 +3633,6 @@ Developer - Ultra-custom settings for seasoned duckthusiasts comma Pedal Support Quack! comma Pedal Support, waddle on! - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4623,10 +4324,6 @@ Developer - Ultra-custom settings for seasoned duckthusiasts <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>Quack! Set the road-edge thickness, waddlers.</b><br><br>Default quacks to half the MUTCD lane-line width standard of 10 centimeters. - - Driving Model: Current - - FrogPilotWheelPanel @@ -4699,17 +4396,6 @@ Developer - Ultra-custom settings for seasoned duckthusiasts Quack! Pick a function to assign to this button, waddle! - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4873,10 +4559,6 @@ Developer - Ultra-custom settings for seasoned duckthusiasts ALERT QUACK ALERT - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5753,4 +5435,4 @@ Waddle-wait, this may take up to a minute. Quack it! Waddle-waddle, forget it! - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_en.ts b/selfdrive/ui/translations/main_en.ts index 3f9692e5f..6ab696d6d 100644 --- a/selfdrive/ui/translations/main_en.ts +++ b/selfdrive/ui/translations/main_en.ts @@ -35,4 +35,4 @@ - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_es.qm b/selfdrive/ui/translations/main_es.qm index adbf2d49e..74d8c6693 100644 Binary files a/selfdrive/ui/translations/main_es.qm and b/selfdrive/ui/translations/main_es.qm differ diff --git a/selfdrive/ui/translations/main_es.ts b/selfdrive/ui/translations/main_es.ts index bfdb61146..be7256ce8 100644 --- a/selfdrive/ui/translations/main_es.ts +++ b/selfdrive/ui/translations/main_es.ts @@ -400,54 +400,6 @@ Pair your device with Konik connect (stable.konik.ai). Empareja tu dispositivo con Konik connect (stable.konik.ai). - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ iniciando cámara - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - Seleccione - - - Cancel - Cancelar - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds segundos - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>Ajustes basados en par de Twilsonco para suavizar la dirección en curvas.</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>Comportamiento de seguimiento que imita a los conductores humanos</b> cerrando huecos detrás de vehículos más rápidos para salidas más rápidas y ajustando dinámicamente la distancia de seguimiento deseada para un frenado más suave y eficiente. - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC Selecciona un modelo — 🗺️ = Navegación | 📡 = Radar | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3427,30 +3188,6 @@ Desarrollador: configuración altamente personalizable para entusiastas veterano CANCEL CANCELAR - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3893,42 +3630,6 @@ Desarrollador: configuración altamente personalizable para entusiastas veterano comma Pedal Support Compatibilidad con comma Pedal - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4620,10 +4321,6 @@ Desarrollador: configuración altamente personalizable para entusiastas veterano <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>Establece el grosor del borde de la carretera.</b><br><br>El valor predeterminado coincide con la mitad del estándar MUTCD de ancho de línea de carril de 10 centímetros. - - Driving Model: Current - - FrogPilotWheelPanel @@ -4696,17 +4393,6 @@ Desarrollador: configuración altamente personalizable para entusiastas veterano Seleccione una función para asignar a este botón - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4870,10 +4556,6 @@ Desarrollador: configuración altamente personalizable para entusiastas veterano ALERT ALERTA - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5750,4 +5432,4 @@ Esto puede tardar hasta un minuto. Olvidar - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_fr.qm b/selfdrive/ui/translations/main_fr.qm index cc4f6e67e..b390ae5d6 100644 Binary files a/selfdrive/ui/translations/main_fr.qm and b/selfdrive/ui/translations/main_fr.qm differ diff --git a/selfdrive/ui/translations/main_fr.ts b/selfdrive/ui/translations/main_fr.ts index 95b7f1e35..d6759c3fc 100644 --- a/selfdrive/ui/translations/main_fr.ts +++ b/selfdrive/ui/translations/main_fr.ts @@ -400,54 +400,6 @@ Pair your device with Konik connect (stable.konik.ai). Associez votre appareil à Konik connect (stable.konik.ai). - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ démarrage de la caméra - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - Sélectionner - - - Cancel - Annuler - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds secondes - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>Ajustements basés sur le couple de Twilsonco pour adoucir la direction dans les virages.</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>Un comportement de suivi qui imite les conducteurs humains</b> en réduisant les écarts derrière les véhicules plus rapides pour des départs plus rapides et en ajustant dynamiquement la distance de suivi souhaitée pour un freinage plus doux et plus efficace. - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC Sélectionner un modèle — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - Réinitialiser - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3427,30 +3188,6 @@ Développeur – Paramètres hautement personnalisables pour passionnés chevron CANCEL ANNULER - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3893,42 +3630,6 @@ Développeur – Paramètres hautement personnalisables pour passionnés chevron comma Pedal Support Prise en charge de comma Pedal - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4620,10 +4321,6 @@ Développeur – Paramètres hautement personnalisables pour passionnés chevron <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>Réglez l’épaisseur du bord de route.</b><br><br>La valeur par défaut correspond à la moitié de la largeur standard des lignes de voie du MUTCD, soit 10 centimètres. - - Driving Model: Current - - FrogPilotWheelPanel @@ -4696,17 +4393,6 @@ Développeur – Paramètres hautement personnalisables pour passionnés chevron Sélectionnez une fonction à attribuer à ce bouton - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4870,10 +4556,6 @@ Développeur – Paramètres hautement personnalisables pour passionnés chevron ALERT ALERTE - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5750,4 +5432,4 @@ Cela peut prendre jusqu'à une minute. Oublier - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_frog.qm b/selfdrive/ui/translations/main_frog.qm index 8787f01b6..01a02375b 100644 Binary files a/selfdrive/ui/translations/main_frog.qm and b/selfdrive/ui/translations/main_frog.qm differ diff --git a/selfdrive/ui/translations/main_frog.ts b/selfdrive/ui/translations/main_frog.ts index f02a79866..4a6c36c7a 100644 --- a/selfdrive/ui/translations/main_frog.ts +++ b/selfdrive/ui/translations/main_frog.ts @@ -400,54 +400,6 @@ Disengage to Power Off Ribbit! Hop off to Power Off - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ Ribbit! Camera croaks awake, starting now. - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - Ribbit! Pick it, croak! - - - Cancel - Ribbit! Cancel croak! - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds Ribbit… seconds. Croak. - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>Ribbit! Twilsonco’s torque tweaks smooth steering through curves, croak.</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>Croaky follow like humans</b>, ribbit! Hop to close gaps behind faster cars for quick takeoffs, and croak-adjust the follow distance for gentler, thriftier braking. - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC Ribbit! Pick a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC, croak! - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3428,30 +3189,6 @@ Developer - Highly customizable settings for seasoned swamp pros CANCEL Ribbit! CANCEL croak! - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3894,42 +3631,6 @@ Developer - Highly customizable settings for seasoned swamp pros comma Pedal Support Ribbit! comma Pedal Support croak! - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4621,10 +4322,6 @@ Developer - Highly customizable settings for seasoned swamp pros <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>Croak! Set the road-edge thickness.</b><br><br>Default ribbits to half the MUTCD lane-line width standard of 10 centimeters. - - Driving Model: Current - - FrogPilotWheelPanel @@ -4697,17 +4394,6 @@ Developer - Highly customizable settings for seasoned swamp pros Ribbit! Pick a function to stick on this button, croak! - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4871,10 +4557,6 @@ Developer - Highly customizable settings for seasoned swamp pros ALERT Ribbit! ALERT! - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5751,4 +5433,4 @@ This may take up to a minute, croak. Ribbit! Forget croak! - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_ja.qm b/selfdrive/ui/translations/main_ja.qm index d9545d3e7..98b02200c 100644 Binary files a/selfdrive/ui/translations/main_ja.qm and b/selfdrive/ui/translations/main_ja.qm differ diff --git a/selfdrive/ui/translations/main_ja.ts b/selfdrive/ui/translations/main_ja.ts index 520ac0819..811c29a88 100644 --- a/selfdrive/ui/translations/main_ja.ts +++ b/selfdrive/ui/translations/main_ja.ts @@ -400,54 +400,6 @@ Pair your device with Konik connect (stable.konik.ai). デバイスをKonik connect(stable.konik.ai)にペアリングしてください。 - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ カメラを起動しています - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - 選択 - - - Cancel - キャンセル - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>カーブでのステアリングを滑らかにするためのTwilsoncoのトルクベース調整。</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>人間のドライバーを模倣する追従挙動</b>。より速い車両の後方で車間を詰めて発進を素早くし、望ましい追従距離を動的に調整して、より穏やかで効率的な減速を実現します。 - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC モデルを選択 — 🗺️ = ナビゲーション | 📡 = レーダー | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - リセット - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3426,30 +3187,6 @@ Developer - こだわりのある上級者向けの高度にカスタマイズ CANCEL キャンセル - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3892,42 +3629,6 @@ Developer - こだわりのある上級者向けの高度にカスタマイズ comma Pedal Support comma Pedal 対応 - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4619,10 +4320,6 @@ Developer - こだわりのある上級者向けの高度にカスタマイズ <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>道路端の太さを設定します。</b><br><br>デフォルトは、MUTCDの車線線幅標準10センチメートルの半分に一致します。 - - Driving Model: Current - - FrogPilotWheelPanel @@ -4695,17 +4392,6 @@ Developer - こだわりのある上級者向けの高度にカスタマイズ このボタンに割り当てる機能を選択してください - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4868,10 +4554,6 @@ Developer - こだわりのある上級者向けの高度にカスタマイズ ALERT 警告 - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5745,4 +5427,4 @@ This may take up to a minute. 削除 - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_ko.qm b/selfdrive/ui/translations/main_ko.qm index 5d979f9b4..7e8e9c399 100644 Binary files a/selfdrive/ui/translations/main_ko.qm and b/selfdrive/ui/translations/main_ko.qm differ diff --git a/selfdrive/ui/translations/main_ko.ts b/selfdrive/ui/translations/main_ko.ts index 8d10b4513..511ad1cad 100644 --- a/selfdrive/ui/translations/main_ko.ts +++ b/selfdrive/ui/translations/main_ko.ts @@ -400,54 +400,6 @@ Pair your device with Konik connect (stable.konik.ai). 기기를 Konik connect(stable.konik.ai)와 페어링하세요. - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ 카메라 시작 중 - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - 선택 - - - Cancel - 취소 - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>커브에서 조향을 부드럽게 하기 위한 Twilsonco의 토크 기반 조정.</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>사람 운전자와 유사한 추종 동작</b>으로, 더 빠른 차량 뒤 간격을 좁혀 신속한 출발을 돕고 원하는 추종 거리를 동적으로 조절해 더욱 부드럽고 효율적인 제동을 수행합니다. - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC 모델 선택 — 🗺️ = 내비게이션 | 📡 = 레이더 | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3427,30 +3188,6 @@ Developer - Highly customizable settings for seasoned enthusiasts CANCEL 취소 - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3893,42 +3630,6 @@ Developer - Highly customizable settings for seasoned enthusiasts comma Pedal Support comma Pedal 지원 - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4620,10 +4321,6 @@ Developer - Highly customizable settings for seasoned enthusiasts <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>도로 가장자리 두께를 설정하세요.</b><br><br>기본값은 MUTCD 차선선 폭 표준 10센티미터의 절반과 일치합니다. - - Driving Model: Current - - FrogPilotWheelPanel @@ -4696,17 +4393,6 @@ Developer - Highly customizable settings for seasoned enthusiasts 이 버튼에 할당할 기능을 선택하세요 - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4869,10 +4555,6 @@ Developer - Highly customizable settings for seasoned enthusiasts ALERT 알림 - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5746,4 +5428,4 @@ This may take up to a minute. 삭제 - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_pirate.qm b/selfdrive/ui/translations/main_pirate.qm index db6a7934f..4e724f4dd 100644 Binary files a/selfdrive/ui/translations/main_pirate.qm and b/selfdrive/ui/translations/main_pirate.qm differ diff --git a/selfdrive/ui/translations/main_pirate.ts b/selfdrive/ui/translations/main_pirate.ts index 0207cad02..6161bc59f 100644 --- a/selfdrive/ui/translations/main_pirate.ts +++ b/selfdrive/ui/translations/main_pirate.ts @@ -400,54 +400,6 @@ Disengage to Power Off Belay yer helm to Power Off - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ camera be startin' - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - Be pickin' - - - Cancel - Belay - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds seconds - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>Twilsonco’s torque-based tweaks t’ smooth out steerin’ in curves, arr!</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>Behavin’ like real hands at the wheel</b> by closin’ gaps astern o’ swifter wagons fer quicker shove-offs, an’ smartly trimmin’ the wanted followin’ distance fer gentler, more shipshape brak’n. - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC Pick a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3428,30 +3189,6 @@ Developer - Highly customizable riggin’s fer seasoned enthusiastsCANCEL AVAST - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3894,42 +3631,6 @@ Developer - Highly customizable riggin’s fer seasoned enthusiastscomma Pedal Support comma Pedal Support, arrr - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4621,10 +4322,6 @@ Developer - Highly customizable riggin’s fer seasoned enthusiasts<b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>Set th’ road-edge thickness, ye landlubber.</b><br><br>Default be half o’ the MUTCD lane-line width standard o’ 10 centimeters. - - Driving Model: Current - - FrogPilotWheelPanel @@ -4697,17 +4394,6 @@ Developer - Highly customizable riggin’s fer seasoned enthusiastsBe pickin’ a function to lash to this here button - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4871,10 +4557,6 @@ Developer - Highly customizable riggin’s fer seasoned enthusiasts ALERT ALERT, arrr! - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5751,4 +5433,4 @@ This may take up to a minute, arr. Ferget - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_pt-BR.qm b/selfdrive/ui/translations/main_pt-BR.qm index 760ad3ab9..01af96ba1 100644 Binary files a/selfdrive/ui/translations/main_pt-BR.qm and b/selfdrive/ui/translations/main_pt-BR.qm differ diff --git a/selfdrive/ui/translations/main_pt-BR.ts b/selfdrive/ui/translations/main_pt-BR.ts index 5a65ca744..d7f4f4cf7 100644 --- a/selfdrive/ui/translations/main_pt-BR.ts +++ b/selfdrive/ui/translations/main_pt-BR.ts @@ -400,54 +400,6 @@ Pair your device with Konik connect (stable.konik.ai). Emparelhe seu dispositivo com o Konik connect (stable.konik.ai). - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ câmera iniciando - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - Selecione - - - Cancel - Cancelar - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds segundos - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>Ajustes baseados em torque do Twilsonco para suavizar a direção em curvas.</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>Comportamento de acompanhamento que imita motoristas humanos</b> ao fechar lacunas atrás de veículos mais rápidos para arrancadas mais rápidas e ajustar dinamicamente a distância de seguimento desejada para frenagens mais suaves e eficientes. - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC Selecione um Modelo — 🗺️ = Navegação | 📡 = Radar | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3428,30 +3189,6 @@ Desenvolvedor - Configurações altamente personalizáveis para entusiastas expe CANCEL CANCELAR - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3894,42 +3631,6 @@ Desenvolvedor - Configurações altamente personalizáveis para entusiastas expe comma Pedal Support Compatibilidade com comma Pedal - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4621,10 +4322,6 @@ Desenvolvedor - Configurações altamente personalizáveis para entusiastas expe <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>Defina a espessura da borda da estrada.</b><br><br>O padrão corresponde à metade do padrão de largura de faixa do MUTCD de 10 centímetros. - - Driving Model: Current - - FrogPilotWheelPanel @@ -4697,17 +4394,6 @@ Desenvolvedor - Configurações altamente personalizáveis para entusiastas expe Selecione uma função para atribuir a este botão - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4871,10 +4557,6 @@ Desenvolvedor - Configurações altamente personalizáveis para entusiastas expe ALERT ALERTA - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5751,4 +5433,4 @@ Isso pode levar até um minuto. Esquecer - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_shakespearean.qm b/selfdrive/ui/translations/main_shakespearean.qm index c5d37bb10..95c362392 100644 Binary files a/selfdrive/ui/translations/main_shakespearean.qm and b/selfdrive/ui/translations/main_shakespearean.qm differ diff --git a/selfdrive/ui/translations/main_shakespearean.ts b/selfdrive/ui/translations/main_shakespearean.ts index 05bdeda8d..31d96c3eb 100644 --- a/selfdrive/ui/translations/main_shakespearean.ts +++ b/selfdrive/ui/translations/main_shakespearean.ts @@ -400,54 +400,6 @@ Disengage to Power Off Disengage to Power Down - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ the camera beginneth - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - Select - - - Cancel - - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -960,14 +877,6 @@ seconds seconds - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1259,22 +1168,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>Twilsonco’s torque-wrought tweaks to make steering flow smoother ’midst the curves.</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2188,50 +2081,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>Following comportment that doth mirror mortal coachmen</b> by narrowing gaps behind swifter chariots for hastier set-offs and by dynamically tuning the desired following distance for gentler, more thrifty braking. - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2633,94 +2482,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC Choose a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3436,30 +3197,6 @@ Developer - Most customizable settings for well-tried enthusiasts CANCEL CANCEL - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3904,42 +3641,6 @@ Developer - Most customizable settings for well-tried enthusiasts comma Pedal Support comma Pedal Support - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4633,10 +4334,6 @@ Developer - Most customizable settings for well-tried enthusiasts <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>Set the road-edge thickness.</b><br><br>The default doth match half the MUTCD lane-line width standard of 10 centimeters. - - Driving Model: Current - - FrogPilotWheelPanel @@ -4709,17 +4406,6 @@ Developer - Most customizable settings for well-tried enthusiasts Select a function to bestow upon this button - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4883,10 +4569,6 @@ Developer - Most customizable settings for well-tried enthusiasts ALERT ALERT - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5763,4 +5445,4 @@ This may consume up to a minute. Forget thee - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_th.qm b/selfdrive/ui/translations/main_th.qm index a4a63dc01..5627814f0 100644 Binary files a/selfdrive/ui/translations/main_th.qm and b/selfdrive/ui/translations/main_th.qm differ diff --git a/selfdrive/ui/translations/main_th.ts b/selfdrive/ui/translations/main_th.ts index 2d074bf01..ee6c7b3b2 100644 --- a/selfdrive/ui/translations/main_th.ts +++ b/selfdrive/ui/translations/main_th.ts @@ -400,54 +400,6 @@ Pair your device with Konik connect (stable.konik.ai). จับคู่เครื่องมือของคุณกับ Konik connect (stable.konik.ai). - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ กำลังเปิดกล้อง - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - เลือก - - - Cancel - ยกเลิก - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds วินาที - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>การปรับตามแรงบิดของ Twilsonco เพื่อทำให้การบังคับเลี้ยวในโค้งนุ่มนวลขึ้น</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>พฤติกรรมการตามที่เลียนแบบผู้ขับขี่มนุษย์</b> โดยปิดช่องว่างด้านหลังรถที่เร็วกว่าเพื่อออกตัวได้เร็วขึ้น และปรับระยะห่างที่ต้องการแบบไดนามิกเพื่อการเบรกที่นุ่มนวลและมีประสิทธิภาพมากขึ้น - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC เลือกโมเดล — 🗺️ = นำทาง | 📡 = เรดาร์ | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - รีเซ็ต - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3428,30 +3189,6 @@ Developer - Highly customizable settings for seasoned enthusiasts CANCEL ยกเลิก - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3894,42 +3631,6 @@ Developer - Highly customizable settings for seasoned enthusiasts comma Pedal Support รองรับ comma Pedal - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4621,10 +4322,6 @@ Developer - Highly customizable settings for seasoned enthusiasts <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>ตั้งค่าความหนาของขอบถนน</b><br><br>ค่าเริ่มต้นเท่ากับครึ่งหนึ่งของมาตรฐานความกว้างเส้นแบ่งช่องจราจรของ MUTCD ที่ 10 เซนติเมตร - - Driving Model: Current - - FrogPilotWheelPanel @@ -4697,17 +4394,6 @@ Developer - Highly customizable settings for seasoned enthusiasts เลือกฟังก์ชันเพื่อกำหนดให้ปุ่มนี้ - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4870,10 +4556,6 @@ Developer - Highly customizable settings for seasoned enthusiasts ALERT การแจ้งเตือน - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5747,4 +5429,4 @@ This may take up to a minute. เลิกใช้ - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_tr.qm b/selfdrive/ui/translations/main_tr.qm index a3742e80e..d650abe44 100644 Binary files a/selfdrive/ui/translations/main_tr.qm and b/selfdrive/ui/translations/main_tr.qm differ diff --git a/selfdrive/ui/translations/main_tr.ts b/selfdrive/ui/translations/main_tr.ts index cc4ad15fb..5e44b1ce6 100644 --- a/selfdrive/ui/translations/main_tr.ts +++ b/selfdrive/ui/translations/main_tr.ts @@ -400,54 +400,6 @@ Pair your device with Konik connect (stable.konik.ai). Cihazınızı Konik connect (stable.konik.ai) ile eşleştirin. - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ kamera başlatılıyor - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - Seç - - - Cancel - - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds saniye - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>Virajlarda direksiyonu yumuşatmak için Twilsonco’nun torka dayalı ayarlamaları.</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>İnsan sürücüleri taklit eden takip davranışı</b>: Daha hızlı araçların arkasındaki boşlukları kapatarak daha hızlı kalkışlar ve daha yumuşak, daha verimli frenleme için istenen takip mesafesini dinamik olarak ayarlama. - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC Bir Model Seç — 🗺️ = Navigasyon | 📡 = Radar | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - Sıfırla - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3427,30 +3188,6 @@ Geliştirici - Tecrübeli meraklılar için yüksek özelleştirilebilir ayarlar CANCEL İPTAL - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3893,42 +3630,6 @@ Geliştirici - Tecrübeli meraklılar için yüksek özelleştirilebilir ayarlar comma Pedal Support comma Pedal Desteği - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4620,10 +4321,6 @@ Geliştirici - Tecrübeli meraklılar için yüksek özelleştirilebilir ayarlar <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>Yol kenarı kalınlığını ayarlayın.</b><br><br>Varsayılan, MUTCD şerit çizgisi genişliği standardı olan 10 santimetrenin yarısına karşılık gelir. - - Driving Model: Current - - FrogPilotWheelPanel @@ -4696,17 +4393,6 @@ Geliştirici - Tecrübeli meraklılar için yüksek özelleştirilebilir ayarlar Bu düğmeye atanacak bir işlev seçin - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4869,10 +4555,6 @@ Geliştirici - Tecrübeli meraklılar için yüksek özelleştirilebilir ayarlar ALERT UYARI - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5746,4 +5428,4 @@ Bu işlem bir dakika kadar sürebilir. Unut - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_zh-CHS.qm b/selfdrive/ui/translations/main_zh-CHS.qm index 195b345c5..c7f969e8b 100644 Binary files a/selfdrive/ui/translations/main_zh-CHS.qm and b/selfdrive/ui/translations/main_zh-CHS.qm differ diff --git a/selfdrive/ui/translations/main_zh-CHS.ts b/selfdrive/ui/translations/main_zh-CHS.ts index e92c5ddd1..9dda85759 100644 --- a/selfdrive/ui/translations/main_zh-CHS.ts +++ b/selfdrive/ui/translations/main_zh-CHS.ts @@ -400,54 +400,6 @@ Pair your device with Konik connect (stable.konik.ai). 将您的设备与 Konik connect(stable.konik.ai)配对。 - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ 正在启动相机 - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - 选择 - - - Cancel - 取消 - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>Twilsonco 基于扭矩的调整,用于在弯道中平滑转向。</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>模仿人类驾驶员的跟车行为</b>,通过在更快车辆后方缩小车距以更快起步,并动态调整期望跟车距离,以实现更平顺、更高效的制动。 - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC 选择模型 — 🗺️ = 导航 | 📡 = 雷达 | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - 重置 - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3428,30 +3189,6 @@ Developer - Highly customizable settings for seasoned enthusiasts CANCEL 取消 - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3894,42 +3631,6 @@ Developer - Highly customizable settings for seasoned enthusiasts comma Pedal Support comma Pedal 支持 - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4621,10 +4322,6 @@ Developer - Highly customizable settings for seasoned enthusiasts <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>设置路缘厚度。</b><br><br>默认值等于 MUTCD 车道线宽度标准 10 厘米的一半。 - - Driving Model: Current - - FrogPilotWheelPanel @@ -4697,17 +4394,6 @@ Developer - Highly customizable settings for seasoned enthusiasts 选择要分配给此按钮的功能 - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4870,10 +4556,6 @@ Developer - Highly customizable settings for seasoned enthusiasts ALERT 警报 - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5747,4 +5429,4 @@ This may take up to a minute. 忽略 - + \ No newline at end of file diff --git a/selfdrive/ui/translations/main_zh-CHT.qm b/selfdrive/ui/translations/main_zh-CHT.qm index fd5c0cdad..f19ccc9b2 100644 Binary files a/selfdrive/ui/translations/main_zh-CHT.qm and b/selfdrive/ui/translations/main_zh-CHT.qm differ diff --git a/selfdrive/ui/translations/main_zh-CHT.ts b/selfdrive/ui/translations/main_zh-CHT.ts index 78b0d0503..fba72a474 100644 --- a/selfdrive/ui/translations/main_zh-CHT.ts +++ b/selfdrive/ui/translations/main_zh-CHT.ts @@ -400,54 +400,6 @@ Pair your device with Konik connect (stable.konik.ai). 將您的裝置與 Konik connect(stable.konik.ai)配對。 - - Galaxy - - - - Pair - - - - Pair your device with Galaxy for remote access to The Pond. - - - - Enter Password - - - - Please enter a password to secure your Galaxy access. (Min 6 characters) - - - - Unpair - - - - Pairing successful! Visit galaxy.firestar.link/ - - - - to connect. - - - - Are you sure you want to unpair from Galaxy? - - - - Galaxy QR - - - - SHOW - - - - Show a QR code to quickly open Galaxy on your phone. - - DriveStats @@ -479,41 +431,6 @@ 開啟相機中 - - ExpandableMultiOptionDialog - - Sort by: - - - - Alphabetical - - - - Date (Newest) - - - - Date (Oldest) - - - - Favorites First - - - - Select - 選擇 - - - Cancel - 取消 - - - %1 (Community Fav) - - - ExperimentalModeButton @@ -956,14 +873,6 @@ seconds - - Always Allow Uploads - - - - <b>Force driving data uploads regardless of network type, metered status, and upload restrictions.</b> This overrides normal upload blocking checks. - - FrogPilotLateralPanel @@ -1255,22 +1164,6 @@ <b>Twilsonco's torque-based adjustments to smoothen out steering in curves.</b> <b>Twilsonco 的扭力式調整,可在轉彎時讓轉向更平順。</b> - - Steer Offset (Default: %1) - - - - Steer Offset - - - - <b>Offsets steering torque to help compensate for alignment or tire issues.</b> More negative pulls the car right; more positive pulls it left. Most users should not need to touch this. - - - - Reset <b>Steer Offset</b> to its default value? - - FrogPilotLongitudinalPanel @@ -2182,50 +2075,6 @@ <b>Following behavior that mimics human drivers</b> by closing gaps behind faster vehicles for quicker takeoffs and dynamically adjusting the desired following distance for gentler, more efficient braking. <b>模仿人類駕駛的跟車行為</b>,在後方有更快車輛時縮小間距以更快起步,並動態調整期望跟車距離,以實現更柔順且更高效的制動。 - - EV Tuning - - - - <b>Use acceleration profiles tuned for EVs.</b> Defaults to the vehicle's detected powertrain type but can be overridden if the automatic choice doesn't match. - - - - Truck Tuning - - - - <b>Use aggressive acceleration profiles tuned for trucks.</b> Intended for heavy vehicles that need stronger throttle. - - - - High Speed Following Distance - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Aggressive" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.25 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Standard" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.45 seconds. - - - - <b>How many seconds openpilot follows behind lead vehicles when using the "Relaxed" profile at high speeds.</b> Increase for more space; decrease for tighter gaps.<br><br>Default: 1.75 seconds. - - - - Trailer Load - - - - <b>Increase the vehicle mass to account for towing.</b> Adjust in 500 lb steps up to 15,000 lbs to fine-tune gas and brake behavior when pulling a trailer. - - - - lbs - - FrogPilotManageControl @@ -2627,94 +2476,6 @@ Select a Model — 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC 選擇模型 — 🗺️ = 導航 | 📡 = 雷達 | 👀 = VOACC - - Automatically download new driving models as they become available. - - - - Delete driving models from the device. - - - - Download driving models to the device. - - - - Driving models are chosen at random each drive and feedback prompts are used to find the model that best suits your needs. - - - - Recovery Power - - - - Adjust the strength of planplus lane recovery corrections (0.5 to 2.0). - - - - Stop Distance - - - - Adjust the model's stopping distance in meters (minimum 4 for safety). Most users prefer 6. - - - - Add or remove models from the <b>Model Randomizer</b>'s blacklist list. - - - - Reset or view the saved ratings for the driving models. - - - - Select the active driving model. - - - - Custom Series - - - - There are no more models to blacklist! The only available model is "%1"! - - - - Select a model to add to the blacklist - - - - Select a model to remove from the blacklist - - - - Are you sure you want to remove all of your blacklisted models? - - - - Are you sure you want to reset all of your model drives and scores? - - - - Select a model - 🗺️ = Navigation | 📡 = Radar | 👀 = VOACC - - - - The "Model Randomizer" only works with downloaded models. Do you want to download all the driving models? - - - - Are you sure you want to reset your <b>Recovery Power</b> to the default of 1.0? - - - - Reset - 重設 - - - Are you sure you want to reset your <b>Stop Distance</b> to the default of 6 meters? - - FrogPilotModelReview @@ -3428,30 +3189,6 @@ Developer - 為資深愛好者提供高度自訂的設定 CANCEL 取消 - - Boot Logo - - - - <b>The boot logo shown while the device starts.</b> - - - - Select a boot logo to delete - - - - Delete the "%1" boot logo? - - - - Select a boot logo to download - - - - Select a boot logo - - FrogPilotUtilitiesPanel @@ -3894,42 +3631,6 @@ Developer - 為資深愛好者提供高度自訂的設定 comma Pedal Support comma Pedal 支援 - - Use Pedal for Longitudinal Control - - - - <b>Use the pedal interceptor for longitudinal control</b> instead of camera ACC/Redneck when available. - - - - Red Panda - - - - <b>Enable Red Panda behavior</b> for GM (alternate safety config and bus numbering). Requires a reboot to take effect. - - - - Remote Start Boots Comma - - - - <b>Use GM C9 SystemPowerMode</b> for ignition detection. Toggle requires a panda firmware update and a reboot to take effect. - - - - SASCM Support - - - - <b>Does your vehicle support "SASCMs"?</b> - - - - Remote Start requires a Panda firmware update. Flash the Panda now? - - FrogPilotVisualsPanel @@ -4621,10 +4322,6 @@ Developer - 為資深愛好者提供高度自訂的設定 <b>Set the road-edge thickness.</b><br><br>Default matches half of the MUTCD lane-line width standard of 10 centimeters. <b>設定道路邊緣粗細。</b><br><br>預設值相當於符合 MUTCD 車道線標準 10 公分的一半。 - - Driving Model: Current - - FrogPilotWheelPanel @@ -4697,17 +4394,6 @@ Developer - 為資深愛好者提供高度自訂的設定 選擇要指派給此按鈕的功能 - - GalaxyQRPopup - - Scan to open Galaxy - - - - Tap anywhere to dismiss - - - InputDialog @@ -4870,10 +4556,6 @@ Developer - 為資深愛好者提供高度自訂的設定 ALERT 提醒 - - Branch Merge Notice: This branch is deprecated and has been merged into StarPilot. Please switch to the StarPilot branch. - - OnroadAlerts @@ -5747,4 +5429,4 @@ This may take up to a minute. 清除 - + \ No newline at end of file diff --git a/selfdrive/ui/ui b/selfdrive/ui/ui index 80d75361a..54f9bdce4 100755 Binary files a/selfdrive/ui/ui and b/selfdrive/ui/ui differ