diff options
Diffstat (limited to 'core/translation.h')
-rw-r--r-- | core/translation.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/core/translation.h b/core/translation.h index 29a068f450..4f50a1a4bc 100644 --- a/core/translation.h +++ b/core/translation.h @@ -34,12 +34,11 @@ #include "core/resource.h" class Translation : public Resource { - GDCLASS(Translation, Resource); OBJ_SAVE_TYPE(Translation); RES_BASE_EXTENSION("translation"); - String locale; + String locale = "en"; Map<StringName, StringName> translation_map; Vector<String> _get_message_list() const; @@ -61,14 +60,13 @@ public: void get_message_list(List<StringName> *r_messages) const; int get_message_count() const; - Translation(); + Translation() {} }; class TranslationServer : public Object { - GDCLASS(TranslationServer, Object); - String locale; + String locale = "en"; String fallback; Set<Ref<Translation>> translations; @@ -77,7 +75,7 @@ class TranslationServer : public Object { Map<String, String> locale_name_map; - bool enabled; + bool enabled = true; static TranslationServer *singleton; bool _load_translations(const String &p_from); |