Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
marlin-anet-a8
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jonas Leder
marlin-anet-a8
Commits
f9f7697b
Commit
f9f7697b
authored
5 years ago
by
Tanguy Pruvot
Committed by
Scott Lahteine
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix Probe Offset XY edit items (et Français) (#16523)
parent
409d7378
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Marlin/src/lcd/language/language_fr.h
+3
-0
3 additions, 0 deletions
Marlin/src/lcd/language/language_fr.h
Marlin/src/lcd/menu/menu_advanced.cpp
+2
-2
2 additions, 2 deletions
Marlin/src/lcd/menu/menu_advanced.cpp
with
5 additions
and
2 deletions
Marlin/src/lcd/language/language_fr.h
+
3
−
0
View file @
f9f7697b
...
...
@@ -365,6 +365,9 @@ namespace Language_fr {
PROGMEM
Language_Str
MSG_MANUAL_DEPLOY
=
_UxGT
(
"Déployer Sonde Z"
);
PROGMEM
Language_Str
MSG_MANUAL_STOW
=
_UxGT
(
"Ranger Sonde Z"
);
PROGMEM
Language_Str
MSG_HOME_FIRST
=
_UxGT
(
"Origine %s%s%s Premier"
);
PROGMEM
Language_Str
MSG_ZPROBE_OFFSETS
=
_UxGT
(
"Position sonde Z"
);
PROGMEM
Language_Str
MSG_ZPROBE_XOFFSET
=
_UxGT
(
"Décalage X"
);
PROGMEM
Language_Str
MSG_ZPROBE_YOFFSET
=
_UxGT
(
"Décalage Y"
);
PROGMEM
Language_Str
MSG_ZPROBE_ZOFFSET
=
_UxGT
(
"Décalage Z"
);
PROGMEM
Language_Str
MSG_BABYSTEP_TOTAL
=
_UxGT
(
"Total"
);
PROGMEM
Language_Str
MSG_ENDSTOP_ABORT
=
_UxGT
(
"Butée abandon"
);
...
...
This diff is collapsed.
Click to expand it.
Marlin/src/lcd/menu/menu_advanced.cpp
+
2
−
2
View file @
f9f7697b
...
...
@@ -506,8 +506,8 @@ void menu_cancelobject();
void
menu_probe_offsets
()
{
START_MENU
();
BACK_ITEM
(
MSG_ADVANCED_SETTINGS
);
EDIT_ITEM
(
float51
,
MSG_ZPROBE_XOFFSET
,
&
probe_offset
.
x
,
-
(
X_BED_SIZE
),
X_BED_SIZE
);
EDIT_ITEM
(
float51
,
MSG_ZPROBE_YOFFSET
,
&
probe_offset
.
y
,
-
(
Y_BED_SIZE
),
Y_BED_SIZE
);
EDIT_ITEM
(
float51
sign
,
MSG_ZPROBE_XOFFSET
,
&
probe_offset
.
x
,
-
(
X_BED_SIZE
),
X_BED_SIZE
);
EDIT_ITEM
(
float51
sign
,
MSG_ZPROBE_YOFFSET
,
&
probe_offset
.
y
,
-
(
Y_BED_SIZE
),
Y_BED_SIZE
);
EDIT_ITEM
(
LCD_Z_OFFSET_TYPE
,
MSG_ZPROBE_ZOFFSET
,
&
probe_offset
.
z
,
Z_PROBE_OFFSET_RANGE_MIN
,
Z_PROBE_OFFSET_RANGE_MAX
);
END_MENU
();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment