Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix issue Insert filament ... message in French and Hungarian #4651

Merged
merged 1 commit into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Firmware/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2139,12 +2139,12 @@ void lcd_wait_interact() {

lcd_clear();

lcd_puts_at_P(0, 1, _T(MSG_INSERT_FILAMENT));
lcd_puts_at_P(0, 0, _T(MSG_INSERT_FILAMENT));
#ifdef FILAMENT_SENSOR
if (!fsensor.getAutoLoadEnabled())
#endif //FILAMENT_SENSOR
{
lcd_puts_at_P(0, 2, _T(MSG_PRESS));
lcd_puts_at_P(0, 1, _T(MSG_PRESS));
}
}

Expand Down
2 changes: 1 addition & 1 deletion lang/po/Firmware_fr.po
Original file line number Diff line number Diff line change
Expand Up @@ -2442,7 +2442,7 @@ msgstr "Offset point [0;0]"
#. MSG_PRESS c=20 r=2
#: ../../Firmware/messages.cpp:239 ../../Firmware/ultralcd.cpp:2147
msgid "and press the knob"
msgstr "et appuyez sur le bouton"
msgstr "et appuyez\nsur le bouton"

#. MSG_TO_LOAD_FIL c=20
#: ../../Firmware/messages.cpp:232 ../../Firmware/ultralcd.cpp:1807
Expand Down
2 changes: 1 addition & 1 deletion lang/po/Firmware_hu.po
Original file line number Diff line number Diff line change
Expand Up @@ -2430,7 +2430,7 @@ msgstr "[0;0] pont offszet"
#. MSG_PRESS c=20 r=2
#: ../../Firmware/messages.cpp:239 ../../Firmware/ultralcd.cpp:2147
msgid "and press the knob"
msgstr "es nyomd meg a gombot"
msgstr "es nyomd meg\na gombot"

#. MSG_TO_LOAD_FIL c=20
#: ../../Firmware/messages.cpp:232 ../../Firmware/ultralcd.cpp:1807
Expand Down
Loading