blob: d7106d4ae2829805cbf056252bf2d803abc634b8 [file] [view]
## Added `msgfmt_args` arg to `i18n.gettext`
`i18n.gettext` now supports the `msgfmt_args` argument.
This argument can be used to pass additional arguments to
`msgfmt` when building the translations.
```meson
i18n = import('i18n')
i18n.gettext('mycatalog',
args : ['-k_', '-kN_'],
msgfmt_args : ['--use-fuzzy'])
```