I have just finished the install process:
- tns plugin add nativescript-localize
- created localization files (see image)
- imported NativeScriptLocalizeModule in app.module


But if I try to translate any string, it simply won't work.
Both in TS code (app.component.ts):
export class AppComponent implements OnInit {
constructor(private router: Router,
private routerExtensions: RouterExtensions) {
console.log(localize("test"));
}
or in template:
<Label text="{{ 'test' | L }}"></Label>does only returns "test" instead of the translated value.