core icon indicating copy to clipboard operation
core copied to clipboard

The internationalization (i18n) library for Angular

Results 184 core issues
Sort by recently updated
recently updated
newest added

This PR contains no breaking changes: Extract from README.md. --- #### 7. Use translate namespace: You can namespace your keys using the `*translateNamespace` structural directive ```html key1 key2 key3 ```...

## Current behavior When specifying dynamic text in language file and combining it with `TranslateMessageFormatCompiler`, the application throws an exception. ``` // Module configuration TranslateModule.forRoot({ compiler: { provide: TranslateCompiler, useClass:...

fix for #946 Motivation: I want to be able to use the translate pipe in combination with the `*ngFor` keyword in my angular components With this Pull Request the following...

Hello, I am trying to use the plugin in nativescript with shared functionality of web and native code in angular 7. I have already used in previous NS projects, but...

Hello, I try to use ngx-translate in a component of a module, but I can’t find a way to bring that to work. I opened a thread on StackOverflow (https://stackoverflow.com/questions/67553920/how-to-use-ngx-translate-in-module-components),...

This PR contains no breaking changes. When the `translateService.use(...)` method is called nothing happens if the current language is the same as the one passed as parameter. This causes that...

I have a angular library where I created a `LanguageModule ` defined as follows ``` @NgModule({ imports: [ TranslateModule.forRoot({ loader: { provide: TranslateLoader, useFactory: (createTranslateLoader), deps: [HttpClient] }, }) ],...

## Current behavior When I use the translate directive, its does not work in dynamic change, but I use pipe its working fine. ## Expected behavior ## How do you...

## Current behavior There is no way to be certain about the existence of a translation for a specific key. The best thing I can do is checking if the...

I have two separate projects which are both connected. The first one has the `app.module.ts` and the other one holds other modules that the first project is using like `splash.module.ts`....