Reputation: 73
How to detect system language in Cordova using Java script,I need to detect the language for Android and iOS app
Upvotes: 1
Views: 140
Reputation: 5055
navigator.language
seems like the simplest way for you to do this
let language = navigator.language
console.log(language);
Upvotes: 2