Fix german hotkey #950 (#984)

* fix empty label

* many typos fixed

* Magic Hotkey fix

* Typo in initial Setup Wizard #982
This commit is contained in:
Heiko Liebscher 2023-05-07 16:00:00 +02:00 committed by GitHub
parent 4807b9d1b6
commit cd9ca51035
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 1379 additions and 2306 deletions

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-29 20:13+0800\n"
"POT-Creation-Date: 2023-05-06 13:46+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -17,7 +17,6 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
msgid "Physical Printer"
msgstr ""
@ -4976,8 +4975,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
msgid "Line width"
@ -5040,9 +5039,6 @@ msgstr ""
msgid "Post-processing Scripts"
msgstr ""
msgid "Post-processing scripts"
msgstr ""
msgid "Frequent"
msgstr ""
@ -5159,6 +5155,12 @@ msgstr ""
msgid "Printable space"
msgstr ""
msgid "Cooling Fan"
msgstr ""
msgid "Fan speedup time"
msgstr ""
msgid "Extruder Clearance"
msgstr ""
@ -6389,7 +6391,7 @@ msgid ""
"all outer wall no matter how much overhang degree"
msgstr ""
msgid "Bridge direction"
msgid "Bridge infill direction"
msgstr ""
msgid ""
@ -6901,14 +6903,6 @@ msgid ""
"of line"
msgstr ""
msgid "Bridge infill direction"
msgstr ""
msgid ""
"Angle for bridge infill pattern, which controls the start or main direction "
"of line"
msgstr ""
msgid "Sparse infill density"
msgstr ""
@ -7164,6 +7158,38 @@ msgstr ""
msgid "Enable this option if machine has auxiliary part cooling fan"
msgstr ""
msgid "Fan Speedup Time"
msgstr ""
msgid ""
"Start the fan this number of seconds earlier than its target start time (you "
"can use fractional seconds). It assumes infinite acceleration for this time "
"estimation, and will only take into account G1 and G0 moves (arc fitting is "
"unsupported).\n"
"It won't move fan comands from custom gcodes (they act as a sort of "
"'barrier').\n"
"It won't move fan comands into the start gcode if the 'only custom start "
"gcode' is activated.\n"
"Use 0 to deactivate."
msgstr ""
msgid "Only overhangs"
msgstr ""
msgid "Will only take into account the delay for the cooling of overhangs."
msgstr ""
msgid "Fan kick-start time"
msgstr ""
msgid ""
"Emit a max fan speed command for this amount of seconds before reducing to "
"target speed to kick-start the cooling fan.\n"
"This is useful for fans where a low PWM/power may be insufficient to get the "
"fan started spinning from a stop, or to get the fan up to speed faster.\n"
"Set to 0 to deactivate."
msgstr ""
msgid "G-code flavor"
msgstr ""
@ -7655,8 +7681,8 @@ msgstr ""
msgid ""
"In order to reduce the visibility of the seam in a closed loop extrusion, "
"the loop is interrupted and shortened by a specified amount.\n"
"This amount can be specified in millimeters or as a percentage of the current "
"extruder diameter. The default value for this parameter is 15%."
"This amount can be specified in millimeters or as a percentage of the "
"current extruder diameter. The default value for this parameter is 15%."
msgstr ""
msgid "Role base wipe speed"

File diff suppressed because it is too large Load diff

Binary file not shown.

View file

@ -5,7 +5,7 @@
"description": "My configurations",
"machine_model_list": [
{
"name": "Generaic Klipper Printer",
"name": "Generic Klipper Printer",
"sub_path": "machine/MyKlipper.json"
},
{

View file

@ -5,7 +5,7 @@
"from": "system",
"instantiation": "true",
"inherits": "fdm_klipper_common",
"printer_model": "Generaic Klipper Printer",
"printer_model": "Generic Klipper Printer",
"nozzle_diameter": [
"0.4"
],

View file

@ -1,6 +1,6 @@
{
"type": "machine_model",
"name": "Generaic Klipper Printer",
"name": "Generic Klipper Printer",
"model_id": "my_klipper_01",
"nozzle_diameter": "0.4",
"machine_tech": "FFF",

View file

@ -1764,7 +1764,7 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionBool(false));
def = this->add("fan_speedup_time", coFloat);
def->label = L("");
def->label = L("Fan Speedup Time");
def->tooltip = L("Start the fan this number of seconds earlier than its target start time (you can use fractional seconds)."
" It assumes infinite acceleration for this time estimation, and will only take into account G1 and G0 moves (arc fitting"
" is unsupported)."