Mark strings missing from translation (#8757)

This commit is contained in:
Alexandre Folle de Menezes
2025-03-09 03:14:27 -03:00
committed by GitHub
parent 345ab82f91
commit 1ba7f18b90
5 changed files with 12 additions and 12 deletions

View File

@@ -3037,7 +3037,7 @@ bool GLGizmoEmboss::choose_font_by_wxdialog()
(!use_deserialized_font && !m_style_manager.load_style(emboss_style, wx_font))) {
m_style_manager.erase(font_index);
wxString message = GUI::format_wxstr(
"Font \"%1%\" can't be used. Please select another.",
_L("Font \"%1%\" can't be used. Please select another."),
emboss_style.name);
wxString title = "Selected font is NOT True-type.";
MessageDialog not_loaded_font_message(nullptr, message, title, wxOK);

View File

@@ -39,7 +39,7 @@ std::string GLGizmoMeasure::surface_feature_type_as_string(Measure::SurfaceFeatu
switch (type)
{
default:
case Measure::SurfaceFeatureType::Undef: { return ("No feature"); }
case Measure::SurfaceFeatureType::Undef: { return _u8L("No feature"); }
case Measure::SurfaceFeatureType::Point: { return _u8L("Vertex"); }
case Measure::SurfaceFeatureType::Edge: { return _u8L("Edge"); }
case Measure::SurfaceFeatureType::Circle: { return _u8L("Circle"); }