From 926240f2590dae4003b93698f7e24f675e426655 Mon Sep 17 00:00:00 2001 From: Djorkaeff Alexandre Vilela Pereira Date: Wed, 21 Mar 2018 17:47:25 -0300 Subject: [PATCH] Translate log to English --- ios/ReactNativeUAIOS/ReactNativeUAIOS.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ios/ReactNativeUAIOS/ReactNativeUAIOS.m b/ios/ReactNativeUAIOS/ReactNativeUAIOS.m index ebb4e93..8dde509 100644 --- a/ios/ReactNativeUAIOS/ReactNativeUAIOS.m +++ b/ios/ReactNativeUAIOS/ReactNativeUAIOS.m @@ -136,7 +136,7 @@ - (void)dispatchEvent:(NSString *)event body:(NSDictionary *)notification { BOOL isActionUrl = [[NSUserDefaults standardUserDefaults] boolForKey:@"enable_action_url"] ? YES : NO; - NSLog(@"Habilitou o comportamento DEFAULT da action URL -> %@", isActionUrl ? @"YES": @"NO"); + NSLog(@"Enabled the DEFAULT behavior of the action URL -> %@", isActionUrl ? @"YES": @"NO"); } RCT_EXPORT_METHOD(disableActionUrl) { @@ -145,7 +145,7 @@ - (void)dispatchEvent:(NSString *)event body:(NSDictionary *)notification { BOOL isActionUrl = [[NSUserDefaults standardUserDefaults] boolForKey:@"enable_action_url"] ? YES : NO; - NSLog(@"Desabilitou o comportamento DEFAULT da action URL -> %@", isActionUrl ? @"YES": @"NO"); + NSLog(@"Disabled the DEFAULT behavior of the action URL -> %@", isActionUrl ? @"YES": @"NO"); } RCT_EXPORT_METHOD(setQuietTime:(NSDictionary *)time) {