| 496 | } |
| 497 | |
| 498 | StringName TranslationServer::tool_translate(const StringName &p_message, const StringName &p_context) const { |
| 499 | return editor_domain->translate(p_message, p_context); |
| 500 | } |
| 501 | |
| 502 | StringName TranslationServer::tool_translate_plural(const StringName &p_message, const StringName &p_message_plural, int p_n, const StringName &p_context) const { |
| 503 | return editor_domain->translate_plural(p_message, p_message_plural, p_n, p_context); |