diff options
author | rtk0c <[email protected]> | 2021-03-29 00:06:34 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2021-03-29 00:06:34 -0700 |
commit | 2d7e772909571676dd4266337d43086bd2927e93 (patch) | |
tree | 80ec2c39336b5b7fd1cd50d5a715343531f6a743 /core/src/Utils/I18n.hpp | |
parent | 53bff541e292c5d6cae73881a37bf8f7e4a5fd0a (diff) |
UI big structure
Diffstat (limited to 'core/src/Utils/I18n.hpp')
-rw-r--r-- | core/src/Utils/I18n.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/Utils/I18n.hpp b/core/src/Utils/I18n.hpp index 6b72d29..b9386be 100644 --- a/core/src/Utils/I18n.hpp +++ b/core/src/Utils/I18n.hpp @@ -41,11 +41,11 @@ struct FloatArgument { class BasicTranslation {
private:
- std::string_view mContent;
+ const char* mContent;
public:
BasicTranslation(std::string_view key);
- std::string_view Get() const;
+ const char* Get() const;
};
class FormattedTranslation {
|