3.0.0 • Published 4 years ago

@kneefer/ngx-translate-resx-http-loader v3.0.0

Weekly downloads
121
License
MIT
Repository
github
Last release
4 years ago

NgX Translate ResX Http Loader Build Status npm version

Load resx files for use with ngx-translate Angular translation library.
Forked from ngx-translate-po-http-loader

This library uses ltx XML parser library in order to parse ResX files (XML-based).

To modify ResX files in friendly way I recommend ResX Resource Manager GUI. Available both as standalone Windows application and Visual Studio extension.

Installation

Using NPM

npm install @kneefer/ngx-translate-resx-http-loader

Usage

import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule, HttpClient } from '@angular/common/http';
import { TranslateResxHttpLoader } from '@kneefer/ngx-translate-resx-http-loader';

export function createTranslateLoader(http: HttpClient) {
  // Only first constructor parameter is required
  return new TranslateResxHttpLoader(http, 'trans.', 'assets/i18n', '.resx');
}

@NgModule({
  imports: [
    BrowserModule,
    HttpClientModule,
    TranslateModule.forRoot({
      loader: {
        provide: TranslateLoader,
        useFactory: createTranslateLoader,
        deps: [HttpClient]
      }
    })
  ],
  bootstrap: [AppComponent]
})
export class AppModule { }

Angular 9 and below

The newest (3.0.0) version is built for Angular 10 and ngx-translate 13. If you use Angular 9 or below please use following version:

@kneefer/ngx-translate-resx-http-loader@2.0.1

RxJS 5 and below

If you can't use RxJS 6 (or at least 5.6.0-forward-compat.5) (RxJS introduces pipable operators in version 6) please use following version:

@kneefer/ngx-translate-resx-http-loader@1.0.0

Old HttpModule

If you want to use deprecated HttpModule (Angular < 4.3.0) please use following version:

@kneefer/ngx-translate-resx-http-loader@0.3.5

Development

Clone

git clone https://github.com/kneefer/ngx-translate-resx-http-loader.git

Install dependencies

npm install

Build

npm run build
3.0.0

4 years ago

2.0.1

6 years ago

2.0.0-beta.0

6 years ago

2.0.0

6 years ago

1.0.0

6 years ago

0.3.5

7 years ago

0.3.4

7 years ago

0.3.3

7 years ago

0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago