fractal/fractal-gtk
Daniel García Moreno ae80f56720 i18n: New module to use gettext with params
We can't use format with dynamic strings so we can't use gettext
response with format. To format translatable strings easily I've created
a new module so we can use like this:

```
    let literal = i18n("TESTINGx gettext");
    let nonamed_params = i18n_f("TESTING! gettext {} and {}", &["one", "two"]);
    let named_params =i18n_k("TESTING2 gettext {one} and {two}",
                             &[("one", "1"),
                               ("two", "two")]);
```
2018-06-18 13:41:09 +02:00
..
po i18n: New module to use gettext with params 2018-06-18 13:41:09 +02:00
res UI: Implement media viewer overflow menu 2018-06-18 00:28:56 +02:00
src i18n: New module to use gettext with params 2018-06-18 13:41:09 +02:00
build.rs Fix cargo run flow without FRACTAL_LOCALEDIR env 2018-05-18 13:24:25 +02:00
Cargo.toml i18n: New module to use gettext with params 2018-06-18 13:41:09 +02:00