| 7 | { |
| 8 | |
| 9 | template <typename... Args> static UString format(const UStringView fmt, Args &&...args) |
| 10 | { |
| 11 | return fmt::sprintf(fmt, std::forward<Args>(args)...); |
| 12 | } |
| 13 | |
| 14 | UString tr(const UString &str, const UString domain = "ufo_string"); |
| 15 |
no outgoing calls