Remove markers from strings that don't need translation (#11234)

* Remove markers from strings that don't need translation
This commit is contained in:
Alexandre Folle de Menezes 2025-11-07 13:53:56 -03:00 committed by GitHub
parent 210bc47173
commit c3e03a0955
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
26 changed files with 7 additions and 402 deletions

View file

@ -1029,7 +1029,7 @@ wxBoxSizer *ObjColorPanel::create_color_icon_map_rgba_sizer(wxWindow *parent, in
icon_sizer->Add(icon, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL, 0); // wxALIGN_CENTER_VERTICAL | wxTOP | wxBOTTOM
icon_sizer->AddSpacer(FromDIP(10));
wxStaticText *map_text = new wxStaticText(parent, wxID_ANY, _L("—> "));
wxStaticText *map_text = new wxStaticText(parent, wxID_ANY, u8"—> ");
map_text->SetFont(Label::Head_12);
icon_sizer->Add(map_text, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL, 0);