Skip to content

Commit

Permalink
add Chinese translations
Browse files Browse the repository at this point in the history
  • Loading branch information
SoftFever committed Sep 23, 2022
1 parent fc96fa3 commit e978388
Show file tree
Hide file tree
Showing 11 changed files with 54 additions and 5 deletions.
25 changes: 25 additions & 0 deletions bbl/i18n/BambuStudio.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2820,6 +2820,9 @@ msgstr ""
msgid "Click to edit preset"
msgstr ""

msgid "Connection"
msgstr ""

msgid "Bed type"
msgstr ""

Expand Down Expand Up @@ -4743,6 +4746,20 @@ msgstr ""
msgid "Bridge flow"
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 ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
"material for bridge, to improve sag"
Expand All @@ -4751,11 +4768,19 @@ msgstr ""
msgid "Only one wall on top surfaces"
msgstr ""

msgid "Only one wall on first layer"
msgstr ""

msgid ""
"Use only one wall on flat top surface, to give more space to the top infill "
"pattern"
msgstr ""

msgid ""
"Use only one wall on first layer, to give more space to the bottom infill "
"pattern"
msgstr ""

msgid "Slow down for overhang"
msgstr ""

Expand Down
26 changes: 25 additions & 1 deletion bbl/i18n/zh_cn/BambuStudio_zh_CN.po
Original file line number Diff line number Diff line change
Expand Up @@ -2894,6 +2894,9 @@ msgstr "材料切换"
msgid "Click to edit preset"
msgstr "点击编辑配置"

msgid "Connection"
msgstr "连接打印机"

msgid "Bed type"
msgstr "热床类型"

Expand Down Expand Up @@ -4862,6 +4865,20 @@ msgstr ""
msgid "Bridge flow"
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 ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
"material for bridge, to improve sag"
Expand All @@ -4879,7 +4896,7 @@ msgid "Only one wall on top surfaces"
msgstr "顶面单层墙"

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"
msgstr "首层只使用单层墙,从而更多的空间能够使用底部填充图案"

Expand Down Expand Up @@ -5296,6 +5313,13 @@ msgid ""
"adhensive"
msgstr "首层加速度。使用较低值可以改善和构建板的粘接。"

msgid "Acceleration of outer walls"
msgstr "外墙的加速度。它通常使用比内壁速度慢的加速度,以获得更好的质量。。"

msgid "Acceleration of inner walls"
msgstr "内圈墙加速度。使用较低值可以改善质量。"


msgid "Line width of initial layer"
msgstr "首层的线宽"

Expand Down
Binary file modified resources/i18n/de/BambuStudio.mo
Binary file not shown.
Binary file modified resources/i18n/en/BambuStudio.mo
Binary file not shown.
Binary file modified resources/i18n/es/BambuStudio.mo
Binary file not shown.
Binary file modified resources/i18n/fr/BambuStudio.mo
Binary file not shown.
Binary file modified resources/i18n/hu/BambuStudio.mo
Binary file not shown.
Binary file modified resources/i18n/nl/BambuStudio.mo
Binary file not shown.
Binary file modified resources/i18n/sv/BambuStudio.mo
Binary file not shown.
Binary file modified resources/i18n/zh_cn/BambuStudio.mo
Binary file not shown.
8 changes: 4 additions & 4 deletions src/libslic3r/PrintConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ void PrintConfigDef::init_fff_params()
def->label = L("Top surface flow ratio");
def->category = L("Advanced");
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->max = 2;
def->mode = comAdvanced;
Expand All @@ -653,7 +653,7 @@ void PrintConfigDef::init_fff_params()
def = this->add("bottom_solid_infill_flow_ratio", coFloat);
def->label = L("Bottom surface flow ratio");
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->max = 2;
def->mode = comAdvanced;
Expand Down Expand Up @@ -1252,15 +1252,15 @@ void PrintConfigDef::init_fff_params()

def = this->add("outer_wall_acceleration", coFloat);
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->min = 0;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloat(3000));

def = this->add("inner_wall_acceleration", coFloat);
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->min = 0;
def->mode = comAdvanced;
Expand Down

0 comments on commit e978388

Please sign in to comment.