Fix #18: Replace currentLocale with prefered languages
On the iOS device the currentLocale returns the region instead of the device language. By using prefered language this is fixed.
This commit is contained in:
parent
5fa3e0e542
commit
cb09ea2cc0
|
@ -16,7 +16,7 @@
|
||||||
RCT_EXPORT_MODULE();
|
RCT_EXPORT_MODULE();
|
||||||
|
|
||||||
-(NSString*) getCurrentLocale{
|
-(NSString*) getCurrentLocale{
|
||||||
NSString *localeString=[[NSLocale currentLocale] localeIdentifier];
|
NSString *localeString=[[NSLocale preferredLanguages] objectAtIndex:0];
|
||||||
return localeString;
|
return localeString;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue