ENH: add cn translations for newly added phrases

Signed-off-by: yifan.wu <yifan.wu@bambulab.com>
Change-Id: I17323af5f6cee8839aa99e4957b9abcf22662f4a
This commit is contained in:
yifan.wu 2022-07-27 15:06:14 +08:00 committed by Lane.Wei
parent 21d41bbbec
commit 04bdbb4a28
16 changed files with 285 additions and 123 deletions

View file

@ -264,8 +264,8 @@ void PrintConfigDef::init_common_params()
//BBS: add "bed_exclude_area"
def = this->add("bed_exclude_area", coPoints);
def->label = L("Bed exclude area");
def->tooltip = L("Bed exclude area that can't used as printable area in X-Y plane. For example, the bottom left area which is used to cut filament in X1 when printing multi colors with AMS. "
"The area is expressed as polygon by points in following format: \"XxY, XxY, ...\"");
def->tooltip = L("Unprintable area in XY plane. For example, X1 Series printers use the front left corner to cut filament during filament change. "
"The area is expressed as polygon by points in following format: \"XxY, XxY, ...\"");
def->mode = comAdvanced;
def->gui_type = ConfigOptionDef::GUIType::one_string;
def->set_default_value(new ConfigOptionPoints{ Vec2d(0, 0) });