mirror of
https://github.com/status-im/react-native-i18n.git
synced 2025-01-09 11:45:54 +00:00
19 lines
295 B
Objective-C
19 lines
295 B
Objective-C
#import "RNI18n.h"
|
|
|
|
@implementation RNI18n
|
|
|
|
RCT_EXPORT_MODULE();
|
|
|
|
- (NSString*) getCurrentLocale
|
|
{
|
|
NSString *localeString=[[NSLocale preferredLanguages] objectAtIndex:0];
|
|
return localeString;
|
|
}
|
|
|
|
- (NSDictionary *)constantsToExport
|
|
{
|
|
return @{ @"locale": [self getCurrentLocale] };
|
|
}
|
|
|
|
@end
|