mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-12-27 09:59:48 -07:00
FIX: the translation problem
jira: [STUDIO-10531] Change-Id: I59b12a4efe181a98093bbbd5d3c341613609fc8e (cherry picked from commit 379e6314367a82a4e065f02355b853c4e068e75d)
This commit is contained in:
parent
b051870245
commit
6c9cbfc848
1 changed files with 4 additions and 4 deletions
|
|
@ -12,8 +12,8 @@
|
|||
|
||||
#include <wx/stattext.h>
|
||||
|
||||
#define SERIAL_STR "Serial:"
|
||||
#define VERSION_STR "Version:"
|
||||
#define SERIAL_STR L("Serial:")
|
||||
#define VERSION_STR L("Version:")
|
||||
|
||||
using namespace Slic3r::GUI;
|
||||
|
||||
|
|
@ -68,8 +68,8 @@ void uiDeviceUpdateVersion::CreateWidgets()
|
|||
m_dev_snl = new wxStaticText(this, wxID_ANY, "_");
|
||||
m_dev_version = new wxStaticText(this, wxID_ANY, "_");
|
||||
|
||||
wxStaticText* serial_text = new wxStaticText(this, wxID_ANY, SERIAL_STR);
|
||||
wxStaticText* version_text = new wxStaticText(this, wxID_ANY, VERSION_STR);
|
||||
wxStaticText* serial_text = new wxStaticText(this, wxID_ANY, _L(SERIAL_STR));
|
||||
wxStaticText* version_text = new wxStaticText(this, wxID_ANY, _L(VERSION_STR));
|
||||
|
||||
// The main sizer
|
||||
wxFlexGridSizer* main_sizer = new wxFlexGridSizer(3, 3, 0, 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue