summaryrefslogtreecommitdiff
path: root/core/src/Utils/I18n.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/Utils/I18n.hpp')
-rw-r--r--core/src/Utils/I18n.hpp4
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 {