transloco
transloco copied to clipboard
🚀 😍 The internationalization (i18n) library for Angular
### Current behavior In our app we use EN, DE and FR languages. We have dedicated jsons for translations and also use corresponding locales. Also we have an empty json...
### Is your feature request related to a problem? Please describe. In one of my translation, there is a missing curly brace: `"manage-space-form.default-title-for-slot": "Created by { creatorFirstName }} {{ creatorLastName...
### Current behavior The global format settings are merged with the parameters passed to the pipe. This causes errors in the date pipe when `dateStyle` is set in the global...
### Current behavior We are using Angular Universal with TransferHttpCacheModule and Transloco for translations. Recently we have had to add cookies on server side with the help of some libraries...
## I'm submitting a... [ ] Regression (a behavior that used to work and stopped working in a new release) [ ] Bug report [ ] Performance issue [ ]...
### Current behavior Using `getBrowserCultureLang()` returns: - Chrome: de-DE (correct) - Firefox: de (wrong) - Safari: de-de (wrong) The problem gets worse when using `transloco-locale`: ```ts translocoLocaleService.setLocale(getBrowserCultureLang()) ``` -> Throws...
### Current behavior Angular 12 with @ngx-translate. After running `ng g @ngneat/transloco:migrate` I selected NgxTranslate and provided path to the app. All files process, however, `TranslateService` only changed in the...
If the locale is set using `this.translocoLocaleService.setLocale(locale)` (or default) it is overwritten the moment `this.translocoService.setActiveLang(lang);` is called. Because of the https://github.com/ngneat/transloco/blob/master/projects/ngneat/transloco-locale/src/lib/transloco-locale.service.ts `translocoService.langChanges$` subscription. There is no property or config to...
### Is your feature request related to a problem? Please describe. This may or may not be a feature request for updating the documentation: When using `.translate()` within pure pipe's...
### Is your feature request related to a problem? Please describe. I would like to get the default locale? In Transloco there is a function for that: ``` translocoService.setActiveLang(getBrowserLang() ||...