You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.0 KiB
47 lines
1.0 KiB
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import "RCTLocalizationProvider.h"
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
static id<RCTLocalizationProtocol> _delegate = nil;
|
|
static NSDictionary<NSString *, NSString *> *_languagePack = nil;
|
|
|
|
void setLocalizationDelegate(id<RCTLocalizationProtocol> delegate)
|
|
{
|
|
_delegate = delegate;
|
|
}
|
|
|
|
void setLocalizationLanguagePack(NSDictionary<NSString *, NSString *> *pack)
|
|
{
|
|
_languagePack = pack;
|
|
}
|
|
|
|
@implementation RCTLocalizationProvider
|
|
|
|
+ (NSString *)RCTLocalizedString:(NSString *)oldString withDescription:(NSString *)description
|
|
{
|
|
NSString *candidate = nil;
|
|
|
|
if (_delegate != nil) {
|
|
candidate = [_delegate localizedString:oldString withDescription:description];
|
|
}
|
|
|
|
if (candidate == nil && _languagePack != nil) {
|
|
candidate = _languagePack[oldString];
|
|
}
|
|
|
|
if (candidate == nil) {
|
|
candidate = oldString;
|
|
}
|
|
|
|
return candidate;
|
|
}
|
|
|
|
@end
|