add Chinese translations

This commit is contained in:
SoftFever 2022-09-24 00:18:29 +08:00
parent fc96fa3bc0
commit e978388d00
11 changed files with 54 additions and 5 deletions

View file

@ -2820,6 +2820,9 @@ msgstr ""
msgid "Click to edit preset" msgid "Click to edit preset"
msgstr "" msgstr ""
msgid "Connection"
msgstr ""
msgid "Bed type" msgid "Bed type"
msgstr "" msgstr ""
@ -4743,6 +4746,20 @@ msgstr ""
msgid "Bridge flow" msgid "Bridge flow"
msgstr "" msgstr ""
msgid "Top surface flow ratio"
msgstr ""
msgid "Bottom surface flow ratio"
msgstr ""
msgid "This factor affects the amount of material for bottom solid infill"
msgstr ""
msgid ""
"This factor affects the amount of material for top solid infill. "
"You can decrease it slightly to have smooth surface finish"
msgstr ""
msgid "" msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of " "Decrease this value slightly(for example 0.9) to reduce the amount of "
"material for bridge, to improve sag" "material for bridge, to improve sag"
@ -4751,11 +4768,19 @@ msgstr ""
msgid "Only one wall on top surfaces" msgid "Only one wall on top surfaces"
msgstr "" msgstr ""
msgid "Only one wall on first layer"
msgstr ""
msgid "" msgid ""
"Use only one wall on flat top surface, to give more space to the top infill " "Use only one wall on flat top surface, to give more space to the top infill "
"pattern" "pattern"
msgstr "" msgstr ""
msgid ""
"Use only one wall on first layer, to give more space to the bottom infill "
"pattern"
msgstr ""
msgid "Slow down for overhang" msgid "Slow down for overhang"
msgstr "" msgstr ""

View file

@ -2894,6 +2894,9 @@ msgstr "材料切换"
msgid "Click to edit preset" msgid "Click to edit preset"
msgstr "点击编辑配置" msgstr "点击编辑配置"
msgid "Connection"
msgstr "连接打印机"
msgid "Bed type" msgid "Bed type"
msgstr "热床类型" msgstr "热床类型"
@ -4862,6 +4865,20 @@ msgstr ""
msgid "Bridge flow" msgid "Bridge flow"
msgstr "桥接流量" msgstr "桥接流量"
msgid "Top surface flow ratio"
msgstr "顶面流量"
msgid "Bottom surface flow ratio"
msgstr "首层流量"
msgid "This factor affects the amount of material for bottom solid infill"
msgstr "首层流量调整系数默认为1.0"
msgid ""
"This factor affects the amount of material for top solid infill. "
"You can decrease it slightly to have smooth surface finish"
msgstr "稍微减小这个数值比如0.97)可以来改善顶面的光滑程度。"
msgid "" msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of " "Decrease this value slightly(for example 0.9) to reduce the amount of "
"material for bridge, to improve sag" "material for bridge, to improve sag"
@ -4879,7 +4896,7 @@ msgid "Only one wall on top surfaces"
msgstr "顶面单层墙" msgstr "顶面单层墙"
msgid "" msgid ""
"Use only one wall on first layer, to give more space to the bottom infill pattern " "Use only one wall on first layer, to give more space to the bottom infill "
"pattern" "pattern"
msgstr "首层只使用单层墙,从而更多的空间能够使用底部填充图案" msgstr "首层只使用单层墙,从而更多的空间能够使用底部填充图案"
@ -5296,6 +5313,13 @@ msgid ""
"adhensive" "adhensive"
msgstr "首层加速度。使用较低值可以改善和构建板的粘接。" msgstr "首层加速度。使用较低值可以改善和构建板的粘接。"
msgid "Acceleration of outer walls"
msgstr "外墙的加速度。它通常使用比内壁速度慢的加速度,以获得更好的质量。。"
msgid "Acceleration of inner walls"
msgstr "内圈墙加速度。使用较低值可以改善质量。"
msgid "Line width of initial layer" msgid "Line width of initial layer"
msgstr "首层的线宽" msgstr "首层的线宽"

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -644,7 +644,7 @@ void PrintConfigDef::init_fff_params()
def->label = L("Top surface flow ratio"); def->label = L("Top surface flow ratio");
def->category = L("Advanced"); def->category = L("Advanced");
def->tooltip = L("This factor affects the amount of material for top solid infill. " def->tooltip = L("This factor affects the amount of material for top solid infill. "
"You can decrease it slightly to have smooth surface finish."); "You can decrease it slightly to have smooth surface finish");
def->min = 0; def->min = 0;
def->max = 2; def->max = 2;
def->mode = comAdvanced; def->mode = comAdvanced;
@ -653,7 +653,7 @@ void PrintConfigDef::init_fff_params()
def = this->add("bottom_solid_infill_flow_ratio", coFloat); def = this->add("bottom_solid_infill_flow_ratio", coFloat);
def->label = L("Bottom surface flow ratio"); def->label = L("Bottom surface flow ratio");
def->category = L("Advanced"); def->category = L("Advanced");
def->tooltip = L("This factor affects the amount of material for bottom solid infill. "); def->tooltip = L("This factor affects the amount of material for bottom solid infill");
def->min = 0; def->min = 0;
def->max = 2; def->max = 2;
def->mode = comAdvanced; def->mode = comAdvanced;
@ -1252,7 +1252,7 @@ void PrintConfigDef::init_fff_params()
def = this->add("outer_wall_acceleration", coFloat); def = this->add("outer_wall_acceleration", coFloat);
def->label = L("Outer wall"); def->label = L("Outer wall");
def->tooltip = L("Acceleration of outer walls."); def->tooltip = L("Acceleration of outer walls");
def->sidetext = L("mm/s²"); def->sidetext = L("mm/s²");
def->min = 0; def->min = 0;
def->mode = comAdvanced; def->mode = comAdvanced;
@ -1260,7 +1260,7 @@ void PrintConfigDef::init_fff_params()
def = this->add("inner_wall_acceleration", coFloat); def = this->add("inner_wall_acceleration", coFloat);
def->label = L("Inner wall"); def->label = L("Inner wall");
def->tooltip = L("Acceleration of inner walls."); def->tooltip = L("Acceleration of inner walls");
def->sidetext = L("mm/s²"); def->sidetext = L("mm/s²");
def->min = 0; def->min = 0;
def->mode = comAdvanced; def->mode = comAdvanced;