私はnativescriptをかなり使い慣れています。私は私のアプリケーションをローカライズできるようにstrings.xmlから文字列値を使用する方法を把握しようとしています。NativescriptのAndroidでi18n文字列リソースを使用する
レイアウトは次のようになります。
<StackLayout class="page">
<label [text]="@string/a_value"></label>
<Label text="Hello world with tap!" class="yellow"></Label>
<button text="Tap me my friend" (tap)="tapTheButton()" class="red"></button>
<label [text]="text" class="blue"></label>
</StackLayout>
@ string/a_valueは、res/values/strings.xmlファイルから文字列を取得する必要があります。
何か助けてください!
ありがとう、私はプラグインを見て、それは私のために働いた。乾杯! – Wouter