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:
hstaudacher 2016-08-07 11:43:10 +02:00
parent 5fa3e0e542
commit cb09ea2cc0
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
RCT_EXPORT_MODULE();
-(NSString*) getCurrentLocale{
NSString *localeString=[[NSLocale currentLocale] localeIdentifier];
NSString *localeString=[[NSLocale preferredLanguages] objectAtIndex:0];
return localeString;
}