
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@chimung/ngx-translate-http-loader
Advanced tools
A loader for ngx-translate that loads translations using http
A loader for ngx-translate that loads translations using http.
Get the complete changelog here: https://github.com/ngx-translate/http-loader/releases
We assume that you already installed ngx-translate.
Now you need to install the npm module for TranslateHttpLoader
:
npm install @ngx-translate/http-loader --save
NB: if you're still on Angular <4.3, please use Http from @angular/http with http-loader@0.1.0.
TranslateModule
to use the TranslateHttpLoader
:The TranslateHttpLoader
uses HttpClient to load translations, which means that you have to import the HttpClientModule from @angular/common/http
before the TranslateModule
:
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
import {HttpClientModule, HttpClient} from '@angular/common/http';
import {TranslateModule, TranslateLoader} from '@chimung/ngx-translate-core';
import {TranslateHttpLoader} from '@ngx-translate/http-loader';
import {AppComponent} from "./app";
// AoT requires an exported function for factories
export function HttpLoaderFactory(http: HttpClient) {
return new TranslateHttpLoader(http);
}
@NgModule({
imports: [
BrowserModule,
HttpClientModule,
TranslateModule.forRoot({
loader: {
provide: TranslateLoader,
useFactory: HttpLoaderFactory,
deps: [HttpClient]
}
})
],
bootstrap: [AppComponent]
})
export class AppModule { }
The TranslateHttpLoader
also has two optional parameters:
By using those default parameters, it will load your translations files for the lang "en" from: /assets/i18n/en.json
.
You can change those in the HttpLoaderFactory
method that we just defined. For example if you want to load the "en" translations from /public/lang-files/en-lang.json
you would use:
export function HttpLoaderFactory(http: HttpClient) {
return new TranslateHttpLoader(http, "/public/lang-files/", "-lang.json");
}
For now this loader only support the json format.
FAQs
A loader for ngx-translate that loads translations using http
The npm package @chimung/ngx-translate-http-loader receives a total of 0 weekly downloads. As such, @chimung/ngx-translate-http-loader popularity was classified as not popular.
We found that @chimung/ngx-translate-http-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.