mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06:00
Add translation markers on more unstranslated strings (#9134)
This commit is contained in:
parent
d37f1b6a81
commit
7d72db562f
9 changed files with 25 additions and 22 deletions
|
@ -7480,16 +7480,19 @@ CLITransformConfigDef::CLITransformConfigDef()
|
|||
def = this->add("rotate", coFloat);
|
||||
def->label = L("Rotate");
|
||||
def->tooltip = L("Rotation angle around the Z axis in degrees.");
|
||||
def->sidetext = "°";
|
||||
def->set_default_value(new ConfigOptionFloat(0));
|
||||
|
||||
def = this->add("rotate_x", coFloat);
|
||||
def->label = "Rotate around X";
|
||||
def->tooltip = "Rotation angle around the X axis in degrees.";
|
||||
def->label = L("Rotate around X");
|
||||
def->tooltip = L("Rotation angle around the X axis in degrees.");
|
||||
def->sidetext = "°";
|
||||
def->set_default_value(new ConfigOptionFloat(0));
|
||||
|
||||
def = this->add("rotate_y", coFloat);
|
||||
def->label = L("Rotate around Y");
|
||||
def->tooltip = L("Rotation angle around the Y axis in degrees.");
|
||||
def->sidetext = "°";
|
||||
def->set_default_value(new ConfigOptionFloat(0));
|
||||
|
||||
def = this->add("scale", coFloat);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue