Skip to content

Commit

Permalink
Fix translated messages (#3677)
Browse files Browse the repository at this point in the history
  • Loading branch information
haslinghuis authored Dec 19, 2023
1 parent 4679e33 commit c4c5284
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -5519,8 +5519,8 @@
"message": "GPS lap time best 3",
"description": "One of the elements of the OSD"
},
"osdDescElementLapTimeBest": {
"message": "Best GPS lap time"
"osdDescElementLapTimeBest3": {
"message": "Best 3 GPS lap times"
},
"osdTextElementCraftName": {
"message": "Craft name",
Expand Down
2 changes: 1 addition & 1 deletion src/js/tabs/failsafe.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ failsafe.initialize = function (callback) {
$('input[name="gps_rescue_return_altitude"]').attr({"min": 5, "max": 1000});
$('input[name="gps_rescue_descent_distance"]').attr("min", 10);
$('input[name="gps_rescue_min_start_dist"]').attr({"min": 10, "max": 30})
.closest('.number').children('.helpicon').attr("i18n_title", i18n.getMessage("failsafeGpsRescueItemMinStartDistHelp"));
.closest('.number').children('.helpicon').attr("i18n_title", "failsafeGpsRescueItemMinStartDistHelp");
$('input[name="gps_rescue_descend_rate"]').attr({"min": 0.2, "max": 50.0});
}

Expand Down

0 comments on commit c4c5284

Please sign in to comment.