mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 11:17:51 -06:00
11 lines
243 B
C++
11 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));
|
|
}
|
|
|
|
} }
|