diff --git a/translation/en_US.po b/translation/en_US.po index e752c9fe0..360d56d07 100644 --- a/translation/en_US.po +++ b/translation/en_US.po @@ -285,11 +285,11 @@ msgstr "Disable fan for the first" #: xs/src/libslic3r/PrintConfig.cpp:169 msgid "" -"You can set this to a positive value to disable fan at all during the first " -"layers, so that it does not make adhesion worse." +"This disables the fan completely for the first N layers " +"to aid in the adhesion of media to the bed. (default 3)" msgstr "" -"You can set this to a positive value to disable fan at all during the first " -"layers, so that it does not make adhesion worse." +"This disables the fan completely for the first N layers " +"to aid in the adhesion of media to the bed. (default 3)" #: xs/src/libslic3r/PrintConfig.cpp:170 msgid "layers" diff --git a/translation/fr_FR.po b/translation/fr_FR.po index 5e4714c48..fe94a294d 100644 --- a/translation/fr_FR.po +++ b/translation/fr_FR.po @@ -290,11 +290,11 @@ msgstr "Désactiver le ventilateur pour le(s) premier(s)" #: xs/src/libslic3r/PrintConfig.cpp:169 msgid "" -"You can set this to a positive value to disable fan at all during the first " -"layers, so that it does not make adhesion worse." +"This disables the fan completely for the first N layers " +"to aid in the adhesion of media to the bed. (default 3)" msgstr "" -"Vous pouvez mettre une valeur positive pour désactiver le ventilateur durant " -"les premières couches, pour ne pas empirer les problèmes d'adhésion." +"Cela désactive complètement le ventilateur pour les premières N couches " +"Pour aider à l'adhésion des médias au lit. (par défaut 3)" #: xs/src/libslic3r/PrintConfig.cpp:170 msgid "layers" diff --git a/xs/src/libslic3r/PrintConfig.cpp b/xs/src/libslic3r/PrintConfig.cpp index d1883577e..59bfe89a1 100644 --- a/xs/src/libslic3r/PrintConfig.cpp +++ b/xs/src/libslic3r/PrintConfig.cpp @@ -166,7 +166,7 @@ PrintConfigDef::PrintConfigDef() def = this->add("disable_fan_first_layers", coInt); def->label = __TRANS("Disable fan for the first"); - def->tooltip = __TRANS("You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse."); + def->tooltip = __TRANS("This disables the fan completely for the first N layers to aid in the adhesion of media to the bed. (default 3)"); def->sidetext = __TRANS("layers"); def->cli = "disable-fan-first-layers=i"; def->min = 0;