Welcome to mirror list, hosted at ThFree Co, Russian Federation.

I18N.cpp « GUI « slic3r « src - github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 530a3214315172b397786513199ab3bfabf3a4ae (plain)
1
2
3
4
5
6
7
8
9
10
11
#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));
}

} }