Little changes in phrases

This commit is contained in:
Lukas Matena 2024-05-20 20:00:24 +02:00
parent 55d820b82d
commit a19c60eb2a
2 changed files with 12 additions and 6 deletions

View File

@ -3985,9 +3985,9 @@ void PrintConfigDef::init_sla_params()
def = this->add("area_fill", coFloat);
def->label = L("Area fill");
def->tooltip = L("The percentage of the bed area.\nIf the area of a particular layer is smaller than 'area_fill', "
"then 'Below area fill' parameters are used to determine the layer separation (tearing) procedure. "
"Otherwise 'Above area fill parameters are used.");
def->tooltip = L("The value is expressed as a percentage of the bed area. If the area of a particular layer "
"is smaller than 'area_fill', then 'Below area fill' parameters are used to determine the "
"layer separation (tearing) procedure. Otherwise 'Above area fill' parameters are used.");
def->sidetext = L("%");
def->min = 0;
def->mode = comAdvanced;
@ -4613,7 +4613,7 @@ void PrintConfigDef::init_sla_tilt_params()
def = this->add("tilt_down_offset_steps", coInts);
def->full_label = L("Tilt down offset steps");
def->tooltip = L("Number of steps to move down from the calibrated (horizontal) position with 'tilt_down_initial_profile'.");
def->tooltip = L("Number of steps to move down from the calibrated (horizontal) position with 'tilt_down_initial_speed'.");
def->sidetext = L("μ-steps");
def->min = 0;
def->max = 10000;

View File

@ -5413,11 +5413,17 @@ void TabSLAMaterial::build_tilt_group(Slic3r::GUI::PageShp page)
{
// Legend
std::vector<std::pair<std::string, std::string>> legend_columns = {
{L("Below"), L("Values in this column are applied when layer area is smaller than area_fill.")},
{L("Above"), L("Values in this column are applied when layer area is larger than area_fill.")},
// TRN: This is a label of a column of parameters in settings to be used when the area is below certain threshold.
{L("Below"),
L("Values in this column are applied when layer area is smaller than area_fill.")},
// TRN: This is a label of a column of parameters in settings to be used when the area is above certain threshold.
{L("Above"),
L("Values in this column are applied when layer area is larger than area_fill.")},
};
create_legend(page, legend_columns, comExpert/*, true*/);
// TRN: 'Profile' in this context denotes a group of parameters used to configure
// layer separation procedure for SLA printers.
auto optgroup = page->new_optgroup(L("Profile settings"));
optgroup->on_change = [this, optgroup](const t_config_option_key& key, boost::any value)
{