diff options
Diffstat (limited to 'core/string/translation_server.h')
-rw-r--r-- | core/string/translation_server.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/core/string/translation_server.h b/core/string/translation_server.h index bb285ab19c..1271abec99 100644 --- a/core/string/translation_server.h +++ b/core/string/translation_server.h @@ -32,6 +32,7 @@ #define TRANSLATION_SERVER_H #include "core/string/translation.h" +#include "core/string/translation_domain.h" class TranslationServer : public Object { GDCLASS(TranslationServer, Object); @@ -39,7 +40,9 @@ class TranslationServer : public Object { String locale = "en"; String fallback; - HashSet<Ref<Translation>> translations; + Ref<TranslationDomain> main_domain; + HashMap<StringName, Ref<TranslationDomain>> custom_domains; + Ref<Translation> tool_translation; Ref<Translation> property_translation; Ref<Translation> doc_translation; @@ -70,8 +73,6 @@ class TranslationServer : public Object { bool _load_translations(const String &p_from); String _standardize_locale(const String &p_locale, bool p_add_defaults) const; - StringName _get_message_from_translations(const StringName &p_message, const StringName &p_context, const String &p_locale, bool plural, const String &p_message_plural = "", int p_n = 0) const; - static void _bind_methods(); struct LocaleScriptInfo { @@ -99,6 +100,7 @@ public: void set_locale(const String &p_locale); String get_locale() const; + String get_fallback_locale() const; Ref<Translation> get_translation_object(const String &p_locale); Vector<String> get_all_languages() const; @@ -144,6 +146,10 @@ public: StringName extractable_translate(const StringName &p_message, const StringName &p_context = "") const; StringName extractable_translate_plural(const StringName &p_message, const StringName &p_message_plural, int p_n, const StringName &p_context = "") const; + bool has_domain(const StringName &p_domain) const; + Ref<TranslationDomain> get_or_add_domain(const StringName &p_domain); + void remove_domain(const StringName &p_domain); + void setup(); void clear(); |