mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-08-03 19:40:41 +08:00
16 lines
391 B
C++
16 lines
391 B
C++
///|/ Copyright (c) Prusa Research 2018 Vojtěch Bubník @bubnikv
|
|
///|/
|
|
///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher
|
|
///|/
|
|
#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));
|
|
}
|
|
|
|
} }
|