yaze 0.3.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
tr.h
Go to the documentation of this file.
1#ifndef YAZE_UTIL_I18N_TR_H
2#define YAZE_UTIL_I18N_TR_H
3
4// Umbrella header included by every translation unit that wraps UI strings.
5// It exposes the unqualified name `tr(...)` inside `namespace yaze`, so call
6// sites in yaze::editor / yaze::gui / yaze::emu can simply write tr("File").
7//
8// Keep this header tiny and dependency-light: it only forwards to the i18n
9// translator so adding it to thousands of files stays cheap to compile.
10
12
13namespace yaze {
14using ::yaze::i18n::tr;
15} // namespace yaze
16
17#endif // YAZE_UTIL_I18N_TR_H