mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-02-01 00:18:44 +03:00
12 lines
243 B
C++
12 lines
243 B
C++
#include "I18N.hpp"
|
|
|
|
namespace Slic3r { namespace GUI {
|
|
|
|
wxString L_str(const std::string &str)
|
|
{
|
|
//! Explicitly specify that the source string is already in UTF-8 encoding
|
|
return wxGetTranslation(wxString(str.c_str(), wxConvUTF8));
|
|
}
|
|
|
|
} }
|