| 508 | } |
| 509 | |
| 510 | StringName TranslationServer::doc_translate(const StringName &p_message, const StringName &p_context) const { |
| 511 | return doc_domain->translate(p_message, p_context); |
| 512 | } |
| 513 | |
| 514 | StringName TranslationServer::doc_translate_plural(const StringName &p_message, const StringName &p_message_plural, int p_n, const StringName &p_context) const { |
| 515 | return doc_domain->translate_plural(p_message, p_message_plural, p_n, p_context); |
no test coverage detected