UNPKG

@corellia/ngx-translation-io

Version:

Add this package to localize your Angular application.<br />

25 lines (19 loc) 628 B
import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { minutes = 0; gender = 'female'; helloSourceFromJS = $localize `Hello source from JS`; helloKeyFromJS = $localize`:@@TIO_MYAPP_HelloKeyJS: Hello key from JS`; fly = true; logo = 'https://angular.io/assets/images/logos/angular/angular.png'; inc(i: number) { this.minutes = Math.min(5, Math.max(0, this.minutes + i)); } male() { this.gender = 'male'; } female() { this.gender = 'female'; } other() { this.gender = 'other'; } }