nativescript localize can't switching languages
I need some help.
I'm coding mobile app on nativescript and I use nativescript-localize for multi-language function.
Question is
- I try to set default by add in file name ( ex. finish.default.json ) but on app, it show on english language (I have en and fi lang in my app), So how to fix this?
- How to switching language function?
I use this plugin >> https://www.npmjs.com/package/nativescript-localize
or anyone have some good plugin for internationalization plugin, you can tell me :)
thank you
javascript mobile plugins nativescript
add a comment |
I need some help.
I'm coding mobile app on nativescript and I use nativescript-localize for multi-language function.
Question is
- I try to set default by add in file name ( ex. finish.default.json ) but on app, it show on english language (I have en and fi lang in my app), So how to fix this?
- How to switching language function?
I use this plugin >> https://www.npmjs.com/package/nativescript-localize
or anyone have some good plugin for internationalization plugin, you can tell me :)
thank you
javascript mobile plugins nativescript
add a comment |
I need some help.
I'm coding mobile app on nativescript and I use nativescript-localize for multi-language function.
Question is
- I try to set default by add in file name ( ex. finish.default.json ) but on app, it show on english language (I have en and fi lang in my app), So how to fix this?
- How to switching language function?
I use this plugin >> https://www.npmjs.com/package/nativescript-localize
or anyone have some good plugin for internationalization plugin, you can tell me :)
thank you
javascript mobile plugins nativescript
I need some help.
I'm coding mobile app on nativescript and I use nativescript-localize for multi-language function.
Question is
- I try to set default by add in file name ( ex. finish.default.json ) but on app, it show on english language (I have en and fi lang in my app), So how to fix this?
- How to switching language function?
I use this plugin >> https://www.npmjs.com/package/nativescript-localize
or anyone have some good plugin for internationalization plugin, you can tell me :)
thank you
javascript mobile plugins nativescript
javascript mobile plugins nativescript
edited Nov 23 '18 at 5:09
asked Nov 23 '18 at 4:24
Thanakorn Sirikulpan
1
1
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Default language is something that will be picked up when your app doesn't support device's current language.
Since your app supports French and English, system will pickup English only when device's language is English. If device language is set to something else, let's say Spanish, then it will pickup French as your app doesn't support Spanish and French is default.
add a comment |
Language is changed by changing the language of the device. Use the Settings app for this (outside of your application). A user will typically not expect to change language within an app and instead want a seamless experience that just adheres to the language they are already using on the device.
Other notes
This plugin requires your filenames to match the locale ISO codes. For Finnish (two n’s), the file should be called fi.json
.
When using the .default.
infix, you are specifying which language should be applied if the user’s language is not available.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440635%2fnativescript-localize-cant-switching-languages%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Default language is something that will be picked up when your app doesn't support device's current language.
Since your app supports French and English, system will pickup English only when device's language is English. If device language is set to something else, let's say Spanish, then it will pickup French as your app doesn't support Spanish and French is default.
add a comment |
Default language is something that will be picked up when your app doesn't support device's current language.
Since your app supports French and English, system will pickup English only when device's language is English. If device language is set to something else, let's say Spanish, then it will pickup French as your app doesn't support Spanish and French is default.
add a comment |
Default language is something that will be picked up when your app doesn't support device's current language.
Since your app supports French and English, system will pickup English only when device's language is English. If device language is set to something else, let's say Spanish, then it will pickup French as your app doesn't support Spanish and French is default.
Default language is something that will be picked up when your app doesn't support device's current language.
Since your app supports French and English, system will pickup English only when device's language is English. If device language is set to something else, let's say Spanish, then it will pickup French as your app doesn't support Spanish and French is default.
answered Nov 23 '18 at 6:19
Manoj
4,4262920
4,4262920
add a comment |
add a comment |
Language is changed by changing the language of the device. Use the Settings app for this (outside of your application). A user will typically not expect to change language within an app and instead want a seamless experience that just adheres to the language they are already using on the device.
Other notes
This plugin requires your filenames to match the locale ISO codes. For Finnish (two n’s), the file should be called fi.json
.
When using the .default.
infix, you are specifying which language should be applied if the user’s language is not available.
add a comment |
Language is changed by changing the language of the device. Use the Settings app for this (outside of your application). A user will typically not expect to change language within an app and instead want a seamless experience that just adheres to the language they are already using on the device.
Other notes
This plugin requires your filenames to match the locale ISO codes. For Finnish (two n’s), the file should be called fi.json
.
When using the .default.
infix, you are specifying which language should be applied if the user’s language is not available.
add a comment |
Language is changed by changing the language of the device. Use the Settings app for this (outside of your application). A user will typically not expect to change language within an app and instead want a seamless experience that just adheres to the language they are already using on the device.
Other notes
This plugin requires your filenames to match the locale ISO codes. For Finnish (two n’s), the file should be called fi.json
.
When using the .default.
infix, you are specifying which language should be applied if the user’s language is not available.
Language is changed by changing the language of the device. Use the Settings app for this (outside of your application). A user will typically not expect to change language within an app and instead want a seamless experience that just adheres to the language they are already using on the device.
Other notes
This plugin requires your filenames to match the locale ISO codes. For Finnish (two n’s), the file should be called fi.json
.
When using the .default.
infix, you are specifying which language should be applied if the user’s language is not available.
answered Nov 24 '18 at 23:49
Ian MacDonald
8,65311230
8,65311230
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53440635%2fnativescript-localize-cant-switching-languages%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown