8.0.0 • Published 12 months ago

@ngx-translate/http-loader v8.0.0

Weekly downloads
378,491
License
SEE LICENSE IN LI...
Repository
-
Last release
12 months ago

@ngx-translate/http-loader Build Status npm version

A loader for ngx-translate that loads translations using http.

Simple example using ngx-translate: https://stackblitz.com/github/ngx-translate/example

Get the complete changelog here: https://github.com/ngx-translate/http-loader/releases

Installation

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

Choose the version corresponding to your Angular version:

Angular@ngx-translate/core@ngx-translate/http-loader
1013.x+6.x+
912.x+5.x+
812.x+4.x+
711.x+4.x+
610.x3.x
58.x to 9.x1.x to 2.x
4.37.x or less1.x to 2.x
2 to 4.2.x7.x or less0.x

Usage

1. Setup the 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 '@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:

  • prefix: string = "/assets/i18n/"
  • suffix: string = ".json"

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.

Angular CLI/Webpack TranslateLoader Example

If you are using Angular CLI (uses webpack under the hood) you can write your own TranslateLoader that always loads the latest translation file available during your application build.

// webpack-translate-loader.ts
import { TranslateLoader } from '@ngx-translate/core';
import { Observable } from 'rxjs/Observable';

export class WebpackTranslateLoader implements TranslateLoader {
  getTranslation(lang: string): Observable<any> {
    return Observable.fromPromise(System.import(`../assets/i18n/${lang}.json`));
  }
}

Cause System will not be available you need to add it to your custom typings.d.ts:

declare var System: System;
interface System {
  import(request: string): Promise<any>;
}

Now you can use the WebpackTranslateLoader with your app.module:

@NgModule({
  bootstrap: [AppComponent],
  imports: [
    TranslateModule.forRoot({
      loader: {
        provide: TranslateLoader,
        useClass: WebpackTranslateLoader
      }
    })
  ]
})
export class AppModule { }

The disadvantage of this solution is that you have to rebuild the application everytime your translate files has changes.

@eui/deps-baseebcont-galaxy@c8y/ngx-components@muros-ct/angular-plotlycollaborate-space-for-webpoc-top-floplxlibsedapta-core-devcustomermanagementhms-core-librarycb-customermagementcb-masterservicecb-masterservice1cb-msheader-demo-trialcontent-file-preview-renderervideo-visit-librarycom.d3sd1.angular.multiplaformangular-multiplatformbkb-clerthermoconvergeequitable-component-librarycustom-phone-validatoriot-libsphone-check@ngshared/ui@ng-barn/languageapp14-vivesintabaco-serverbee-common-workspacesnovasys-commentsarkcase-nextngx-cron-joblms-system-service-frontedx1-libng-testang-provohayojpvhfws-fe-c1-aifmkc-layoutrxmx-corenebular-angular-seedwachter-ng6-file-manglyph-angularwinlogic-ontimize-web-ngx@jovian/ngx-tour-plus@gomoko/admin-uiapollo-componentsgoil-alerts-testmx-command-bar-appserengeti-commonserengeti-marketinforit-crud-app@gamiflygg/core-libngpacab-shared-imi-v124custom-grid-libgamifly-core-libnpm-ntk-cms-angularpaymentopntk-cms-filemangerthmsltmnn-ng-jhipster@sm-soluciones/core-app@bytebean/admin-uicitymap@everything-registry/sub-chunk-649hcm-clocking-event-angular-componentsng-solcre-authviber-landing-pages-templatezone35-ag-core@fs-tw/theme-alain@galaxit/componentswater-utilsweb-acmtc-componentwlpacks-ontimize-web-ngxvukan-appyutsys-ng-coreuniondrug-angularjsvls-front-mobilevmdkmks@goil_security/goil-alertscore2-packagefileuploader-dmsfm-dms-uploaderfiredev-frameworksurvey-examiner-1swt-test-componenttn-sharedsnovasys-authentication-componentssoftware-pioniere-libtangytangerine-clienttematikbagistask-achievertest-cdc-1steextester-aitdm-angularsupplier-truster-librarystarlink-corestory-book-uityperx-client
8.0.0

12 months ago

7.0.0

2 years ago

6.0.0

4 years ago

5.0.0

4 years ago

4.0.0

6 years ago

3.0.1

6 years ago

3.0.0

6 years ago

2.0.1

6 years ago

2.0.0

7 years ago

1.1.0

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

0.1.0

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago