Spanish update + Desc update (#14165)

This commit is contained in:
Ian Bassi
2026-06-11 22:07:05 -03:00
committed by GitHub
parent d641ca598a
commit 6bb7903b97
24 changed files with 8906 additions and 1297 deletions

View File

@@ -1284,15 +1284,14 @@ void PrintConfigDef::init_fff_params()
def = this->add("bridge_density", coPercent);
def->label = L("External bridge density");
def->category = L("Strength");
def->tooltip = L("Controls the density (spacing) of external bridge lines. Default is 100%.\n"
def->tooltip = L("Controls the density (spacing) of external bridge lines.\n"
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge extrusions to sag, 100% may not be sufficient.\n\n"
"- Higher than 100% density (Recommended Max 125%):\n"
" - Pros: Produces smoother bridge surfaces, as overlapping lines provide additional support during printing.\n"
" - Cons: Can cause overextrusion, which may reduce lower and upper surface quality and increase the risk of warping.\n\n"
"- Lower than 100% density (Min 10%):\n"
" - Pros: Can create a string-like first layer. Faster and with better cooling because there is more space for air to circulate around the extruded bridge.\n"
" - Cons: May lead to sagging and poorer surface finish.\n\n"
"Recommended range: Minimum 10% - Maximum 125%.");
" - Cons: May lead to sagging and poorer surface finish.");
def->sidetext = "%";
def->min = 10;
def->max = 125;
@@ -1302,7 +1301,7 @@ void PrintConfigDef::init_fff_params()
def = this->add("internal_bridge_density", coPercent);
def->label = L("Internal bridge density");
def->category = L("Strength");
def->tooltip = L("Controls the density (spacing) of internal bridge lines. Default is 100%. 100% means a solid internal bridge.\n\n"
def->tooltip = L("Controls the density (spacing) of internal bridge lines.\n"
"Internal bridges act as intermediate support between sparse infill and top solid infill and can strongly affect top surface quality.\n\n"
"- Higher than 100% density (Recommended Max 125%):\n"
" - Pros: Improves internal bridge strength and support under top layers, reducing sagging and improving top-surface finish.\n"
@@ -1332,7 +1331,7 @@ void PrintConfigDef::init_fff_params()
def = this->add("bridge_line_width", coFloatOrPercent);
def->label = L("Bridge");
def->category = L("Quality");
def->tooltip = L("Bridge line width is expressed either as an absolute value or as a percentage of the active nozzle diameter (percentages are computed from the nozzle diameter).\n"
def->tooltip = L("Line width of the Bridge. If expressed as a %, it will be computed over the nozzle diameter.\n"
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n\n"
"The maximum value is 100% or the nozzle diameter.\n"
"If set to 0, the line width will match the Internal solid infill width.");