@corellia/ngx-translation-io
Version:
Add this package to localize your Angular application.<br />
29 lines (25 loc) • 1.19 kB
HTML
<h1 i18n="User welcome|An introduction header for this sample@@introductionHeader">
Hello i18n!
</h1>
<ng-container i18n>Hello source</ng-container> <br />
<ng-container i18n>{{helloSourceFromJS}}</ng-container> <br />
<hr /> <br />
<ng-container i18n="@@TIO_MYAPP_HelloKey">Hello key</ng-container> <br />
<ng-container i18n>{{helloKeyFromJS}}</ng-container> <br />
<br />
<br />
<br />
<img [src]="logo" i18n-title title="Angular logo" alt="Angular logo"/>
<br>
<button type="button" (click)="inc(1)">+</button> <button type="button" (click)="inc(-1)">-</button>
<span i18n>Updated {minutes, plural, =0 {just now} =1 {one minute ago} other {{{minutes}} minutes ago}}</span>
({{minutes}})
<br><br>
<button type="button" (click)="male()">♂</button> <button type="button" (click)="female()">♀</button> <button type="button" (click)="other()">⚧</button>
<span i18n>The author is {gender, select, male {male} female {female} other {other}}</span>
<br><br>
<span i18n>Updated: {minutes, plural,
=0 {just now}
=1 {one minute ago}
other {{{minutes}} minutes ago by {gender, select, male {male} female {female} other {other}}}}
</span>