Roberto Simonetti

Results 57 comments of Roberto Simonetti

@nickroberts Your app built with nx has a difference: use `initialNavigation: 'enabled'` in the router: if I remove it, the app works (also the reloading of the lazy module). However,...

The strange thing is that in the sample app of this project, the option works (but without `L10nRouting`). About SSR, never used that option. However I'll continue to investigate, and...

@nickroberts I fixed `initialNavigation` in the latest version: https://github.com/robisim74/angular-l10n/releases/tag/v9.2.0 Greetings

@nickroberts Thanks for reporting the problem (again). Fixed in v10.0.2

@IlCallo The repo you mentioned works differently from this library, which only stores translation data for the current language. Then I'm not sure I understand the behavior you want to...

The logic is different. This library uses the language as main property, and the keys as nested properties: ``` "en": { "title": "Title", "subtitle": "Subtitle", } ``` instead you have:...

I think you can create your own `translateDynamic` directive or pipe without problems, but bringing them inside the library would mean creating a _parallel_ library to handle them in all...

Ok, thanks! P.S. Then if you decide to create and share a module/package for these features I can link it in this repo.

Hi, - angular-l10n should only be initialized in the main app - in the angular library, only the modules you need (like `L10nTranslationModule`) should be imported - the translation files...