Check if translation isn't equal to origin

Removed identical translations/origin all lang files incl. po files,
which saves some xflash space
This commit is contained in:
3d-gussner 2022-03-14 13:29:21 +01:00
parent 12b184cf68
commit 7a64210043
23 changed files with 115 additions and 109 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
# Version 1.0.2 - Build 38
# Version 1.0.2 - Build 43
#############################################################################
# Change log:
# 7 May 2019, ondratu , Initial
@ -26,6 +26,7 @@
# --information == output all source and translated messages
# --import-check == used by `lang-import.sh`to verify
# newly import `lang_en_??.txt` files
# 14 Mar. 2022, 3d-gussner, Check if translation isn't equal to origin
#############################################################################
#
# Expected syntax of the files, which other scripts depend on
@ -286,6 +287,11 @@ def parse_txt(lang, no_warning, warn_empty, information, import_check):
print_source_translation(source, translation,
wrapped_source, wrapped_translation,
rows, cols)
if not no_warning and source == translation:
print(yellow('[W]: Translation same as origin on line %d:' %lines))
print_source_translation(source, translation,
wrapped_source, wrapped_translation,
rows, cols)
#elif information:
# print(green('[I]: %s' % (message)))
# print_source_translation(source, translation,

View File

@ -1,6 +1,6 @@
#!/bin/bash
#
# Version 1.0.1 Build 44
# Version 1.0.1 Build 45
#
# lang-import.sh - multi-language support script
# for importing translated xx.po
@ -281,9 +281,9 @@ if [ "$LNG" = "no" ]; then
sed -i 's/\xc3\x86/\\xe1/g' $LNG'_filtered.po'
#repace 'æ' with 'ae'
sed -i 's/\xc3\xa6/\\xe1/g' $LNG'_filtered.po'
#repace 'Ø' with 'O'
#repace 'Ø' with 'Ö'
sed -i 's/\xc3\x98/\\xef/g' $LNG'_filtered.po'
#repace 'ø' with 'o'
#repace 'ø' with 'ö'
sed -i 's/\xc3\xb8/\\xef/g' $LNG'_filtered.po'
#replace diacritics
#repace 'Å' with 'A'

View File

@ -212,7 +212,7 @@
#MSG_DATE c=17
"Date:"
"Date:"
"\x00"
#MSG_COMMUNITY_MADE c=18
"Community made"

View File

@ -68,7 +68,7 @@
#MSG_AUTO_HOME c=18
"Auto home"
"Auto home"
"\x00"
#MSG_AUTOLOAD_FILAMENT c=18
"AutoLoad filament"
@ -288,11 +288,11 @@
#MSG_INFO_EXTRUDER c=18
"Extruder info"
"Extruder info"
"\x00"
#MSG_EXTRUDER c=17
"Extruder"
"Extruder"
"\x00"
#MSG_MMU_FAIL_STATS c=18
"Fail stats MMU"
@ -372,7 +372,7 @@
#MSG_FLOW c=15
"Flow"
"Flow"
"\x00"
#MSG_SELFTEST_COOLING_FAN c=20
"Front print fan?"
@ -452,7 +452,7 @@
#MSG_FILAMENT c=17
"Filament"
"Filament"
"\x00"
#MSG_WIZARD_XYZ_CAL c=20 r=8
"I will run xyz calibration now. It will take approx. 12 mins."
@ -604,7 +604,7 @@
#MSG_NORMAL c=7
"Normal"
"Normal"
"\x00"
#MSG_SILENT c=7
"Silent"
@ -636,7 +636,7 @@
#MSG_SELFTEST_MOTOR c=18
"Motor"
"Motor"
"\x00"
#MSG_MOVE_AXIS c=18
"Move axis"
@ -664,7 +664,7 @@
#MSG_NA c=3
"N/A"
"N/A"
"\x00"
#MSG_NO c=4
"No"
@ -900,7 +900,7 @@
#MSG_RPI_PORT c=13
"RPi port"
"RPi port"
"\x00"
#MSG_WIZARD_RERUN c=20 r=7
"Running Wizard will delete current calibration results and start from the beginning. Continue?"

View File

@ -124,7 +124,7 @@
#MSG_BED c=13
"Bed"
"Bed"
"\x00"
#MSG_BELT_STATUS c=18
"Belt status"
@ -312,11 +312,11 @@
#MSG_SELFTEST_FAN c=20
"Fan test"
"Fan test"
"\x00"
#MSG_FANS_CHECK c=13
"Fans check"
"Fans check"
"\x00"
#MSG_FSENSOR c=12
"Fil. sensor"
@ -1160,7 +1160,7 @@
#MSG_WIZARD c=17
"Wizard"
"Wizard"
"\x00"
#MSG_XYZ_DETAILS c=18
"XYZ cal. details"

View File

@ -196,7 +196,7 @@
#MSG_SELECT_FIL_1ST_LAYERCAL c=20 r=7
"Select a filament for the First Layer Calibration and select it in the on-screen menu."
"\x00"
"Velg filamenttype for F\xefrstelags- kalibrering."
#MSG_CRASH_DETECTED c=20
"Crash detected."
@ -900,7 +900,7 @@
#MSG_RPI_PORT c=13
"RPi port"
"RPi port"
"\x00"
#MSG_WIZARD_RERUN c=20 r=7
"Running Wizard will delete current calibration results and start from the beginning. Continue?"
@ -1060,11 +1060,11 @@
#MSG_PINDA_CAL_FAILED c=20 r=4
"PINDA calibration failed"
"\x00"
"PINDA kalibrering mislyktes"
#MSG_PINDA_CALIBRATION_DONE c=20 r=8
"PINDA calibration is finished and active. It can be disabled in menu Settings->PINDA cal."
"\x00"
"PINDA kalibrering er fullf\xefrt og aktiv. Der kan bli skudd av i menyen under Innstillinger -> PINDA kal."
#MSG_FS_VERIFIED c=20 r=3
"Sensor verified, remove the filament now."

View File

@ -604,7 +604,7 @@
#MSG_NORMAL c=7
"Normal"
"Normal"
"\x00"
#MSG_SILENT c=7
"Silent"

View File

@ -604,7 +604,7 @@
#MSG_NORMAL c=7
"Normal"
"Normal"
"\x00"
#MSG_SILENT c=7
"Silent"

View File

@ -56,7 +56,7 @@
#MSG_AUTO c=6
"Auto"
"Auto"
"\x00"
#MSG_PRESS c=20 r=2
"and press the knob"
@ -276,7 +276,7 @@
#MSG_DIM c=6
"Dim"
"Dim"
"\x00"
#MSG_ERROR c=10
"ERROR:"
@ -288,11 +288,11 @@
#MSG_INFO_EXTRUDER c=18
"Extruder info"
"Extruder info"
"\x00"
#MSG_EXTRUDER c=17
"Extruder"
"Extruder"
"\x00"
#MSG_MMU_FAIL_STATS c=18
"Fail stats MMU"
@ -320,7 +320,7 @@
#MSG_FSENSOR c=12
"Fil. sensor"
"Fil. sensor"
"\x00"
#MSG_FIL_RUNOUTS c=15
"Fil. runouts"
@ -336,7 +336,7 @@
#MSG_SELFTEST_FILAMENT_SENSOR c=17
"Filament sensor"
"Filament sensor"
"\x00"
#MSG_FILAMENT_USED c=19
"Filament used"
@ -532,7 +532,7 @@
#MSG_ITERATION c=12
"Iteration"
"Iteration"
"\x00"
#MSG_LOOSE_PULLEY c=20
"Loose pulley"
@ -604,7 +604,7 @@
#MSG_NORMAL c=7
"Normal"
"Normal"
"\x00"
#MSG_SILENT c=7
"Silent"
@ -636,7 +636,7 @@
#MSG_SELFTEST_MOTOR c=18
"Motor"
"Motor"
"\x00"
#MSG_MOVE_AXIS c=18
"Move axis"
@ -664,7 +664,7 @@
#MSG_NA c=3
"N/A"
"N/A"
"\x00"
#MSG_NO c=4
"No"
@ -900,7 +900,7 @@
#MSG_RPI_PORT c=13
"RPi port"
"RPi port"
"\x00"
#MSG_WIZARD_RERUN c=20 r=7
"Running Wizard will delete current calibration results and start from the beginning. Continue?"
@ -1040,7 +1040,7 @@
#MSG_SUPPORT c=18
"Support"
"Support"
"\x00"
#MSG_SELFTEST_SWAPPED c=16
"Swapped"
@ -1116,7 +1116,7 @@
#MSG_TOTAL c=6
"Total"
"Total"
"\x00"
#MSG_MENU_VOLTAGES c=15
"Voltages"
@ -1188,7 +1188,7 @@
#MSG_TIMEOUT c=12
"Timeout"
"Timeout"
"\x00"
#MSG_X_CORRECTION c=13
"X-correct:"
@ -1360,7 +1360,7 @@
#MSG_SOUND_BLIND c=7
"Assist"
"Assist"
"\x00"
#MSG_STEEL_SHEET c=18
"Steel sheets"

View File

@ -283,7 +283,7 @@ msgstr ""
# MSG_DATE c=17
#: ultralcd.cpp:1975
msgid "Date:"
msgstr "Date:"
msgstr ""
# MSG_COMMUNITY_MADE c=18
#: messages.c:25

View File

@ -103,7 +103,7 @@ msgstr "A Z tengely a felso vegponton van?"
# MSG_AUTO_HOME c=18
#: messages.c:11
msgid "Auto home"
msgstr "Auto home"
msgstr ""
# MSG_AUTOLOAD_FILAMENT c=18
#: ultralcd.cpp:6635
@ -378,12 +378,12 @@ msgstr "Extruder vent.:"
# MSG_INFO_EXTRUDER c=18
#: ultralcd.cpp:2030
msgid "Extruder info"
msgstr "Extruder info"
msgstr """
# MSG_EXTRUDER c=17
#: messages.c:32
msgid "Extruder"
msgstr "Extruder"
msgstr ""
# MSG_MMU_FAIL_STATS c=18
#: ultralcd.cpp:6657
@ -483,7 +483,7 @@ msgstr "Hozd helyre a hibat, majd nyomd meg a gombot az MMU egysegen."
# MSG_FLOW c=15
#: ultralcd.cpp:6791
msgid "Flow"
msgstr "Flow"
msgstr ""
# MSG_SELFTEST_COOLING_FAN c=20
#: messages.c:90
@ -583,7 +583,7 @@ msgstr "Extruder valasztas:"
# MSG_FILAMENT c=17
#: messages.c:35
msgid "Filament"
msgstr "Filament"
msgstr ""
# MSG_WIZARD_XYZ_CAL c=20 r=8
#: ultralcd.cpp:4933
@ -773,7 +773,7 @@ msgstr "MK3 firmver telepitve MK3S nyomtatora"
# MSG_NORMAL c=7
#: messages.c:109
msgid "Normal"
msgstr "Normal"
msgstr ""
# MSG_SILENT c=7
#: messages.c:108
@ -813,7 +813,7 @@ msgstr "MMU2 csatlakozott"
# MSG_SELFTEST_MOTOR c=18
#: messages.c:98
msgid "Motor"
msgstr "Motor"
msgstr ""
# MSG_MOVE_AXIS c=18
#: ultralcd.cpp:5659
@ -848,7 +848,7 @@ msgstr "Nincs SD kartya"
# MSG_NA c=3
#: messages.c:129
msgid "N/A"
msgstr "N/A"
msgstr ""
# MSG_NO c=4
#: messages.c:73
@ -1143,7 +1143,7 @@ msgstr "Jobb old.[μm]"
# MSG_RPI_PORT c=13
#: messages.c:144
msgid "RPi port"
msgstr "RPi port"
msgstr ""
# MSG_WIZARD_RERUN c=20 r=7
#: ultralcd.cpp:4738

View File

@ -173,7 +173,7 @@ msgstr "Helderheid"
# MSG_BED c=13
#: messages.c:14
msgid "Bed"
msgstr "Bed"
msgstr ""
# MSG_BELT_STATUS c=18
#: messages.c:19
@ -408,12 +408,12 @@ msgstr "Fan snelh."
# MSG_SELFTEST_FAN c=20
#: messages.c:93
msgid "Fan test"
msgstr "Fan test"
msgstr ""
# MSG_FANS_CHECK c=13
#: messages.c:33
msgid "Fans check"
msgstr "Fans check"
msgstr ""
# MSG_FSENSOR c=12
#: messages.c:51
@ -1468,7 +1468,7 @@ msgstr "Aansluitingsfout"
# MSG_WIZARD c=17
#: ultralcd.cpp:5753
msgid "Wizard"
msgstr "Wizard"
msgstr ""
# MSG_XYZ_DETAILS c=18
#: ultralcd.cpp:2029

View File

@ -263,7 +263,7 @@ msgstr "Krasjdet."
# MSG_SELECT_FIL_1ST_LAYERCAL c=20 r=7
#: ultralcd.cpp:4824
msgid "Select a filament for the First Layer Calibration and select it in the on-screen menu."
msgstr ""
msgstr "Velg filamenttype for Førstelags- kalibrering."
# MSG_CRASH_DETECTED c=20
#: messages.c:29
@ -1143,7 +1143,7 @@ msgstr "Høyre side[μm]"
# MSG_RPI_PORT c=13
#: messages.c:144
msgid "RPi port"
msgstr "RPi port"
msgstr ""
# MSG_WIZARD_RERUN c=20 r=7
#: ultralcd.cpp:4738
@ -1343,12 +1343,12 @@ msgstr "Velg temperaturen som passer ditt materiale."
# MSG_PINDA_CAL_FAILED c=20 r=4
#: ultralcd.cpp:3761
msgid "PINDA calibration failed"
msgstr ""
msgstr "PINDA kalibrering mislyktes"
# MSG_PINDA_CALIBRATION_DONE c=20 r=8
#: messages.c:115
msgid "PINDA calibration is finished and active. It can be disabled in menu Settings->PINDA cal."
msgstr ""
msgstr "PINDA kalibrering er fullført og aktiv. Der kan bli skudd av i menyen under Innstillinger -> PINDA kal."
# MSG_FS_VERIFIED c=20 r=3
#: ultralcd.cpp:7314

View File

@ -773,7 +773,7 @@ msgstr "Wykryto firmware MK3 w drukarce MK3S"
# MSG_NORMAL c=7
#: messages.c:109
msgid "Normal"
msgstr "Normal"
msgstr ""
# MSG_SILENT c=7
#: messages.c:108

View File

@ -773,7 +773,7 @@ msgstr "MK3 firmware na MK3S tlaciarni"
# MSG_NORMAL c=7
#: messages.c:109
msgid "Normal"
msgstr "Normal"
msgstr ""
# MSG_SILENT c=7
#: messages.c:108

View File

@ -88,7 +88,7 @@ msgstr "Omgivande"
# MSG_AUTO c=6
#: messages.c:162
msgid "Auto"
msgstr "Auto"
msgstr ""
# MSG_PRESS c=20 r=2
#: ultralcd.cpp:2475
@ -363,7 +363,7 @@ msgstr "FEL: Filamentsensorn svarar inte, kontrollera anslutningen."
# MSG_DIM c=6
#: messages.c:161
msgid "Dim"
msgstr "Dim"
msgstr ""
# MSG_ERROR c=10
#: messages.c:31
@ -378,12 +378,12 @@ msgstr "Extruderfläkt:"
# MSG_INFO_EXTRUDER c=18
#: ultralcd.cpp:2030
msgid "Extruder info"
msgstr "Extruder info"
msgstr ""
# MSG_EXTRUDER c=17
#: messages.c:32
msgid "Extruder"
msgstr "Extruder"
msgstr ""
# MSG_MMU_FAIL_STATS c=18
#: ultralcd.cpp:6657
@ -418,7 +418,7 @@ msgstr "Fläktcheck"
# MSG_FSENSOR c=12
#: messages.c:51
msgid "Fil. sensor"
msgstr "Fil. sensor"
msgstr ""
# MSG_FIL_RUNOUTS c=15
#: messages.c:34
@ -438,7 +438,7 @@ msgstr "Filament ej laddat"
# MSG_SELFTEST_FILAMENT_SENSOR c=17
#: messages.c:99
msgid "Filament sensor"
msgstr "Filament sensor"
msgstr ""
# MSG_FILAMENT_USED c=19
#: ultralcd.cpp:2703
@ -683,7 +683,7 @@ msgstr "Laddar filament"
# MSG_ITERATION c=12
#: messages.c:55
msgid "Iteration"
msgstr "Iteration"
msgstr ""
# MSG_LOOSE_PULLEY c=20
#: ultralcd.cpp:8070
@ -773,7 +773,7 @@ msgstr "MK3-firmware upptäckt pa MK3S-skrivare"
# MSG_NORMAL c=7
#: messages.c:109
msgid "Normal"
msgstr "Normal"
msgstr ""
# MSG_SILENT c=7
#: messages.c:108
@ -813,7 +813,7 @@ msgstr "MMU2 ansluten"
# MSG_SELFTEST_MOTOR c=18
#: messages.c:98
msgid "Motor"
msgstr "Motor"
msgstr ""
# MSG_MOVE_AXIS c=18
#: ultralcd.cpp:5659
@ -848,7 +848,7 @@ msgstr "Inget SD-kort"
# MSG_NA c=3
#: messages.c:129
msgid "N/A"
msgstr "N/A"
msgstr ""
# MSG_NO c=4
#: messages.c:73
@ -1143,7 +1143,7 @@ msgstr "Höger sida[μm]"
# MSG_RPI_PORT c=13
#: messages.c:144
msgid "RPi port"
msgstr "RPi port"
msgstr ""
# MSG_WIZARD_RERUN c=20 r=7
#: ultralcd.cpp:4738
@ -1318,7 +1318,7 @@ msgstr "STOPPAD."
# MSG_SUPPORT c=18
#: ultralcd.cpp:6659
msgid "Support"
msgstr "Support"
msgstr ""
# MSG_SELFTEST_SWAPPED c=16
#: ultralcd.cpp:8083
@ -1413,7 +1413,7 @@ msgstr "Tar bort filament"
# MSG_TOTAL c=6
#: messages.c:102
msgid "Total"
msgstr "Total"
msgstr ""
# MSG_MENU_VOLTAGES c=15
#: ultralcd.cpp:2040
@ -1503,7 +1503,7 @@ msgstr "XYZ-kalibrering ok. X/Y-axlarna är mycket lite skeva. Bra jobbat!"
# MSG_TIMEOUT c=12
#: messages.c:159
msgid "Timeout"
msgstr "Timeout"
msgstr ""
# MSG_X_CORRECTION c=13
#: ultralcd.cpp:5068
@ -1718,7 +1718,7 @@ msgstr "Skiva"
# MSG_SOUND_BLIND c=7
#: messages.c:148
msgid "Assist"
msgstr "Assist"
msgstr ""
# MSG_STEEL_SHEET c=18
#: messages.c:68

View File

@ -283,7 +283,7 @@ msgstr ""
# MSG_DATE c=17
#: ultralcd.cpp:1975
msgid "Date:"
msgstr "Date:"
msgstr ""
# MSG_COMMUNITY_MADE c=18
#: messages.c:25

View File

@ -103,7 +103,7 @@ msgstr "A Z tengely a felso vegponton van?"
# MSG_AUTO_HOME c=18
#: messages.c:11
msgid "Auto home"
msgstr "Auto home"
msgstr ""
# MSG_AUTOLOAD_FILAMENT c=18
#: ultralcd.cpp:6635
@ -378,12 +378,12 @@ msgstr "Extruder vent.:"
# MSG_INFO_EXTRUDER c=18
#: ultralcd.cpp:2030
msgid "Extruder info"
msgstr "Extruder info"
msgstr """
# MSG_EXTRUDER c=17
#: messages.c:32
msgid "Extruder"
msgstr "Extruder"
msgstr ""
# MSG_MMU_FAIL_STATS c=18
#: ultralcd.cpp:6657
@ -483,7 +483,7 @@ msgstr "Hozd helyre a hibat, majd nyomd meg a gombot az MMU egysegen."
# MSG_FLOW c=15
#: ultralcd.cpp:6791
msgid "Flow"
msgstr "Flow"
msgstr ""
# MSG_SELFTEST_COOLING_FAN c=20
#: messages.c:90
@ -583,7 +583,7 @@ msgstr "Extruder valasztas:"
# MSG_FILAMENT c=17
#: messages.c:35
msgid "Filament"
msgstr "Filament"
msgstr ""
# MSG_WIZARD_XYZ_CAL c=20 r=8
#: ultralcd.cpp:4933
@ -773,7 +773,7 @@ msgstr "MK3 firmver telepitve MK3S nyomtatora"
# MSG_NORMAL c=7
#: messages.c:109
msgid "Normal"
msgstr "Normal"
msgstr ""
# MSG_SILENT c=7
#: messages.c:108
@ -813,7 +813,7 @@ msgstr "MMU2 csatlakozott"
# MSG_SELFTEST_MOTOR c=18
#: messages.c:98
msgid "Motor"
msgstr "Motor"
msgstr ""
# MSG_MOVE_AXIS c=18
#: ultralcd.cpp:5659
@ -848,7 +848,7 @@ msgstr "Nincs SD kartya"
# MSG_NA c=3
#: messages.c:129
msgid "N/A"
msgstr "N/A"
msgstr ""
# MSG_NO c=4
#: messages.c:73
@ -1143,7 +1143,7 @@ msgstr "Jobb old.[μm]"
# MSG_RPI_PORT c=13
#: messages.c:144
msgid "RPi port"
msgstr "RPi port"
msgstr ""
# MSG_WIZARD_RERUN c=20 r=7
#: ultralcd.cpp:4738

View File

@ -173,7 +173,7 @@ msgstr "Helderheid"
# MSG_BED c=13
#: messages.c:14
msgid "Bed"
msgstr "Bed"
msgstr ""
# MSG_BELT_STATUS c=18
#: messages.c:19
@ -408,12 +408,12 @@ msgstr "Fan snelh."
# MSG_SELFTEST_FAN c=20
#: messages.c:93
msgid "Fan test"
msgstr "Fan test"
msgstr ""
# MSG_FANS_CHECK c=13
#: messages.c:33
msgid "Fans check"
msgstr "Fans check"
msgstr ""
# MSG_FSENSOR c=12
#: messages.c:51
@ -1468,7 +1468,7 @@ msgstr "Aansluitingsfout"
# MSG_WIZARD c=17
#: ultralcd.cpp:5753
msgid "Wizard"
msgstr "Wizard"
msgstr ""
# MSG_XYZ_DETAILS c=18
#: ultralcd.cpp:2029

View File

@ -263,7 +263,7 @@ msgstr "Krasjdet."
# MSG_SELECT_FIL_1ST_LAYERCAL c=20 r=7
#: ultralcd.cpp:4824
msgid "Select a filament for the First Layer Calibration and select it in the on-screen menu."
msgstr ""
msgstr "Velg filamenttype for Førstelags- kalibrering.
# MSG_CRASH_DETECTED c=20
#: messages.c:29
@ -1143,7 +1143,7 @@ msgstr "Høyre side[μm]"
# MSG_RPI_PORT c=13
#: messages.c:144
msgid "RPi port"
msgstr "RPi port"
msgstr ""
# MSG_WIZARD_RERUN c=20 r=7
#: ultralcd.cpp:4738
@ -1343,12 +1343,12 @@ msgstr "Velg temperaturen som passer ditt materiale."
# MSG_PINDA_CAL_FAILED c=20 r=4
#: ultralcd.cpp:3761
msgid "PINDA calibration failed"
msgstr ""
msgstr "PINDA kalibrering mislyktes"
# MSG_PINDA_CALIBRATION_DONE c=20 r=8
#: messages.c:115
msgid "PINDA calibration is finished and active. It can be disabled in menu Settings->PINDA cal."
msgstr ""
msgstr "PINDA kalibrering er fullført og aktiv. Der kan bli skudd av i menyen under Innstillinger -> PINDA kal."
# MSG_FS_VERIFIED c=20 r=3
#: ultralcd.cpp:7314

View File

@ -773,7 +773,7 @@ msgstr "Wykryto firmware MK3 w drukarce MK3S"
# MSG_NORMAL c=7
#: messages.c:109
msgid "Normal"
msgstr "Normal"
msgstr ""
# MSG_SILENT c=7
#: messages.c:108

View File

@ -773,7 +773,7 @@ msgstr "MK3 firmware na MK3S tlaciarni"
# MSG_NORMAL c=7
#: messages.c:109
msgid "Normal"
msgstr "Normal"
msgstr ""
# MSG_SILENT c=7
#: messages.c:108

View File

@ -88,7 +88,7 @@ msgstr "Omgivande"
# MSG_AUTO c=6
#: messages.c:162
msgid "Auto"
msgstr "Auto"
msgstr ""
# MSG_PRESS c=20 r=2
#: ultralcd.cpp:2475
@ -363,7 +363,7 @@ msgstr "FEL: Filamentsensorn svarar inte, kontrollera anslutningen."
# MSG_DIM c=6
#: messages.c:161
msgid "Dim"
msgstr "Dim"
msgstr ""
# MSG_ERROR c=10
#: messages.c:31
@ -378,12 +378,12 @@ msgstr "Extruderfläkt:"
# MSG_INFO_EXTRUDER c=18
#: ultralcd.cpp:2030
msgid "Extruder info"
msgstr "Extruder info"
msgstr ""
# MSG_EXTRUDER c=17
#: messages.c:32
msgid "Extruder"
msgstr "Extruder"
msgstr ""
# MSG_MMU_FAIL_STATS c=18
#: ultralcd.cpp:6657
@ -418,7 +418,7 @@ msgstr "Fläktcheck"
# MSG_FSENSOR c=12
#: messages.c:51
msgid "Fil. sensor"
msgstr "Fil. sensor"
msgstr ""
# MSG_FIL_RUNOUTS c=15
#: messages.c:34
@ -438,7 +438,7 @@ msgstr "Filament ej laddat"
# MSG_SELFTEST_FILAMENT_SENSOR c=17
#: messages.c:99
msgid "Filament sensor"
msgstr "Filament sensor"
msgstr ""
# MSG_FILAMENT_USED c=19
#: ultralcd.cpp:2703
@ -683,7 +683,7 @@ msgstr "Laddar filament"
# MSG_ITERATION c=12
#: messages.c:55
msgid "Iteration"
msgstr "Iteration"
msgstr ""
# MSG_LOOSE_PULLEY c=20
#: ultralcd.cpp:8070
@ -773,7 +773,7 @@ msgstr "MK3-firmware upptäckt pa MK3S-skrivare"
# MSG_NORMAL c=7
#: messages.c:109
msgid "Normal"
msgstr "Normal"
msgstr ""
# MSG_SILENT c=7
#: messages.c:108
@ -813,7 +813,7 @@ msgstr "MMU2 ansluten"
# MSG_SELFTEST_MOTOR c=18
#: messages.c:98
msgid "Motor"
msgstr "Motor"
msgstr ""
# MSG_MOVE_AXIS c=18
#: ultralcd.cpp:5659
@ -848,7 +848,7 @@ msgstr "Inget SD-kort"
# MSG_NA c=3
#: messages.c:129
msgid "N/A"
msgstr "N/A"
msgstr ""
# MSG_NO c=4
#: messages.c:73
@ -1143,7 +1143,7 @@ msgstr "Höger sida[μm]"
# MSG_RPI_PORT c=13
#: messages.c:144
msgid "RPi port"
msgstr "RPi port"
msgstr ""
# MSG_WIZARD_RERUN c=20 r=7
#: ultralcd.cpp:4738
@ -1318,7 +1318,7 @@ msgstr "STOPPAD."
# MSG_SUPPORT c=18
#: ultralcd.cpp:6659
msgid "Support"
msgstr "Support"
msgstr ""
# MSG_SELFTEST_SWAPPED c=16
#: ultralcd.cpp:8083
@ -1413,7 +1413,7 @@ msgstr "Tar bort filament"
# MSG_TOTAL c=6
#: messages.c:102
msgid "Total"
msgstr "Total"
msgstr ""
# MSG_MENU_VOLTAGES c=15
#: ultralcd.cpp:2040
@ -1503,7 +1503,7 @@ msgstr "XYZ-kalibrering ok. X/Y-axlarna är mycket lite skeva. Bra jobbat!"
# MSG_TIMEOUT c=12
#: messages.c:159
msgid "Timeout"
msgstr "Timeout"
msgstr ""
# MSG_X_CORRECTION c=13
#: ultralcd.cpp:5068
@ -1718,7 +1718,7 @@ msgstr "Skiva"
# MSG_SOUND_BLIND c=7
#: messages.c:148
msgid "Assist"
msgstr "Assist"
msgstr ""
# MSG_STEEL_SHEET c=18
#: messages.c:68