<translation>AA</translation>
</message>
</context>
-
+ <context>
+ <name>Extrusion:direction_object</name>
+ <message>
+ <source><base normal></source>
+ <translation>AA</translation>
+ </message>
+ </context>
+ <context>
+ <name>Extrusion:from_object</name>
+ <message>
+ <source><base sketch></source>
+ <translation>AA</translation>
+ </message>
+ </context>
+ <context>
+ <name>Extrusion:to_object</name>
+ <message>
+ <source><base sketch></source>
+ <translation>AA</translation>
+ </message>
+ </context>
<context>
<name>ExtrusionCut:GeomValidators_ZeroOffset</name>
bool isNameUpdated = false;
AttributeSelectionPtr aSelect = aData->selection(attributeID());
if (aSelect) {
- myTextLine->setText(QString::fromStdString(aSelect->namingName(getDefaultValue())));
+ std::string aDefault = translate(getDefaultValue()).toStdString();
+ myTextLine->setText(QString::fromStdString(aSelect->namingName(aDefault)));
isNameUpdated = true;
}
if (!isNameUpdated) {
myTextLine->setText(QString::fromStdString(anAttrName));
}
else {
- myTextLine->setText(getDefaultValue().c_str());
+ myTextLine->setText(translate(getDefaultValue()));
}
}
}