Add translation markers on more unstranslated strings (#9134)

This commit is contained in:
Alexandre Folle de Menezes 2025-04-26 12:11:36 -03:00 committed by GitHub
parent d37f1b6a81
commit 7d72db562f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 25 additions and 22 deletions

View file

@ -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);