ngx-translate-messageformat-compiler
ngx-translate-messageformat-compiler copied to clipboard
Advanced pluralization (and more) for ngx-translate, using standard ICU syntax which is compiled with the help of messageformat.js.
Please support angular 15

As example: ``` { "somekey”: { "desc": "translated desc", "some_other": null } } ``` "some_other" Key should not break the loading of the translation-file, should consider to be an empty...
Hello. Thank you for the great library. I found no info inside readme how to add skeleton support for messages. http://messageformat.github.io/messageformat/api/number-skeleton/
First of all thanks for your update, but the following message remains: ``` Warning: /usr/src/app/node_modules/ngx-translate-messageformat-compiler/fesm2020/ngx-translate-messageformat-compiler.mjs depends on '@messageformat/core'. CommonJS or AMD dependencies can cause optimization bailouts. For more info see:...
We use `ngx-translate-messageformat-compiler` (**5.0.1**) with `messageformat` (**2.3.0**) in a mobile application made with Capacitor. We get a lot of errors like these in the last two weeks: **Localisation function not...
I'm using fake languages for testing purposes, e.g. a 'tilde' language whose translation values are exactly the same as English except for prepending a tilde '~'. I've made up a...
Hey there ngx-translate allows for nested translation json files. For example something like this: ``` { "food": { "pizza": "Pizza" } } ``` I would then reference pizza by the...
Translations returned as functions when I try to load them async. So I need to execute the key to access the value. ``` this.translate.get('shared').subscribe(translations => { console.log(translations.key) // Function {...
Hello, i have a problem with following syntax: ```html {{copyrightYear}} blie bla blub ``` -> https://stackblitz.com/edit/angular-tjigun set translateParams input setter is never triggered Following format is working: ```html footer.copyright ```...