| 413 | } |
| 414 | |
| 415 | StringName TranslationServer::translate(const StringName &p_message, const StringName &p_context) const { |
| 416 | return main_domain->translate(p_message, p_context); |
| 417 | } |
| 418 | |
| 419 | StringName TranslationServer::translate_plural(const StringName &p_message, const StringName &p_message_plural, int p_n, const StringName &p_context) const { |
| 420 | return main_domain->translate_plural(p_message, p_message_plural, p_n, p_context); |
no outgoing calls
no test coverage detected