diff --git a/Example/PNObject/PNObjAppDelegate.m b/Example/PNObject/PNObjAppDelegate.m index e2520dc..c32e75f 100644 --- a/Example/PNObject/PNObjAppDelegate.m +++ b/Example/PNObject/PNObjAppDelegate.m @@ -138,9 +138,9 @@ [installation saveLocally]; - NSLog(@"%@",installation); + NSLogDebug(@"%@",installation); - NSLog(@"%@",[installation JSONFormObject]); + NSLogDebug(@"%@",[installation JSONFormObject]); //[installation setUser:nil]; @@ -170,9 +170,9 @@ [[PNInstallation currentInstallation] registerDeviceWithBlockProgress:^(NSProgress * _Nonnull uploadProgress) { } Success:^(BOOL response) { - NSLog(@"device registrato"); + NSLogDebug(@"device registrato"); } failure:^(NSError * _Nonnull error) { - NSLog(@"device non registrato"); + NSLogDebug(@"device non registrato"); }]; }); } @@ -182,26 +182,26 @@ [[PNInstallation currentInstallation] updateDeviceWithBlockProgress:^(NSProgress * _Nonnull uploadProgress) { } Success:^(BOOL response) { - NSLog(@"device aggiornato"); + NSLogDebug(@"device aggiornato"); } failure:^(NSError * _Nonnull error) { - NSLog(@"device non aggiornato"); + NSLogDebug(@"device non aggiornato"); }]; }); } - (void) application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings { - NSLog(@"%@",notificationSettings); + NSLogDebug(@"%@",notificationSettings); } - (void) application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo { - NSLog(@"%@",userInfo); + NSLogDebug(@"%@",userInfo); } - (void) application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler { - NSLog(@"%@",userInfo); + NSLogDebug(@"%@",userInfo); } #pragma mark - diff --git a/Example/PNObject/PNObjViewController.m b/Example/PNObject/PNObjViewController.m index 13d0a2a..2c55a24 100644 --- a/Example/PNObject/PNObjViewController.m +++ b/Example/PNObject/PNObjViewController.m @@ -116,7 +116,7 @@ [user saveLocally]; - NSLog(@"%@",[[PNUser currentUser] JSONFormObject]); + NSLogDebug(@"%@",[[PNUser currentUser] JSONFormObject]); } diff --git a/Example/Podfile.lock b/Example/Podfile.lock index f3b7084..eaf4b80 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -26,18 +26,18 @@ PODS: - DJLocalization/Core (= 1.2.2) - DJLocalization/Core (1.2.2) - Expecta (1.0.5) - - FBSDKCoreKit (4.18.0): + - FBSDKCoreKit (4.19.0): - Bolts (~> 1.7) - - FBSDKLoginKit (4.18.0): + - FBSDKLoginKit (4.19.0): - FBSDKCoreKit - - FBSDKShareKit (4.18.0): + - FBSDKShareKit (4.19.0): - FBSDKCoreKit - NSDataAES (0.2.2) - NSDate_Utils (1.0.5) - NSString-Helper (1.0.5) - nv-ios-http-status (0.0.1) - PEAR-FileManager-iOS (1.3.1) - - PNObject (1.2.1): + - PNObject (1.2.2): - AFNetworking - CodFis-Helper - DDDKeychainWrapper @@ -76,15 +76,15 @@ SPEC CHECKSUMS: DDDKeychainWrapper: e681a4daba6448786fa83b4941f58102a33b1897 DJLocalization: 0c84029af375647d4104a42ae36be87194c46c47 Expecta: e1c022fcd33910b6be89c291d2775b3fe27a89fe - FBSDKCoreKit: 15fef8804a4629f98c6f4e55e81a76c9d725d85e - FBSDKLoginKit: 6773073e970b2b15fb12e451ce7f11da0532b880 - FBSDKShareKit: 0b8d6cc3f103c75297eb3c62caec284a2ccf1b9e + FBSDKCoreKit: 894b2b6eda6a4c8c4204e92e59cc355709ef045c + FBSDKLoginKit: 83ca4d8f12a2022570af9fd6aacf27f6b425b99f + FBSDKShareKit: 5953758366278430dc322d5cdc906db361ed7f81 NSDataAES: 967ea3337476a80e9838a533c25d570a06855ed0 NSDate_Utils: b0ab72ccec6df25297766bd64b0cd0c124521a45 NSString-Helper: 459e1b6a62b3bf7db10f01b0d102548608e945c4 nv-ios-http-status: b6c2b5fc8656cc19e0d3000dadce2080b99d0e2f PEAR-FileManager-iOS: 3bc403f68a53483f5629aa822f4649e40275c4d3 - PNObject: 6a528830b3769a9675bcfa90bd9f09cfa1cef9f2 + PNObject: 156e78eee9d0e3a10f059102e66d8c06a1296afe PureLayout: 4d550abe49a94f24c2808b9b95db9131685fe4cd RZDataBinding: 6981e90ddaae2f5e02028323b1043f8c31013109 Specta: ac94d110b865115fe60ff2c6d7281053c6f8e8a2 @@ -93,4 +93,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: db08ccdd0a68e33d4a1cceb1843643fbab2f2a8e -COCOAPODS: 1.2.0.beta.3 +COCOAPODS: 1.2.0.rc.1 diff --git a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h index 4c359c5..1608efa 100644 --- a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h +++ b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h @@ -381,7 +381,10 @@ FBSDK_EXTERN NSString *const FBSDKAppEventParameterValueNo; /** - Notifies the events system that the app has launched and, when appropriate, logs an "activated app" event. Should typically be placed in the + Notifies the events system that the app has launched and, when appropriate, logs an "activated app" event. + This function is called automatically from FBSDKApplicationDelegate applicationDidBecomeActive, unless + one overrides 'FacebookAutoLogAppEventsEnabled' key to false in the project info plist file. + In case 'FacebookAutoLogAppEventsEnabled' is set to false, then it should typically be placed in the app delegates' `applicationDidBecomeActive:` method. This method also takes care of logging the event indicating the first time this app has been launched, which, among other things, is used to diff --git a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h index c98ac37..95d1453 100644 --- a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h +++ b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.h @@ -78,6 +78,8 @@ /** Call this method from the [UIApplicationDelegate application:didFinishLaunchingWithOptions:] method of the AppDelegate for your app. It should be invoked for the proper use of the Facebook SDK. + As part of SDK initialization basic auto logging of app events will occur, this can be +controlled via 'FacebookAutoLogAppEventsEnabled' key in the project info plist file. - Parameter application: The application as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:]. diff --git a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m index 073ca52..c48b69e 100644 --- a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m +++ b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKApplicationDelegate.m @@ -220,6 +220,10 @@ static NSString *const FBSDKAppLinkInboundEvent = @"fb_al_inbound"; - (void)applicationDidBecomeActive:(NSNotification *)notification { + // Auto log basic events in case autoLogAppEventsEnabled is set + if ([[FBSDKSettings autoLogAppEventsEnabled] boolValue]) { + [FBSDKAppEvents activateApp]; + } // _expectingBackground can be YES if the caller started doing work (like login) // within the app delegate's lifecycle like openURL, in which case there // might have been a "didBecomeActive" event pending that we want to ignore. diff --git a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h index 9a12845..d006cf2 100644 --- a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h +++ b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h @@ -44,5 +44,5 @@ #import #endif -#define FBSDK_VERSION_STRING @"4.18.0" +#define FBSDK_VERSION_STRING @"4.19.0" #define FBSDK_TARGET_PLATFORM_VERSION @"v2.8" diff --git a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h index 2d59a2a..22347b7 100644 --- a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h +++ b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.h @@ -153,6 +153,18 @@ FBSDK_EXTERN NSString *const FBSDKLoggingBehaviorDeveloperErrors; - See:[UIImageJPEGRepresentation](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIKitFunctionReference/#//apple_ref/c/func/UIImageJPEGRepresentation) */ + (void)setJPEGCompressionQuality:(CGFloat)JPEGCompressionQuality; +/** + Flag which controls the auto logging of basic app events, such as activateApp and deactivateApp. + If not explicitly set, the default is 1 - true + */ ++ (NSNumber *)autoLogAppEventsEnabled; + +/** + Set the flag which controls the auto logging of basic app events, such as activateApp and deactivateApp. + - Parameter AutoLogAppEventsEnabled: Flag value, expressed as a value from 0 - false or 1 - true. + */ ++ (void)setAutoLogAppEventsEnabled:(NSNumber *)AutoLogAppEventsEnabled; + /** Gets whether data such as that generated through FBSDKAppEvents and sent to Facebook should be restricted from being used for other than analytics and conversions. Defaults to NO. This value is stored on the device and persists across app launches. */ diff --git a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.m b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.m index 6c53a85..3436e04 100644 --- a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.m +++ b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/FBSDKSettings.m @@ -68,7 +68,9 @@ FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSString, FacebookUrlSchemeSuffix FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSString, FacebookClientToken, clientToken, setClientToken, nil); FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSString, FacebookDisplayName, displayName, setDisplayName, nil); FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSString, FacebookDomainPart, facebookDomainPart, setFacebookDomainPart, nil); -FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSNumber, FacebookJpegCompressionQuality, _JPEGCompressionQualityNumber, _setJPEGCompressionQualityNumber, @(0.9)); +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSNumber, FacebookJpegCompressionQuality, _JPEGCompressionQualityNumber, _setJPEGCompressionQualityNumber, @0.9); +FBSDKSETTINGS_PLIST_CONFIGURATION_SETTING_IMPL(NSNumber, FacebookAutoLogAppEventsEnabled, autoLogAppEventsEnabled, + setAutoLogAppEventsEnabled, @1); + (void)setGraphErrorRecoveryDisabled:(BOOL)disableGraphErrorRecovery { g_disableErrorRecovery = disableGraphErrorRecovery; diff --git a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.m b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.m index 84d4151..05aea0a 100644 --- a/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.m +++ b/Example/Pods/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit/Internal/TokenCaching/FBSDKAccessTokenCacheV4.m @@ -23,6 +23,7 @@ #import "FBSDKKeychainStore.h" static NSString *const kFBSDKAccessTokenUserDefaultsKey = @"com.facebook.sdk.v4.FBSDKAccessTokenInformationKey"; +static NSString *const kFBSDKAccessTokenKeychainKey = @"com.facebook.sdk.v4.FBSDKAccessTokenInformationKeychainKey"; static NSString *const kFBSDKAccessTokenUUIDKey = @"tokenUUID"; static NSString *const kFBSDKAccessTokenEncodedKey = @"tokenEncoded"; @@ -45,20 +46,21 @@ static NSString *const kFBSDKAccessTokenEncodedKey = @"tokenEncoded"; NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; NSString *uuid = [defaults objectForKey:kFBSDKAccessTokenUserDefaultsKey]; - NSDictionary *dict = [_keychainStore dictionaryForKey:kFBSDKAccessTokenUserDefaultsKey]; - if (![dict[kFBSDKAccessTokenUUIDKey] isEqualToString:uuid]) { - // if the uuid doesn't match (including if there is no uuid in defaults which means uninstalled case) - // clear the keychain and return nil. - [self clearCache]; - return nil; - } - - id tokenData = dict[kFBSDKAccessTokenEncodedKey]; - if ([tokenData isKindOfClass:[NSData class]]) { - return [NSKeyedUnarchiver unarchiveObjectWithData:tokenData]; - } else { - return nil; + NSDictionary *dict = [_keychainStore dictionaryForKey:kFBSDKAccessTokenKeychainKey]; + if ([dict[kFBSDKAccessTokenUUIDKey] isKindOfClass:[NSString class]]) { + // there is a bug while running on simulator that the uuid stored in dict can be NSData, + // do a type check to make sure it is NSString + if ([dict[kFBSDKAccessTokenUUIDKey] isEqualToString:uuid]) { + id tokenData = dict[kFBSDKAccessTokenEncodedKey]; + if ([tokenData isKindOfClass:[NSData class]]) { + return [NSKeyedUnarchiver unarchiveObjectWithData:tokenData]; + } + } } + // if the uuid doesn't match (including if there is no uuid in defaults which means uninstalled case) + // clear the keychain and return nil. + [self clearCache]; + return nil; } - (void)cacheAccessToken:(FBSDKAccessToken *)token @@ -81,14 +83,14 @@ static NSString *const kFBSDKAccessTokenEncodedKey = @"tokenEncoded"; }; [_keychainStore setDictionary:dict - forKey:kFBSDKAccessTokenUserDefaultsKey + forKey:kFBSDKAccessTokenKeychainKey accessibility:[FBSDKDynamicFrameworkLoader loadkSecAttrAccessibleAfterFirstUnlockThisDeviceOnly]]; } - (void)clearCache { [_keychainStore setDictionary:nil - forKey:kFBSDKAccessTokenUserDefaultsKey + forKey:kFBSDKAccessTokenKeychainKey accessibility:NULL]; NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults]; [defaults removeObjectForKey:kFBSDKAccessTokenUserDefaultsKey]; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings index 5d179e6..35a6ce7 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Meld aan"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Gaan voort met Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Meld met Facebook aan"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Jy kan nie op die oomblik by toepassings aanmeld nie. Meld asseblief by www.facebook.com aan en volg die gegewe instruksies."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Nuut! Jy is in beheer - kies waater inligting jy met toepassings wil deel."; +"LoginTooltip.Message" = "Jy is in beheer – kies watter inligting jy met toepassings wil deel."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Meld aan"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings index 3ff6cb6..0a3a9a2 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "تسجيل الدخول"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "متابعة بحساب فيسبوك"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "تسجيل الدخول بحساب فيسبوك"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "لا يمكنك تسجيل الدخول إلى التطبيقات حاليًا. يُرجى تسجيل الدخول إلى www.facebook.com واتباع التعليمات الموضحة."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "جديد! أنت المتحكم - اختر المعلومات التي تريد مشاركتها مع التطبيقات."; +"LoginTooltip.Message" = "أنت المتحكم - اختر المعلومات التي تريد مشاركتها مع التطبيقات."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "تسجيل الدخول"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings index 4b6a444..a6682b9 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "লগ ইন করুন"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook এর সাথে চালিয়ে যান"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Facebook -এর সাথে লগ ইন করুন"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "এই সময়ে আপনি অ্যাপসে লগ ইন করতে পারবেন না৷ অনুগ্রহ করে www.facebook.com-এ লগ ইন করুন এবং উল্লিখিত নির্দেশাবলী অনুসরণ করুন৷"; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "নতুন! আপনি নিয়ন্ত্রণে আছেন-অ্যাপসের সাথে আপনি কোন তথ্য ভাগ করতে চাইছেন তা চয়ন করুন৷"; +"LoginTooltip.Message" = "আপনি নিয়ন্ত্রণে আছেন - অ্যাপ্সের সাথে আপনি যে তথ্য শেয়ার করতে চান তা বাছুন৷"; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "লগ ইন করুন"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings index acfd8af..f4ff4fa 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Přihlásit"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Pokračovat přes Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Přihlásit se přes Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Do aplikací se v této chvíli přihlásit nemůžete. Přihlaste se na www. facebook.com a postupujte podle uvedených pokynů."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Novinka! Je jen na vás, které informace chcete s aplikacemi sdílet."; +"LoginTooltip.Message" = "Je jen na vás, které informace chcete s aplikacemi sdílet."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Přihlásit"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings index a697f22..21ccc8d 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Log på"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Fortsæt med Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Log på med Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge på apps på nuværende tidspunkt. Log på www.facebook.com, og følg instruktionerne."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Nyhed! Du har styringen – vælg de oplysninger, som du vil dele med apps."; +"LoginTooltip.Message" = "Du har styringen – vælg de oplysninger, som du vil dele med apps."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Log på"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings index ccd087a..f782584 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Anmelden"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Mit Facebook fortfahren"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Über Facebook anmelden"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Du kannst dich zurzeit nicht bei Apps anmelden. Bitte melde dich unter www.facebook.com an und folge den Anweisungen."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Neu! Es liegt ganz an dir – du kannst dir aussuchen, was du mit Apps teilen möchtest."; +"LoginTooltip.Message" = "Es liegt ganz an dir – du kannst dir aussuchen, was du mit Apps teilen möchtest."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Anmelden"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings index da50762..050455a 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Σύνδεση"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Συνεχίστε με το Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Σύνδεση μέσω Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Προς το παρόν δεν μπορείτε να συνδεθείτε σε εφαρμογές. Συνδεθείτε στο www.facebook.com και ακολουθήστε τις οδηγίες που εμφανίζονται."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Νέο! Έχετε τον έλεγχο - επιλέξτε ποιες πληροφορίες θέλετε να κοινοποιούνται στις εφαρμογές."; +"LoginTooltip.Message" = "Έχετε τον έλεγχο - επιλέξτε ποιες πληροφορίες θέλετε να κοινοποιούνται στις εφαρμογές."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Σύνδεση"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings index 9ad80d1..96c8563 100644 Binary files a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings and b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings differ diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings index acae15d..9755029 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Log in"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continue with Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Log in with Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "You cannot log in to apps at this time. Please log in to www.facebook.com and follow the instructions given."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "New! You're in control – choose what info you want to share with apps."; +"LoginTooltip.Message" = "You're in control – choose what information you want to share with apps."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Log In"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings index 52a5a63..6271c10 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Inicio de sesión"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continuar con Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Iniciar sesión con Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "¡Nuevo! Tú tienes el control: elige qué información quieres compartir con las aplicaciones."; +"LoginTooltip.Message" = "Tú decides: elige qué información quieres compartir con las aplicaciones."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Inicio de sesión"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings index c262711..0bfe194 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Inicio de sesión"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continuar con Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Iniciar sesión con Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "No puedes iniciar sesión en las aplicaciones en este momento. Inicia sesión en www.facebook.com y sigue las instrucciones."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Novedad: Tú eres quien controla y elige la información que quieres compartir con las aplicaciones."; +"LoginTooltip.Message" = "Tú tienes el control: elige la información que quieres compartir con las aplicaciones."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Inicio de sesión"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings index 04d6898..1186461 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Kirjaudu sisään"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Jatka Facebook-tunnuksilla"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Kirjaudu sisään Facebookin avulla"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Et pysty kirjautumaan sovelluksiin tällä hetkellä. Kirjaudu sisään osoitteeseen www.facebook.com ja noudata annettuja ohjeita."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Uutta! Sinä päätät – valitse, mitä haluat jakaa sovellusten kanssa."; +"LoginTooltip.Message" = "Sinä voit valita, mitä tietoja jaat sovelluksille."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Kirjaudu sisään"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings index 24e5a84..e60c3b2 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Mag-log in"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Magatuloy sa Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Mag-log in sa pamamagitan ng Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Hindi ka makakapag-log in sa mga app sa oras na ito. Mangyaring mag-log in sa www.facebook.com at sundin ang mga ibinigay na tagubilin."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Bago! Ikaw ang may kontrol - piliin kung anong impormasyon ang gusto mong ibahagi sa mga app."; +"LoginTooltip.Message" = "Ikaw ang may kontrol - piliin kung anong impormasyon ang gusto mong ibahagi sa mga app."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Mag-log In"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings index 4bb7d40..5995257 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Connexion"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continuer avec Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Connexion avec Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Vous ne pouvez pas vous connecter à des applications pour le moment. Veuillez vous connecter à www.facebook.com et suivre les instructions indiquées."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Nouveau ! Choisissez les informations que vous souhaitez partager avec les applications."; +"LoginTooltip.Message" = "Vous gardez le contrôle. Choisissez les informations que vous souhaitez partager avec les applications."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Connexion"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings index 1b03754..302cce8 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "લૉગ ઇન કરો"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook સાથે ચાલુ રાખો"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "ફેસબુક સાથે લૉગ ઇન કરો"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "તમે આ સમયે એપ્લિકેશન્સમાં લૉગ ઇન કરી શકતાં નથી. કૃપા કરીને www.facebook.com પર લૉગ ઇન કરો અને આપેલા સૂચનોને અનુસરો."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "નવું! તમે નિયંત્રણ કરો છો - તમે એપ્લિકેશન્સ સાથે કઈ માહિતી શેર કરવા માંગો છો તે પસંદ કરો."; +"LoginTooltip.Message" = "તમે નિયંત્રણ કરો છો - તમે એપ્લિકેશન્સ સાથે કઈ માહિતી શેર કરવા માંગો છો તે પસંદ કરો."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "લૉગ ઇન કરો"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings index 4601da6..b515e4e 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "התחבר"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "המשך עם פייסבוק"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "התחבר באמצעות פייסבוק"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "לא ניתן להתחבר לאפליקציות כעת. התחבר ל-www.facebook.com ופעל בהתאם להוראות שיוצגו."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "חדש! אתה מחליט - בחר איזה מידע אתה רוצה לשתף עם האפליקציות."; +"LoginTooltip.Message" = "אתה מחליט - בחר איזה מידע אתה רוצה לשתף עם אפליקציות."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "התחבר"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings index 5904955..b920cb9 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "लॉग इन करें"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook के साथ जारी रखें"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Facebook से लॉग इन करें"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "आप इस समय एप्लिकेशन में लॉग इन नहीं कर सकते. कृपया www.facebook.com में लॉग इन करें और दिए गए निर्देशों का पालन करें."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "नया! आप नियंत्रण में हैं - चुनें कि आप एप्लिकेशन से कौन-सी जानकारी साझा करना चाहते हैं."; +"LoginTooltip.Message" = "आप नियंत्रण में हैं - चुनें कि आप एप्लिकेशन से कौन-सी जानकारी साझा करना चाहते हैं."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "लॉग इन करें"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings index 4b43a21..548dfb9 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Prijavi se"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Nastavite s korištenjem Facebooka"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Prijava putem Facebooka"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "U ovome trenutku prijava u aplikacije nije moguća. Prijavite se na www.facebook.com i slijedite upute."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Novo! Vi odlučujete – odaberite koje informacije želite podijeliti u aplikacijama."; +"LoginTooltip.Message" = "Vi odlučujete – odaberite koje podatke želite dijeliti u aplikacijama."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Prijava"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings index 95e776a..7de57b0 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Bejelentkezés"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Folytatás a Facebookkal"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Bejelentkezés a Facebook használatával"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Jelenleg nem tudsz alkalmazásokba bejelentkezni. Jelentkezz be a www.facebook.com címre, és kövesd az utasításokat."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Újdonság! A döntés a kezedben van: kiválaszthatod, hogy milyen adatokat osztasz meg az alkalmazásokkal."; +"LoginTooltip.Message" = "A döntés a kezedben van: kiválaszthatod, hogy milyen adatokat osztasz meg az alkalmazásokkal."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Bejelentkezés"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings index bd24944..17a15f3 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Masuk"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Lanjutkan dengan Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Masuk menggunakan Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Saat ini Anda tidak dapat masuk ke aplikasi. Masuk ke www.facebook.com dan ikuti petunjuknya."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Baru! Anda memegang kendali - pilih info yang ingin Anda bagikan dengan aplikasi."; +"LoginTooltip.Message" = "Anda memegang kendali - pilih info yang ingin Anda bagikan dengan aplikasi."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Masuk"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings index fe79a00..7223a4e 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Accedi"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continua con Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Accedi con Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Impossibile accedere alle applicazioni al momento. Accedi a www.facebook.com e segui le istruzioni fornite."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Novità! Il controllo è nelle tue mani: scegli quali informazioni condividere con le applicazioni."; +"LoginTooltip.Message" = "Il controllo è nelle tue mani: scegli quali informazioni condividere con le app."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Accedi"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings index 4bac1fa..43faf40 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "ログイン"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebookで続ける"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Facebookでログイン"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "今はアプリにログインできません。www.facebook.comにログインし、表示される説明に従ってください。"; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "新機能!アプリと共有する情報をコントロールできます。"; +"LoginTooltip.Message" = "アプリと共有する情報をコントロールできます。"; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "ログイン"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings index 87765be..f743a27 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "ಲಾಗ್‌ ಇನ್‌"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook ಅನ್ನು ಮುಂದುವರಿಸಿ"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Facebook ಮೂಲಕ ಲಾಗ್‌ ಇನ್‌ ಮಾಡಿ"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "ನೀವು ಈ ಸಮಯದಲ್ಲಿ ಅಪ್ಲಿಕೇಶನ್‌ಗಳಿಗೆ ಲಾಗಿನ್‌ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ. ದಯವಿಟ್ಟು www.facebook.com ಗೆ ಲಾಗಿನ್‌ ಮಾಡಿ ಮತ್ತು ಕೆಳಗೆ ನೀಡಿದ ಸೂಚನೆಗಳನ್ನು ಅನುಸರಿಸಿ."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ಹೊಸ! ನೀವು ನಿಯಂತ್ರಣದಲ್ಲಿರುವಿರಿ - ನೀವು ಅಪ್ಲಿಕೇಶನ್‌ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಹಂಚಿಕೊಳ್ಳಲು ಬಯಸುವ ವಿಷಯವನ್ನು ಆರಿಸಿ."; +"LoginTooltip.Message" = "ನೀವು ನಿಯಂತ್ರಣದಲ್ಲಿರುವಿರಿ - ನೀವು ಅಪ್ಲಿಕೇಶನ್‌ಗಳನ್ನು ಬಳಸಿಕೊಂಡು ಹಂಚಿಕೊಳ್ಳಲು ಬಯಸುವ ವಿಷಯವನ್ನು ಆರಿಸಿ."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "ಲಾಗ್‌ ಇನ್‌"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings index 87f8217..f5d01eb 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "로그인"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook으로 계속"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Facebook으로 로그인"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "현재 앱에 로그인할 수 없습니다. www.facebook.com에 로그인한 뒤 안내를 따라주세요."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "새로운 기능! 이제 앱과 어떤 정보를 공유할지 자유롭게 선택할 수 있습니다."; +"LoginTooltip.Message" = "원하는 정보를 선택하여 앱에 공유할 수 있습니다."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "로그인"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings index 4cad789..7357b1d 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "ലോഗിൻ ചെയ്യുക"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook ഉപയോഗിച്ച് തുടരുക"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Facebook ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "നിങ്ങൾക്ക് ഈ സമയം ആപ്ലിക്കേഷനുകളിലേക്ക് ലോഗിൻ ചെയ്യാനാവില്ല. www.facebook.com എന്നതിലേക്ക് ലോഗിൻ ചെയ്‌ത് തന്നിരിക്കുന്ന നിർദ്ദേശങ്ങൾ പാലിക്കുക."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "പുതിയത്! നിങ്ങൾ നിയന്ത്രണത്തിലാണ് - നിങ്ങൾക്ക് ആപ്ലിക്കേഷനുകളുമായി പങ്കിടേണ്ടതുണ്ടെങ്കിൽ തിരഞ്ഞെടുക്കുക."; +"LoginTooltip.Message" = "നിങ്ങളുടെ നിയന്ത്രണത്തിലാണ് - നിങ്ങൾക്ക് ആപ്‌സുമായി ഏതെല്ലാം വിവരങ്ങൾ പങ്കിടണമെന്ന് തിരഞ്ഞെടുക്കുക."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "ലോഗിൻ ചെയ്യുക"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings index ad45d34..1d1d742 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "लॉग इन करा"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook सह चालू ठेवा"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "फेसबुकसह लॉग इन करा"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "आपण यावेळी अनुप्रयोगांवर लॉग इन करू शकत नाही. कृपया www.facebook.com वर लॉग इन करा आणि दिलेल्या सूचनांचे अनुसरण करा."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "नवीन! आपण नियंत्रणात आहात - आपण कोणती माहिती अनुप्रयोगांसह शेअर करू इच्छिता ते निवडा."; +"LoginTooltip.Message" = "तुम्ही नियंत्रणात आहात - तुम्ही कोणती माहिती अॅपसह सामायिक करू इच्छिता ते निवडा."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "लॉग इन करा"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings index 1c28794..209d15d 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings @@ -34,6 +34,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Log masuk"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Teruskan dengan Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Log masuk dengan Facebook"; @@ -59,7 +62,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Anda tidak boleh log masuk ke aplikasi pada masa ini. Sila log masuk ke www.facebook.com dan ikuti arahan yang diberi."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Baru! Anda yang mengawal - pilih maklumat yang anda ingin kongsi dengan aplikasi."; +"LoginTooltip.Message" = "Anda yang mengawal - pilih maklumat yang anda ingin kongsi dengan apl."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Log Masuk"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings index 5874890..c278cc1 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Logg inn"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Fortsett med Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Logg inn med Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Du kan ikke logge deg inn på apper for øyeblikket. Logg deg inn på www.facebook.com, og følg instruksjonene."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Nyhet! Du bestemmer – velg hvilke opplysninger du vil dele med appene."; +"LoginTooltip.Message" = "Du bestemmer – velg hvilke opplysninger du vil dele med appene."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Logg inn"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings index dd5f8d9..ad1a565 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Aanmelden"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Doorgaan met Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Aanmelden met Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Je kunt je momenteel niet aanmelden bij apps. Meld je aan bij www.facebook.com en volg de instructies."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Nieuw! Jij hebt de controle. Kies welke informatie je met apps wilt delen."; +"LoginTooltip.Message" = "Jij hebt de controle. Kies welke informatie je met apps wilt delen."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Aanmelden"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings index 43c1bda..878b4a1 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "ਲੌਗ ਇਨ ਕਰੋ"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook ਦੇ ਨਾਲ ਜਾਰੀ ਰੱਖੋ"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Facebook ਦੇ ਨਾਲ ਲੌਗ ਇਨ ਕਰੋ"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "ਤੁਸੀਂ ਇਸ ਸਮੇਂ ਐਪ ਵਿੱਚ ਲੌਗ ਇਨ ਨਹੀਂ ਕਰ ਸਕਦੇ ਹੋ। ਕਿਰਪਾ ਕਰਕੇ www.facebook.com ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ ਅਤੇ ਹੇਠਾਂ ਦਿੱਤੇ ਨਿਰਦੇਸ਼ਾਂ ਦਾ ਪਾਲਣ ਕਰੋ।"; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ਨਵਾਂ! ਤੁਸੀਂ ਨਿਯੰਤਰਣ ਵਿੱਚ ਹੋ - ਉਹ ਜਾਣਕਾਰੀ ਚੁਣੋ ਜੋ ਤੁਸੀਂ ਐਪਸ ਦੇ ਨਾਲ ਸਾਂਝੀ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ।"; +"LoginTooltip.Message" = "ਤੁ\ਸੀਂ ਨਿਯੰਤਰਣ ਵਿੱਚ ਹੋ - ਉਹ ਜਾਣਕਾਰੀ ਚੁਣੋ ਜੋ ਤੁਸੀਂ ਐਪਸ ਦੇ ਨਾਲ ਸਾਂਝੀ ਕਰਨੀ ਚਾਹੁੰਦੇ ਹੋ।"; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "ਲੌਗ ਇਨ ਕਰੋ"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings index 3649717..b3bbf15 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Zaloguj się"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Kontynuuj za pośrednictwem Facebooka"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Zaloguj się przez Facebooka"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Brak możliwości logowania się do aplikacji. Zaloguj się przez stronę www.facebook.com i postępuj zgodnie ze wskazówkami."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Nowość! Masz pełną kontrolę – określ, jakie informacje chcesz udostępniać aplikacjom."; +"LoginTooltip.Message" = "Masz pełną kontrolę – określ, jakie informacje chcesz udostępniać aplikacjom."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Zaloguj się"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings index 396bc1d..27b70b0 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Entrar"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continuar com o Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Entrar com o Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Não é possível entrar em aplicativos neste momento. Entre no site www.facebook.com e siga as instruções fornecidas."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Novidade! Você está no controle - escolha quais informações quer compartilhar com os aplicativos."; +"LoginTooltip.Message" = "Você é quem controla — escolha quais informações você quer compartilhar com os aplicativos."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Entrar"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings index 9141a31..eb84fdb 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Iniciar sessão"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Continuar com o Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Iniciar sessão com o Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Não podes iniciar sessão em aplicações neste momento. Inicia sessão em www.facebook.com e segue as instruções indicadas."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Novidade! Tens o controlo: escolhe a informação que pretendes partilhar com as aplicações."; +"LoginTooltip.Message" = "Tens o controlo: escolhe a informação que pretendes partilhar com as apps."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Iniciar sessão"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings index 41691cf..0712971 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Вход"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Продолжить с Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Вход через Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Сейчас нельзя войти в приложения. Войдите на сайт www.facebook.com и следуйте инструкциям."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Новинка! У вас все под контролем — выбирайте, какой информацией вы хотите поделиться с приложениями."; +"LoginTooltip.Message" = "Вы сами выбираете, какой информацией поделиться с приложениями."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Вход в систему"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings index 85c2d47..44b2a35 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Prihlásiť sa"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Pokračovať s Facebookom"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Prihlásiť sa cez Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Momentálne sa nemôžete prihlásiť do aplikácií. Prihláste sa na stránke www.facebook.com a postupujte podľa pokynov."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Novinka! Máte to pod kontrolou: vyberte, ktoré informácie chcete zdieľať s aplikáciami."; +"LoginTooltip.Message" = "Máte to pod kontrolou: vyberte, ktoré informácie chcete zdieľať s aplikáciami."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Prihlásenie sa"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings index b84f5ff..39be6a9 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Logga in"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Fortsätt med Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Logga in med Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Du kan inte logga in på appar för närvarande. Logga in på www.facebook.com och följ instruktionerna."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Nyhet! Du bestämmer – välj vilken info du vill dela med appar."; +"LoginTooltip.Message" = "Du bestämmer – välj vilken info du vill dela med appar."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Logga in"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings index 8838af2..dd3020c 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "உள்நுழைவு"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook இல் தொடரவும்"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Facebook மூலம் உள்நுழையவும்"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "இப்போது பயன்பாடுகளில் உள்நுழைய முடியாது. www.facebook.com இல் உள்நுழைந்து, வழங்கப்பட்டுள்ள வழிமுறைகளைப் பின்பற்றவும்."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "புதிது! உங்கள் கட்டுப்பாட்டில் இருப்பதால், பயன்பாடுகளுடன் பகிர வேண்டிய தகவலைத் தேர்வுசெய்யவும்."; +"LoginTooltip.Message" = "பயன்பாடுகளில் எந்தத் தகவலைப் பகிர விரும்புகிறீர்கள் என்பதை நீங்கள் கட்டுப்படுத்தலாம்."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "உள்நுழைவு"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings index 6dd1dad..e3a5085 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "లాగిన్ చేయి"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebookతో కొనసాగించండి"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Facebookతో లాగిన్ చేయి"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "ప్రస్తుతం మీరు అప్లికేషన్‌లకు లాగిన్ చేయలేరు. దయచేసి www.facebook.comకి లాగిన్ చేసి, అందించిన సూచనలను అనుసరించండి."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "సరికొత్తది! మీకు నియంత్రణ ఉంది - మీరు అప్లికేషన్‌లతో ఏ సమాచారాన్ని భాగస్వామ్యం చేయాలనుకుంటున్నారో ఎంచుకోండి."; +"LoginTooltip.Message" = "మీకు నియంత్రణ ఉంది - మీరు అనువర్తనాలతో భాగస్వామ్యం చేయాలనుకునే సమాచారాన్ని ఎంచుకోండి."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "లాగిన్ చేయండి"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings index f3661ed..7d6b4f2 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "เข้าสู่ระบบ"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "ดำเนินการต่อด้วย Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "เข้าสู่ระบบด้วย Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "คุณไม่สามารถเข้าสู่ระบบของแอพได้ในตอนนี้ โปรดเข้าสู่ระบบที่ www.facebook.com และทำตามคำแนะนำที่ปรากฏ"; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "ใหม่! คุณเป็นฝ่ายควบคุม โปรดเลือกสิ่งที่คุณต้องการแชร์ด้วยแอพ"; +"LoginTooltip.Message" = "คุณเป็นฝ่ายควบคุม โปรดเลือกข้อมูลที่คุณต้องการแชร์ด้วยแอพ"; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "เข้าสู่ระบบ"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings index 0b5f5e2..a09c84c 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Giriş yap"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Facebook ile Devam Et"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Facebook ile giriş yap"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Şu an için uygulamalara giriş yapamazsın. Lütfen www.facebook.com adresine giriş yap ve verilen talimatları izle."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Yeni! Kontrol sende. Uygulamalarla paylaşmak istediğin bilgileri seç."; +"LoginTooltip.Message" = "Kontrol sende. Uygulamalarla paylaşmak istediğin bilgileri seç."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Giriş Yap"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings index ad62595..99ede36 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "Đăng nhập"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "Tiếp tục với Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "Đăng nhập bằng Facebook"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "Bạn không thể đăng nhập vào các ứng dụng lúc này. Vui lòng đăng nhập vào www.facebook.com và làm theo hướng dẫn được cung cấp."; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "Mới! Bạn đang có quyền kiểm soát - hãy chọn thông tin bạn muốn chia sẻ với các ứng dụng."; +"LoginTooltip.Message" = "Bạn đang có quyền kiểm soát - hãy chọn thông tin bạn muốn chia sẻ với ứng dụng."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Đăng nhập"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings index c290864..673fa77 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "登录"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "继续使用 Facebook 登录"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "使用 Facebook 登录"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "您此时不能登录应用。请登录 www.facebook.com,并按照提供的说明操作。"; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "新增功能!一切任您掌控 — 选择您想通过应用分享的信息。"; +"LoginTooltip.Message" = "一切任您掌控 — 选择您想通过应用分享的信息。"; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "登录"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings index 5c96cd4..66819f3 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "登入"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "繼續使用 Facebook"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "使用 Facebook 登入"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "您現時無法登入應用程式。請登入 www.facebook.com 並依據指示操作。"; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "最新消息!控制權在您 - 選擇您要與應用程式分享的資訊。"; +"LoginTooltip.Message" = "控制權在您 - 選擇您要與應用程式分享的資訊。"; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "登入"; diff --git a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings index fdc02d8..8e64fd0 100644 --- a/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings +++ b/Example/Pods/FBSDKCoreKit/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings @@ -37,6 +37,9 @@ /* The short label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogIn" = "登入"; +/* The long label for the FBSDKLoginButton when the user is currently logged out */ +"LoginButton.LogInContinue" = "繼續使用 Facebook 帳號"; + /* The long label for the FBSDKLoginButton when the user is currently logged out */ "LoginButton.LogInLong" = "使用 Facebook 登入"; @@ -62,7 +65,7 @@ "LoginError.SystemAccount.UserCheckpointed" = "您目前無法登入應用程式。請登入 www.facebook.com,然後按照指示操作。"; /* The message of the FBSDKLoginTooltipView */ -"LoginTooltip.Message" = "新消息!您已成功登入,請選擇要與應用程式分享的資訊。"; +"LoginTooltip.Message" = "您可以全盤掌控!選擇您想和應用程式分享的資訊內容。"; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "登入"; diff --git a/Example/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.m b/Example/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.m index fe78c33..fb31469 100644 --- a/Example/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.m +++ b/Example/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginButton.m @@ -21,6 +21,12 @@ #import "FBSDKCoreKit+Internal.h" #import "FBSDKLoginTooltipView.h" +static const CGFloat kFBLogoSize = 16.0; +static const CGFloat kFBLogoLeftMargin = 6.0; +static const CGFloat kButtonHeight = 28.0; +static const CGFloat kRightMargin = 8.0; +static const CGFloat kPaddingBetweenLogoTitle = 8.0; + @interface FBSDKLoginButton() @end @@ -61,6 +67,16 @@ _loginManager.loginBehavior = loginBehavior; } +- (UIFont *)defaultFont +{ + return [UIFont systemFontOfSize:13]; +} + +- (UIColor *)backgroundColor +{ + return [UIColor colorWithRed:66.0/255.0 green:103.0/255.0 blue:178.0/255.0 alpha:1.0]; +} + #pragma mark - UIView - (void)didMoveToWindow @@ -76,6 +92,25 @@ #pragma mark - Layout +- (CGRect)imageRectForContentRect:(CGRect)contentRect +{ + CGFloat centerY = CGRectGetMidY(contentRect); + CGFloat y = centerY - (kFBLogoSize / 2.0); + return CGRectMake(kFBLogoLeftMargin, y, kFBLogoSize, kFBLogoSize); +} + +- (CGRect)titleRectForContentRect:(CGRect)contentRect +{ + if (self.hidden || CGRectIsEmpty(self.bounds)) { + return CGRectZero; + } + CGRect imageRect = [self imageRectForContentRect:contentRect]; + CGFloat titleX = CGRectGetMaxX(imageRect) + kPaddingBetweenLogoTitle; + CGRect titleRect = CGRectMake(titleX, 0, CGRectGetWidth(contentRect) - titleX - kRightMargin, CGRectGetHeight(contentRect)); + + return titleRect; +} + - (void)layoutSubviews { CGSize size = self.bounds.size; @@ -95,12 +130,17 @@ if ([self isHidden]) { return CGSizeZero; } - CGSize selectedSize = [self sizeThatFits:size title:[self _logOutTitle]]; - CGSize normalSize = [self sizeThatFits:CGSizeMake(CGFLOAT_MAX, size.height) title:[self _longLogInTitle]]; + UIFont *font = self.titleLabel.font; + + CGSize selectedSize = FBSDKTextSize([self _logOutTitle], font, size, self.titleLabel.lineBreakMode); + CGSize normalSize = FBSDKTextSize([self _longLogInTitle], font, size, self.titleLabel.lineBreakMode); if (normalSize.width > size.width) { - return normalSize = [self sizeThatFits:size title:[self _shortLogInTitle]]; + normalSize = FBSDKTextSize([self _shortLogInTitle], font, size, self.titleLabel.lineBreakMode); } - return CGSizeMake(MAX(normalSize.width, selectedSize.width), MAX(normalSize.height, selectedSize.height)); + + CGFloat titleWidth = MAX(normalSize.width, selectedSize.width); + CGFloat buttonWidth = kFBLogoLeftMargin + kFBLogoSize + kPaddingBetweenLogoTitle + titleWidth + kRightMargin; + return CGSizeMake(buttonWidth, kButtonHeight); } #pragma mark - UIActionSheetDelegate @@ -144,14 +184,20 @@ [self configureWithIcon:nil title:logInTitle - backgroundColor:[super defaultBackgroundColor] + backgroundColor:[self backgroundColor] highlightedColor:nil selectedTitle:logOutTitle selectedIcon:nil - selectedColor:[super defaultBackgroundColor] + selectedColor:[self backgroundColor] selectedHighlightedColor:nil]; self.titleLabel.textAlignment = NSTextAlignmentCenter; - + [self addConstraint:[NSLayoutConstraint constraintWithItem:self + attribute:NSLayoutAttributeHeight + relatedBy:NSLayoutRelationEqual + toItem:nil + attribute:NSLayoutAttributeNotAnAttribute + multiplier:1 + constant:28]]; [self _updateContent]; [self addTarget:self action:@selector(_buttonPressed:) forControlEvents:UIControlEventTouchUpInside]; @@ -264,8 +310,8 @@ - (NSString *)_longLogInTitle { - return NSLocalizedStringWithDefaultValue(@"LoginButton.LogInLong", @"FacebookSDK", [FBSDKInternalUtility bundleForStrings], - @"Log in with Facebook", + return NSLocalizedStringWithDefaultValue(@"LoginButton.LogInContinue", @"FacebookSDK", [FBSDKInternalUtility bundleForStrings], + @"Continue with Facebook", @"The long label for the FBSDKLoginButton when the user is currently logged out"); } diff --git a/Example/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.m b/Example/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.m index c7066f8..f0acd32 100644 --- a/Example/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.m +++ b/Example/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginManager.m @@ -83,10 +83,9 @@ typedef NS_ENUM(NSInteger, FBSDKLoginManagerState) { [self assertPermissions:permissions]; NSSet *permissionSet = [NSSet setWithArray:permissions]; if (![FBSDKInternalUtility areAllPermissionsReadPermissions:permissionSet]) { - [[NSException exceptionWithName:NSInvalidArgumentException - reason:@"Publish or manage permissions are not permitted to be requested with read permissions." - userInfo:nil] - raise]; + [self raiseLoginException:[NSException exceptionWithName:NSInvalidArgumentException + reason:@"Publish or manage permissions are not permitted to be requested with read permissions." + userInfo:nil]]; } self.fromViewController = fromViewController; [self logInWithPermissions:permissionSet handler:handler]; @@ -109,10 +108,9 @@ typedef NS_ENUM(NSInteger, FBSDKLoginManagerState) { [self assertPermissions:permissions]; NSSet *permissionSet = [NSSet setWithArray:permissions]; if (![FBSDKInternalUtility areAllPermissionsPublishPermissions:permissionSet]) { - [[NSException exceptionWithName:NSInvalidArgumentException - reason:@"Read permissions are not permitted to be requested with publish or manage permissions." - userInfo:nil] - raise]; + [self raiseLoginException:[NSException exceptionWithName:NSInvalidArgumentException + reason:@"Read permissions are not permitted to be requested with publish or manage permissions." + userInfo:nil]]; } self.fromViewController = fromViewController; [self logInWithPermissions:permissionSet handler:handler]; @@ -139,7 +137,14 @@ typedef NS_ENUM(NSInteger, FBSDKLoginManagerState) { #pragma mark - Private -- (void)handleImplicitCancelOfLogIn { +- (void)raiseLoginException:(NSException *)exception +{ + _state = FBSDKLoginManagerStateIdle; + [exception raise]; +} + +- (void)handleImplicitCancelOfLogIn +{ FBSDKLoginManagerLoginResult *result = [[FBSDKLoginManagerLoginResult alloc] initWithToken:nil isCancelled:YES grantedPermissions:nil @@ -177,16 +182,14 @@ typedef NS_ENUM(NSInteger, FBSDKLoginManagerState) { { for (NSString *permission in permissions) { if (![permission isKindOfClass:[NSString class]]) { - [[NSException exceptionWithName:NSInvalidArgumentException - reason:@"Permissions must be string values." - userInfo:nil] - raise]; + [self raiseLoginException:[NSException exceptionWithName:NSInvalidArgumentException + reason:@"Permissions must be string values." + userInfo:nil]]; } if ([permission rangeOfString:@","].location != NSNotFound) { - [[NSException exceptionWithName:NSInvalidArgumentException - reason:@"Permissions should each be specified in separate string values in the array." - userInfo:nil] - raise]; + [self raiseLoginException:[NSException exceptionWithName:NSInvalidArgumentException + reason:@"Permissions should each be specified in separate string values in the array." + userInfo:nil]]; } } } diff --git a/Example/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.m b/Example/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.m index 59d4c17..e1a17d4 100644 --- a/Example/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.m +++ b/Example/Pods/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginKit/FBSDKLoginTooltipView.m @@ -29,7 +29,7 @@ { NSString *tooltipMessage = NSLocalizedStringWithDefaultValue(@"LoginTooltip.Message", @"FacebookSDK", [FBSDKInternalUtility bundleForStrings], - @"New! You're in control - choose what info you want to share with apps.", + @"You're in control - choose what info you want to share with apps.", @"The message of the FBSDKLoginTooltipView"); return [super initWithTagline:nil message:tooltipMessage colorStyle:FBSDKTooltipColorStyleFriendlyBlue]; } diff --git a/Example/Pods/Local Podspecs/PNObject.podspec.json b/Example/Pods/Local Podspecs/PNObject.podspec.json index f7f4a44..223dcbf 100644 --- a/Example/Pods/Local Podspecs/PNObject.podspec.json +++ b/Example/Pods/Local Podspecs/PNObject.podspec.json @@ -1,6 +1,6 @@ { "name": "PNObject", - "version": "1.2.1", + "version": "1.2.2", "summary": "PNObject is a simple replica of the more complex ParseObject", "homepage": "https://github.com/giuseppenucifora/PNObject", "license": { @@ -12,7 +12,7 @@ }, "source": { "git": "https://github.com/giuseppenucifora/PNObject.git", - "tag": "1.2.1" + "tag": "1.2.2" }, "platforms": { "ios": "8.0" diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index f3b7084..eaf4b80 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -26,18 +26,18 @@ PODS: - DJLocalization/Core (= 1.2.2) - DJLocalization/Core (1.2.2) - Expecta (1.0.5) - - FBSDKCoreKit (4.18.0): + - FBSDKCoreKit (4.19.0): - Bolts (~> 1.7) - - FBSDKLoginKit (4.18.0): + - FBSDKLoginKit (4.19.0): - FBSDKCoreKit - - FBSDKShareKit (4.18.0): + - FBSDKShareKit (4.19.0): - FBSDKCoreKit - NSDataAES (0.2.2) - NSDate_Utils (1.0.5) - NSString-Helper (1.0.5) - nv-ios-http-status (0.0.1) - PEAR-FileManager-iOS (1.3.1) - - PNObject (1.2.1): + - PNObject (1.2.2): - AFNetworking - CodFis-Helper - DDDKeychainWrapper @@ -76,15 +76,15 @@ SPEC CHECKSUMS: DDDKeychainWrapper: e681a4daba6448786fa83b4941f58102a33b1897 DJLocalization: 0c84029af375647d4104a42ae36be87194c46c47 Expecta: e1c022fcd33910b6be89c291d2775b3fe27a89fe - FBSDKCoreKit: 15fef8804a4629f98c6f4e55e81a76c9d725d85e - FBSDKLoginKit: 6773073e970b2b15fb12e451ce7f11da0532b880 - FBSDKShareKit: 0b8d6cc3f103c75297eb3c62caec284a2ccf1b9e + FBSDKCoreKit: 894b2b6eda6a4c8c4204e92e59cc355709ef045c + FBSDKLoginKit: 83ca4d8f12a2022570af9fd6aacf27f6b425b99f + FBSDKShareKit: 5953758366278430dc322d5cdc906db361ed7f81 NSDataAES: 967ea3337476a80e9838a533c25d570a06855ed0 NSDate_Utils: b0ab72ccec6df25297766bd64b0cd0c124521a45 NSString-Helper: 459e1b6a62b3bf7db10f01b0d102548608e945c4 nv-ios-http-status: b6c2b5fc8656cc19e0d3000dadce2080b99d0e2f PEAR-FileManager-iOS: 3bc403f68a53483f5629aa822f4649e40275c4d3 - PNObject: 6a528830b3769a9675bcfa90bd9f09cfa1cef9f2 + PNObject: 156e78eee9d0e3a10f059102e66d8c06a1296afe PureLayout: 4d550abe49a94f24c2808b9b95db9131685fe4cd RZDataBinding: 6981e90ddaae2f5e02028323b1043f8c31013109 Specta: ac94d110b865115fe60ff2c6d7281053c6f8e8a2 @@ -93,4 +93,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: db08ccdd0a68e33d4a1cceb1843643fbab2f2a8e -COCOAPODS: 1.2.0.beta.3 +COCOAPODS: 1.2.0.rc.1 diff --git a/PNObject.podspec b/PNObject.podspec index 47d98b2..5a9c6cd 100644 --- a/PNObject.podspec +++ b/PNObject.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.name = 'PNObject' -s.version = '1.2.1' +s.version = '1.2.2' s.summary = 'PNObject is a simple replica of the more complex ParseObject' diff --git a/PNObject/Classes/PNClasses/PNInstallation.m b/PNObject/Classes/PNClasses/PNInstallation.m index ec7ad31..a40fafd 100644 --- a/PNObject/Classes/PNClasses/PNInstallation.m +++ b/PNObject/Classes/PNClasses/PNInstallation.m @@ -287,12 +287,12 @@ static bool isFirstAccess = YES; [[self class] POSTWithEndpointAction:@"device/remove-user" parameters:[self removeDeviceFormObject] progress:uploadProgress success:^(NSURLSessionDataTask * _Nullable task, NSDictionary * _Nullable responseObject) { - NSLog(@"response %@",responseObject); + NSLogDebug(@"response %@",responseObject); if(success){ success(YES); } } failure:^(NSURLSessionDataTask * _Nullable task, NSError * _Nonnull error) { - NSLog(@"error : %@",error); + NSLogDebug(@"error : %@",error); if (failure) { failure(error); } diff --git a/PNObject/Classes/PNClasses/PNUser.m b/PNObject/Classes/PNClasses/PNUser.m index 3af457b..b16a58b 100644 --- a/PNObject/Classes/PNClasses/PNUser.m +++ b/PNObject/Classes/PNClasses/PNUser.m @@ -189,7 +189,7 @@ static bool isFirstAccess = YES; [[self class] POSTWithEndpointAction:@"registration/register" parameters:[self JSONFormObject] progress:uploadProgress success:^(NSURLSessionDataTask * _Nullable task, NSDictionary * _Nullable responseObject) { - NSLog(@"response %@",responseObject); + NSLogDebug(@"response %@",responseObject); if(success){ [[[self class] currentUser] saveLocally]; success([[self class] currentUser]); @@ -266,18 +266,18 @@ static bool isFirstAccess = YES; FBSDKLoginManager *login = [[FBSDKLoginManager alloc] init]; [login logInWithReadPermissions: @[@"public_profile",@"email",@"user_birthday"] fromViewController:viewController handler:^(FBSDKLoginManagerLoginResult *result, NSError *error) { if (error) { - NSLog(@"Process error"); + NSLogDebug(@"Process error"); if (failure) { failure(error); } } else if (result.isCancelled) { - NSLog(@"Cancelled"); + NSLogDebug(@"Cancelled"); if (failure) { NSError *error = [NSError errorWithDomain:NSLocalizedString(@"Request cancelled", @"") code:kHTTPStatusCodeMethodNotAllowed userInfo:nil]; failure(error); } } else { - NSLog(@"Logged in"); + NSLogDebug(@"Logged in"); [self socialLoginFromViewController:viewController blockSuccess:success failure:failure]; } }]; @@ -455,10 +455,10 @@ static bool isFirstAccess = YES; NSError* error = nil; NSData* data = [NSData dataWithContentsOfURL:_profileImageUrl options:NSDataReadingUncached error:&error]; if (error) { - NSLog(@"%@", [error localizedDescription]); + NSLogDebug(@"%@", [error localizedDescription]); return [UIImage imageNamed:@"userProfileAvatar"]; } else { - NSLog(@"Data has loaded successfully."); + NSLogDebug(@"Data has loaded successfully."); return [UIImage imageWithData:data]; } } diff --git a/PNObject/Classes/PNObject+Protected.m b/PNObject/Classes/PNObject+Protected.m index 308a5da..d50af82 100644 --- a/PNObject/Classes/PNObject+Protected.m +++ b/PNObject/Classes/PNObject+Protected.m @@ -176,8 +176,7 @@ [self setValue:val forKey:propertyName]; } else { - NSString *errorStr = [NSString stringWithFormat:@"Property '%@' could not be assigned any value.", propertyName]; - NSLogDebug(@"%@",errorStr); + NSLogDebug(@"%@",[NSString stringWithFormat:@"Property '%@' could not be assigned any value.", propertyName]); } })(); } @@ -268,8 +267,7 @@ [self setValue:@"" forKey:propertyName]; } else { - NSString *errorStr = [NSString stringWithFormat:@"Property '%@' could not be assigned any value.", propertyName]; - NSLogDebug(@"%@",errorStr); + NSLogDebug(@"%@",[NSString stringWithFormat:@"Property '%@' could not be assigned any value.", propertyName]); } })(); } @@ -419,8 +417,7 @@ } else { - NSString *errorStr = [NSString stringWithFormat:@"Property '%@' could not be assigned any value.", property]; - NSLogDebug(@"%@",errorStr); + NSLogDebug(@"%@",[NSString stringWithFormat:@"Property '%@' could not be assigned any value.", property]); } })(); } diff --git a/PNObject/Classes/PNObject.m b/PNObject/Classes/PNObject.m index f74e736..4d0ed31 100644 --- a/PNObject/Classes/PNObject.m +++ b/PNObject/Classes/PNObject.m @@ -227,7 +227,7 @@ NSString * const PNObjectMappingSelector = @"selector"; type = [properties valueForKey:propertyName]; - NSLog(@"PropertyName MappedJsonType PropertyType: %@ - %@ - %@",propertyName,mappedJSONType,type); + NSLogDebug(@"PropertyName MappedJsonType PropertyType: %@ - %@ - %@",propertyName,mappedJSONType,type); id value; @@ -343,7 +343,7 @@ NSString * const PNObjectMappingSelector = @"selector"; } @finally { - //NSLog(@"PropertyName PropertyType Value: %@ - %@ - %@",propertyName,propertyType,value); + //NSLogDebug(@"PropertyName PropertyType Value: %@ - %@ - %@",propertyName,propertyType,value); } } @@ -374,7 +374,7 @@ NSString * const PNObjectMappingSelector = @"selector"; mappedJSONType = [properties valueForKey:propertyName]; } - NSLog(@"PropertyName PropertyType: %@ - %@",propertyName,mappedJSONType); + NSLogDebug(@"PropertyName PropertyType: %@ - %@",propertyName,mappedJSONType); id value; @@ -502,7 +502,7 @@ NSString * const PNObjectMappingSelector = @"selector"; } @finally { - //NSLog(@"PropertyName PropertyType Value: %@ - %@ - %@",propertyName,propertyType,value); + //NSLogDebug(@"PropertyName PropertyType Value: %@ - %@ - %@",propertyName,propertyType,value); } } return JSONFormObject; diff --git a/PNObject/Classes/PNObjectConstants.h b/PNObject/Classes/PNObjectConstants.h index 5b20e56..075d5d6 100644 --- a/PNObject/Classes/PNObjectConstants.h +++ b/PNObject/Classes/PNObjectConstants.h @@ -18,8 +18,6 @@ #pragma mark NSLogDebug Macro -#define FORCE_NO_LOG 0 - #if defined(FORCE_NO_LOG) && FORCE_NO_LOG == 0 #define NSLogDebug(format, ...) NSLog(@"<%s:%d> %s, " format, strrchr("/" __FILE__, '/') + 1, __LINE__, __PRETTY_FUNCTION__, ## __VA_ARGS__) #else