Alexander
Alexander
In theory each entry point can have each own `.po` file and this can reduce translations size. But this will complicate your workflow. Also, note that dynamic import will create...
One thing that came to my mind is that we can create some kind of `c-3po-webpack-plugin` that will inject only those translations that are present in a bundle for all...
To avoid bundling all translations, you can use dynamic imports - webpack will create separate chunks for each `.po` and will load exactly what was imported. To be closer to...
ok, I will take a look soon) Sorry for the late response, was on a vacation.
Hi, seems like a bug. As a temporary workaround you can try to use ```js ngettext(msgid`record`, `records`, n); ``` The most frequent case for ngettext is when `n` is present...
Hey, thanks for the report! Should be fixed in v1.8.11
fix is ready v1.8.12, thanks for your contibution!