diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-22 14:29:20 +0200 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2021-03-22 14:29:20 +0200 |
commit | 06156b3034353cc1d62b4f825b1fcad799e944eb (patch) | |
tree | 26f7476ee50610853ac8fbf0f54c420cfb7cfc99 /src/lang.h | |
parent | d3ab1ae8b92433ec711c1396838b32f2f9f35d7b (diff) |
Lang: Began replacing UI strings with IDs
IssueID #192
Diffstat (limited to 'src/lang.h')
-rw-r--r-- | src/lang.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lang.h b/src/lang.h new file mode 100644 index 00000000..3e9291f2 --- /dev/null +++ b/src/lang.h | |||
@@ -0,0 +1,10 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include <the_Foundation/string.h> | ||
4 | |||
5 | void init_Lang (void); | ||
6 | void deinit_Lang (void); | ||
7 | |||
8 | void setCurrent_Lang (const char *language); | ||
9 | const iString * string_Lang (const char *msgId); | ||
10 | const char * cstr_Lang (const char *msgId); | ||