summaryrefslogtreecommitdiff
path: root/core/src/Utils/I18n.hpp
blob: e9eaac9941d166e09d0ad25b7155243157f6a094 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include "Utils/Macros.hpp"

#if !defined(TARGET_LOCALE)
#	define I18N_TEXT(defaultText, name) defaultText
#else
#	include TARGET_LOCALE_FILE
#	define I18N_TEXT(defaultText, name) name
#endif