* Translation function. * If no translation function is set, simply return the input. */
| 61 | * If no translation function is set, simply return the input. |
| 62 | */ |
| 63 | inline bilingual_str _(const char* psz) |
| 64 | { |
| 65 | return bilingual_str{psz, G_TRANSLATION_FUN ? (G_TRANSLATION_FUN)(psz) : psz}; |
| 66 | } |
| 67 | |
| 68 | #endif // BITCOIN_UTIL_TRANSLATION_H |
no outgoing calls