* Resolve the given StringID into a std::string with formatting but no parameters. * @param string The unique identifier of the translatable string. * @return The std::string of the translated string. */
| 422 | * @return The std::string of the translated string. |
| 423 | */ |
| 424 | std::string GetString(StringID string) |
| 425 | { |
| 426 | return GetStringWithArgs(string, {}); |
| 427 | } |
| 428 | |
| 429 | /** |
| 430 | * Resolve the given StringID and append in place into an existing std::string with formatting but no parameters. |
no test coverage detected