diff --git a/.gitignore b/.gitignore index 86a2b5134a..f6c0bf3141 100644 --- a/.gitignore +++ b/.gitignore @@ -23,6 +23,7 @@ test/UnitTest/UnitTest.xcodeproj/*.pbxuser test/UnitTest/UnitTest.xcodeproj/*.mode* test/UnitTest/build/ project.xcworkspace +ios-sdk.xcodeproj xcuserdata .arcbuildbootstrap TestAppIdAndSecret.xcconfig diff --git a/.gitmodules b/.gitmodules index 39340bb08a..da768c6f1c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,24 +1,25 @@ [submodule "vendor/OHHTTPStubs"] - path = vendor/OHHTTPStubs - url = https://github.com/AliSoftware/OHHTTPStubs.git + path = vendor/OHHTTPStubs + url = https://github.com/AliSoftware/OHHTTPStubs.git [submodule "vendor/OCMock"] - path = vendor/OCMock - url = https://github.com/erikdoe/ocmock + path = vendor/OCMock + url = https://github.com/erikdoe/ocmock [submodule "vendor/appledoc"] - path = vendor/appledoc - url = https://github.com/tomaz/appledoc.git + path = vendor/appledoc + url = https://github.com/tomaz/appledoc.git [submodule "Bolts-IOS"] - path = Bolts-IOS - url = https://github.com/BoltsFramework/Bolts-iOS.git + path = Bolts-IOS + url = https://github.com/BoltsFramework/Bolts-iOS.git [submodule "vendor/ios-snapshot-test-case"] - path = vendor/ios-snapshot-test-case - url = https://github.com/facebook/ios-snapshot-test-case.git + path = vendor/ios-snapshot-test-case + url = https://github.com/facebook/ios-snapshot-test-case.git [submodule "vendor/xctool"] - path = vendor/xctool - url = https://github.com/facebook/xctool.git + path = vendor/xctool + url = https://github.com/facebook/xctool.git [submodule "FBNotifications"] - path = FBNotifications - url = https://github.com/facebook/FBNotifications.git + path = FBNotifications + url = https://github.com/facebook/FBNotifications.git [submodule "vendor/FBTweak"] - path = vendor/FBTweak - url = https://github.com/facebook/Tweaks.git + path = vendor/FBTweak + url = https://github.com/facebook/Tweaks.git + diff --git a/Configurations/Version.xcconfig b/Configurations/Version.xcconfig index a924236f39..6ca3cc7eb7 100644 --- a/Configurations/Version.xcconfig +++ b/Configurations/Version.xcconfig @@ -17,6 +17,6 @@ // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // The versions for FBSDK and Messenger SDK. -FBSDK_PROJECT_VERSION=4.19.0 +FBSDK_PROJECT_VERSION=4.20.0 MNSDK_PROJECT_VERSION=TODO_SUPPORT_MNSDK diff --git a/FBSDKCoreKit.podspec b/FBSDKCoreKit.podspec index 00daebf824..154030478f 100644 --- a/FBSDKCoreKit.podspec +++ b/FBSDKCoreKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = "FBSDKCoreKit" - s.version = "4.19.0" + s.version = "4.20.0" s.summary = "Official Facebook SDK for iOS to access Facebook Platform's core features" s.description = <<-DESC @@ -22,7 +22,7 @@ Pod::Spec.new do |s| s.tvos.deployment_target = '9.0' s.source = { :git => "https://github.com/facebook/facebook-ios-sdk.git", - :tag => "sdk-version-4.19.0" + :tag => "sdk-version-4.20.0" } s.ios.weak_frameworks = 'Accounts', 'CoreLocation', 'Social', 'Security', 'QuartzCore', 'CoreGraphics', 'UIKit', 'Foundation', 'AudioToolbox' diff --git a/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h b/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h index 1608efafb1..c35a52615b 100644 --- a/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h +++ b/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.h @@ -405,11 +405,11 @@ FBSDK_EXTERN NSString *const FBSDKAppEventParameterValueNo; */ /** - Sets a device token to register the current application installation for push notifications. + Sets and sends device token to register the current application for push notifications. - Sets a device token from `NSData` representation that you get from `UIApplicationDelegate.-application:didRegisterForRemoteNotificationsWithDeviceToken:`. + Sets and sends a device token from `NSData` representation that you get from `UIApplicationDelegate.-application:didRegisterForRemoteNotificationsWithDeviceToken:`. - Parameter deviceToken: Device token data. */ diff --git a/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.m b/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.m index a0d7e3a18b..dcdf30db1f 100644 --- a/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.m +++ b/FBSDKCoreKit/FBSDKCoreKit/FBSDKAppEvents.m @@ -47,7 +47,7 @@ NSString *const FBSDKAppEventNameSearched = @"fb_mobile_search"; NSString *const FBSDKAppEventNameRated = @"fb_mobile_rate"; NSString *const FBSDKAppEventNameCompletedTutorial = @"fb_mobile_tutorial_completion"; -NSString *const FBSDKAppEventParameterLaunchSource = @"fb_mobile_launch_source"; +NSString *const FBSDKAppEventParameterLaunchSource = @"fb_mobile_launch_source"; // Ecommerce related NSString *const FBSDKAppEventNameAddedToCart = @"fb_mobile_add_to_cart"; @@ -185,9 +185,11 @@ // // Push Notifications +// // Activities Endpoint Parameter static NSString *const FBSDKActivitesParameterPushDeviceToken = @"device_token"; -// Event Name +// Event Names +static NSString *const FBSDKAppEventNamePushTokenObtained = @"fb_mobile_obtain_push_token"; static NSString *const FBSDKAppEventNamePushOpened = @"fb_mobile_push_opened"; // Event Parameter static NSString *const FBSDKAppEventParameterPushCampaign = @"fb_push_campaign"; @@ -423,7 +425,22 @@ + (void)activateApp + (void)setPushNotificationsDeviceToken:(NSData *)deviceToken { - [FBSDKAppEvents singleton].pushNotificationsDeviceTokenString = [FBSDKInternalUtility hexadecimalStringFromData:deviceToken]; + NSString *deviceTokenString = [FBSDKInternalUtility hexadecimalStringFromData:deviceToken]; + if (deviceTokenString == nil) { + [FBSDKAppEvents singleton].pushNotificationsDeviceTokenString = nil; + return; + } + + if (![deviceTokenString isEqualToString:([FBSDKAppEvents singleton].pushNotificationsDeviceTokenString)]) { + [FBSDKAppEvents singleton].pushNotificationsDeviceTokenString = deviceTokenString; + + [FBSDKAppEvents logEvent:FBSDKAppEventNamePushTokenObtained]; + + // Unless the behavior is set to only allow explicit flushing, we go ahead and flush the event + if ([FBSDKAppEvents flushBehavior] != FBSDKAppEventsFlushBehaviorExplicitOnly) { + [[FBSDKAppEvents singleton] flushForReason:FBSDKAppEventsFlushReasonEagerlyFlushingEvent]; + } + } } + (FBSDKAppEventsFlushBehavior)flushBehavior diff --git a/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h b/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h index d006cf250b..b14ad306fa 100644 --- a/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h +++ b/FBSDKCoreKit/FBSDKCoreKit/FBSDKCoreKit.h @@ -44,5 +44,5 @@ #import #endif -#define FBSDK_VERSION_STRING @"4.19.0" +#define FBSDK_VERSION_STRING @"4.20.0" #define FBSDK_TARGET_PLATFORM_VERSION @"v2.8" diff --git a/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKSmartDeviceDialogView.m b/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKSmartDeviceDialogView.m index a5b54b2d94..588cdb606b 100644 --- a/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKSmartDeviceDialogView.m +++ b/FBSDKCoreKit/FBSDKCoreKit/Internal/Device/FBSDKSmartDeviceDialogView.m @@ -20,9 +20,6 @@ #import "FBSDKCoreKit+Internal.h" -// don't download icons more than once a day. -static const NSTimeInterval kSmartLoginIconsTTL = 60 * 60 * 24; - @implementation FBSDKSmartDeviceDialogView { UIActivityIndicatorView *_spinner; @@ -32,7 +29,7 @@ @implementation FBSDKSmartDeviceDialogView - (instancetype)initWithFrame:(CGRect)frame { if ((self = [super initWithFrame:frame])) { - [self _prepareImageCache]; + [self _buildView]; } return self; } @@ -61,50 +58,11 @@ - (void)buildView #pragma mark - Helpers -- (void)_prepareImageCache -{ - [FBSDKServerConfigurationManager loadServerConfigurationWithCompletionBlock:^(FBSDKServerConfiguration *serverConfiguration, NSError *error) { - if ((serverConfiguration.smartLoginOptions & FBSDKServerConfigurationSmartLoginOptionsEnabled) && - serverConfiguration.smartLoginMenuIconURL && - serverConfiguration.smartLoginBookmarkIconURL) { - __block UIImage *bookmarkIconImage; - __block UIImage *menuIconImage; - __block NSUInteger count = 0; - void(^buildViewBlock)(void) = ^{ - count++; - if (count >= 2){ - dispatch_async(dispatch_get_main_queue(), ^{ - [self _buildViewWithBookmarkIcon:bookmarkIconImage - menuIcon:menuIconImage]; - [self setNeedsLayout]; - }); - } - }; - [[FBSDKImageDownloader sharedInstance] downloadImageWithURL:serverConfiguration.smartLoginBookmarkIconURL - ttl:kSmartLoginIconsTTL - completion:^(UIImage *image) { - bookmarkIconImage = image; - buildViewBlock(); - }]; - [[FBSDKImageDownloader sharedInstance] downloadImageWithURL:serverConfiguration.smartLoginMenuIconURL - ttl:kSmartLoginIconsTTL - completion:^(UIImage *image) { - menuIconImage = image; - buildViewBlock(); - }]; - } else { - [self _buildViewWithBookmarkIcon:nil menuIcon:nil]; - } - }]; -} - -- (void)_buildViewWithBookmarkIcon:(UIImage *)bookmarkIcon - menuIcon:(UIImage *)menuIcon +- (void)_buildView { // This is a "static" view with just a cancel button so add all the constraints here // rather than properly override `updateConstraints`. const CGFloat kWidth = 1080; - const CGFloat kHeight = 820; const CGFloat kVerticalSpaceBetweenHeaderViewAndInstructionLabel = 50; const CGFloat kDialogHeaderViewHeight = 250; const CGFloat kLogoSize = 44; @@ -125,7 +83,6 @@ - (void)_buildViewWithBookmarkIcon:(UIImage *)bookmarkIcon [NSLayoutConstraint constraintWithItem:dialogView attribute:NSLayoutAttributeCenterX relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeCenterX multiplier:1.0 constant:0].active = YES;; [NSLayoutConstraint constraintWithItem:dialogView attribute:NSLayoutAttributeCenterY relatedBy:NSLayoutRelationEqual toItem:self attribute:NSLayoutAttributeCenterY multiplier:1.0 constant:0].active = YES; [dialogView.widthAnchor constraintEqualToConstant:kWidth].active = YES; - [dialogView.heightAnchor constraintEqualToConstant:kHeight].active = YES; // build the header container view (which will contain the logo and code). UIView *dialogHeaderView = [[UIView alloc] init]; @@ -175,43 +132,16 @@ - (void)_buildViewWithBookmarkIcon:(UIImage *)bookmarkIcon // build the smartlogin instructions UILabel *smartInstructionLabel = [[UILabel alloc] init]; smartInstructionLabel.translatesAutoresizingMaskIntoConstraints = NO; - NSString *smartInstructionsStep0 = NSLocalizedStringWithDefaultValue(@"DeviceLogin.SmartLogInStep0", - @"FacebookSDK", - [FBSDKInternalUtility bundleForStrings], - @"Confirm your code on Facebook.", - @"The string for smart login instructions"); - NSString *smartInstructionsStep1 = NSLocalizedStringWithDefaultValue(@"DeviceLogin.SmartLogInStep1", - @"FacebookSDK", - [FBSDKInternalUtility bundleForStrings], - @"\n1. Go to the Menu ", - @"The string for smart login instructions"); - NSString *smartInstructionsStep2 = NSLocalizedStringWithDefaultValue(@"DeviceLogin.SmartLogInStep2", + NSString *smartInstructionString = NSLocalizedStringWithDefaultValue(@"DeviceLogin.SmartLogInPrompt", @"FacebookSDK", [FBSDKInternalUtility bundleForStrings], - @"\n2. Select Device Requests ", - @"The string for smart login instructions"); - NSString *smartInstructionsStep3 = NSLocalizedStringWithDefaultValue(@"DeviceLogin.SmartLogInStep3", - @"FacebookSDK", - [FBSDKInternalUtility bundleForStrings], - @"\n3. Confirm code.", - @"The string for smart login instructions"); - NSTextAttachment *bookmarkAttachment = [[NSTextAttachment alloc] init]; - bookmarkAttachment.image = bookmarkIcon; - NSAttributedString *attributedBookmarkString = [NSAttributedString attributedStringWithAttachment:bookmarkAttachment]; - - NSTextAttachment *menuAttachment = [[NSTextAttachment alloc] init]; - menuAttachment.image = menuIcon; - NSAttributedString *attributedMenuString = [NSAttributedString attributedStringWithAttachment:menuAttachment]; + @"To connect your account, open the Facebook app on your mobile device and check for notifications.", + @"Instructions telling the user to open their Facebook app on a mobile device and check for a login notification."); NSMutableParagraphStyle *instructionLabelParagraphStyle = [[NSMutableParagraphStyle alloc] init]; instructionLabelParagraphStyle.lineHeightMultiple = 1.3; - NSMutableAttributedString *attributedSmartString = [[NSMutableAttributedString alloc] initWithString:smartInstructionsStep0 + NSMutableAttributedString *attributedSmartString = [[NSMutableAttributedString alloc] initWithString:smartInstructionString attributes:@{ NSParagraphStyleAttributeName : instructionLabelParagraphStyle }]; - [attributedSmartString appendAttributedString:[[NSAttributedString alloc] initWithString:smartInstructionsStep1]]; - [attributedSmartString appendAttributedString:attributedMenuString]; - [attributedSmartString appendAttributedString:[[NSAttributedString alloc] initWithString:smartInstructionsStep2]]; - [attributedSmartString appendAttributedString:attributedBookmarkString]; - [attributedSmartString appendAttributedString:[[NSAttributedString alloc] initWithString:smartInstructionsStep3]]; UIFont *instructionFont = [UIFont systemFontOfSize:kInstructionFontSize weight:UIFontWeightLight]; smartInstructionLabel.font = instructionFont; @@ -220,12 +150,6 @@ - (void)_buildViewWithBookmarkIcon:(UIImage *)bookmarkIcon smartInstructionLabel.textAlignment = NSTextAlignmentCenter; [smartInstructionLabel sizeToFit]; - // resize the icons to fit with the font, and also vertically align them - // so that they start at the cap height. Annoyingly, the menu bookmark has some extra padding - // in the image so we offset that by an additional 2 points. - menuAttachment.bounds = CGRectMake(0, -(instructionFont.ascender - instructionFont.capHeight)+2, kInstructionFontSize, kInstructionFontSize); - bookmarkAttachment.bounds = CGRectMake(0, -(instructionFont.ascender - instructionFont.capHeight), kInstructionFontSize, kInstructionFontSize); - smartInstructionLabel.textColor = [UIColor colorWithWhite:kFontColorValue alpha:1.0]; [dialogView addSubview:smartInstructionLabel]; [smartInstructionLabel.topAnchor constraintEqualToAnchor:dialogHeaderView.bottomAnchor @@ -247,8 +171,7 @@ - (void)_buildViewWithBookmarkIcon:(UIImage *)bookmarkIcon [orInstructionLabel sizeToFit]; orInstructionLabel.textColor = [UIColor colorWithWhite:kFontColorValue alpha:1.0]; [dialogView addSubview:orInstructionLabel]; - [orInstructionLabel.topAnchor constraintGreaterThanOrEqualToAnchor:smartInstructionLabel.bottomAnchor - constant:kVerticalMarginOrLabel].active = YES; + [orInstructionLabel.topAnchor constraintEqualToAnchor:smartInstructionLabel.bottomAnchor constant:kVerticalMarginOrLabel].active = YES; [orInstructionLabel.leadingAnchor constraintEqualToAnchor:dialogView.leadingAnchor constant:kInstructionTextHorizontalMargin].active = YES; [dialogView.trailingAnchor constraintEqualToAnchor:orInstructionLabel.trailingAnchor constant:kInstructionTextHorizontalMargin].active = YES; @@ -259,7 +182,7 @@ - (void)_buildViewWithBookmarkIcon:(UIImage *)bookmarkIcon NSString *localizedFormatString = NSLocalizedStringWithDefaultValue(@"DeviceLogin.LogInPrompt", @"FacebookSDK", [FBSDKInternalUtility bundleForStrings], - @"Visit %@ and enter your code.", + @"Visit %@ and enter the code shown above.", @"The format string for device login instructions"); NSString *const deviceLoginURLString = @"facebook.com/device"; @@ -292,6 +215,8 @@ - (void)_buildViewWithBookmarkIcon:(UIImage *)bookmarkIcon constant:400].active = YES; [buttonContainerView.topAnchor constraintEqualToAnchor:instructionLabel.bottomAnchor constant:kVerticalMarginOrLabel].active = YES; + [dialogView.bottomAnchor constraintEqualToAnchor:buttonContainerView.bottomAnchor + constant:kVerticalMarginOrLabel].active = YES; // build the cancel button. UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem]; diff --git a/FBSDKLoginKit.podspec b/FBSDKLoginKit.podspec index 128c4b189f..a01419a87f 100644 --- a/FBSDKLoginKit.podspec +++ b/FBSDKLoginKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = "FBSDKLoginKit" - s.version = "4.19.0" + s.version = "4.20.0" s.summary = "Official Facebook SDK for iOS to access Facebook Platform with features like Login, Share and Message Dialog, App Links, and Graph API" s.description = <<-DESC @@ -21,7 +21,7 @@ Pod::Spec.new do |s| s.ios.deployment_target = "7.0" s.source = { :git => "https://github.com/facebook/facebook-ios-sdk.git", - :tag => "sdk-version-4.19.0" + :tag => "sdk-version-4.20.0" } s.weak_frameworks = "Accounts", "CoreLocation", "Social", "Security", "QuartzCore", "CoreGraphics", "UIKit", "Foundation", "AudioToolbox" diff --git a/FBSDKShareKit.podspec b/FBSDKShareKit.podspec index a2cb01d8da..eb17870cbc 100644 --- a/FBSDKShareKit.podspec +++ b/FBSDKShareKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = "FBSDKShareKit" - s.version = "4.19.0" + s.version = "4.20.0" s.summary = "Official Facebook SDK for iOS to access Facebook Platform's Sharing Features" s.description = <<-DESC @@ -22,7 +22,7 @@ Pod::Spec.new do |s| s.tvos.deployment_target = '9.0' s.source = { :git => "https://github.com/facebook/facebook-ios-sdk.git", - :tag => "sdk-version-4.19.0" + :tag => "sdk-version-4.20.0" } s.ios.weak_frameworks = 'Accounts', 'AudioToolbox', 'CoreGraphics', 'CoreLocation', 'Foundation', 'QuartzCore', 'Security', 'Social', 'UIKit' diff --git a/FBSDKTVOSKit.podspec b/FBSDKTVOSKit.podspec index 31153317b3..4fef368719 100644 --- a/FBSDKTVOSKit.podspec +++ b/FBSDKTVOSKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| s.name = 'FBSDKTVOSKit' - s.version = '4.19.0' + s.version = '4.20.0' s.summary = 'Official Facebook SDK for tvOS to access Facebook Platform with features like Login and Graph API.' s.description = <<-DESC @@ -20,7 +20,7 @@ Pod::Spec.new do |s| s.tvos.deployment_target = '9.0' s.source = { :git => 'https://github.com/facebook/facebook-ios-sdk.git', - :tag => 'sdk-version-4.19.0' } + :tag => 'sdk-version-4.20.0' } s.source_files = 'FBSDKTVOSKit/FBSDKTVOSKit/**/*.{h,m}' s.public_header_files = 'FBSDKTVOSKit/FBSDKTVOSKit/*.h' diff --git a/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings index 35a6ce74ae..6ea6392f15 100644 --- a/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/af.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Besoek %@ op jou slimfoon of rekenaar en voer hierdie kode in:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Besoek %@ en voer die kode in wat hierbo vertoon word."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Om jou rekening te verbind, maak die Facebook-toepassing op jou mobiele toestel oop en kontroleer vir kennisgewings."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- OF -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "Goed"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Jy is in beheer – kies watter inligting jy met toepassings wil deel."; +"LoginTooltip.Message" = "Nuut! Jy is in beheer - kies waater inligting jy met toepassings wil deel."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Meld aan"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Deel"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Nie jy nie?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Bevestig aantekening"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Gaan voort as %@"; diff --git a/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings index 0a3a9a26e5..8679057e78 100644 --- a/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/ar.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "زر %@ على هاتفك الذكي أو الكمبيوتر ثم أدخل هذا الرمز:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "تفضل بزيارة %@ وإدخال الرمز الموضح أدناه."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "لربط حسابك، افتح تطبيق فيسبوك على جهازك المحمول ثم تفقد الإشعارات."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- أو -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "موافق"; @@ -37,9 +43,6 @@ /* 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" = "تسجيل الدخول بحساب فيسبوك"; @@ -65,7 +68,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" = "تسجيل الدخول"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "مشاركة"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "لست أنت؟"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "تأكيد تسجيل الدخول"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "متابعة باسم %@"; diff --git a/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings index a6682b9164..1689bf3fa6 100644 --- a/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/bn.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "আপনার কম্পিউটার বা স্মার্টফোন থেকে %@ এ যান এবং এই কোডটিকে প্রবেশ করান:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ -এ যান এবং উপরে যে কোডটি দেখানো হয়েছে সেটি লিখুন।"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "আপনার অ্যাকাউন্টে সংযোগ করতে, আপনার মোবাইল ডিভাইসে Facebook অ্যাপটি খুলুন এবং বিজ্ঞপ্তি চেক করুন।"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- অথবা -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "ঠিক আছে"; @@ -37,9 +43,6 @@ /* 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 -এর সাথে লগ ইন করুন"; @@ -65,7 +68,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" = "লগ ইন করুন"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "ভাগ করুন"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "আপনি নন?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "লগ ইন নিশ্চিত করুন"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ হিসেবে চালিয়ে যান"; diff --git a/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings index f4ff4faa63..c492acdfa5 100644 --- a/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/cs.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Přejděte ze smartphonu nebo počítače na %@ a zadejte tento kód:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Navštivte %@ a zadejte nahoře uvedený kód."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Účet si můžete připojit tak, že si na mobilním zařízení spustíte aplikaci Facebook a podíváte se do upozornění."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- NEBO -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Je jen na vás, které informace chcete s aplikacemi sdílet."; +"LoginTooltip.Message" = "Novinka! 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Sdílet"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Nejste to vy?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Potvrdit přihlášení"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Pokračovat jako %@"; diff --git a/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings index 21ccc8d480..b26d99d85e 100644 --- a/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/da.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Gå til %@ på din smartphone eller computer, og indtast denne kode:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Gå til %@, og indtast den kode, der er angivet ovenfor."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Du kan tilknytte din konto ved at åbne Facebook-appen på din mobilenhed og tjekke notifikationerne."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Du har styringen – vælg de oplysninger, som du vil dele med apps."; +"LoginTooltip.Message" = "Nyhed! 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å"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Del"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Ikke dig?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Bekræft login"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Fortsæt som %@"; diff --git a/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings index f7825846ed..dcb5471feb 100644 --- a/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/de.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Gehe über dein Smartphone oder deinen Computer zu %@ und gib diesen Code ein:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Besuche %@ und gib den oben angezeigten Code ein."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Um dein Konto zu verbinden, öffne die Facebook-App auf deinem Mobilgerät und prüfe, ob du Benachrichtigungen erhalten hast."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "– ODER –"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Es liegt ganz an dir – du kannst dir aussuchen, was du mit Apps teilen möchtest."; +"LoginTooltip.Message" = "Neu! 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Teilen"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Nicht du?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Login bestätigen"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Fortfahren als %@"; diff --git a/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings index 050455a46a..e5d35e31bb 100644 --- a/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/el.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Επισκεφτείτε τον ιστότοπο %@ από το smartphone ή τον υπολογιστή σας και πληκτρολογήστε αυτόν τον κωδικό:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Επισκεφτείτε τη διεύθυνση %@ και συμπληρώστε τον παραπάνω κωδικό."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Για να συνδεθείτε στο λογαριασμό σας, ανοίξτε την εφαρμογή Facebook στη φορητή συσκευή σας και ελέγξτε τις ειδοποιήσεις."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- Ή -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Σύνδεση"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Κοινοποίηση"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Δεν είστε εσείς;"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Επιβεβαίωση σύνδεσης"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Συνέχεια ως %@"; diff --git a/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings index 96c8563ee9..10045d3c85 100644 Binary files a/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings and b/FacebookSDKStrings.bundle/Resources/en.lproj/FacebookSDK.strings differ diff --git a/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings index 9755029c48..40af09bb27 100644 --- a/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/en_GB.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ /* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Visit %@ on your smartphone or computer and enter this code:"; +"DeviceLogin.LogInPrompt" = "Visit %@ and enter the code shown above."; + +/* The 'or' string for smart login instructions */ +"DeviceLogin.SmartLogInOrLabel" = "-- OR --"; + +/* The string for smart login instructions */ +"DeviceLogin.SmartLogInPrompt" = "To connect your account, open the Facebook app on your mobile device and check for notifications."; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "You're in control – choose what information you want to share with apps."; +"LoginTooltip.Message" = "New! You're in control – choose what info you want to share with apps."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Log In"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Share"; + +/* The title for the alert when smart login requires confirmation */ +"SmartLogin.ConfirmationTitle" = "Confirm Login"; + +/* The format string to continue as for the alert when smart login requires confirmation */ +"SmartLogin.Continue" = "Continue as %@"; + +/* The cancel label for the alert when smart login requires confirmation */ +"SmartLogin.NotYou" = "Not you?"; diff --git a/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings index 6271c1009e..88cb80ad4f 100644 --- a/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/es.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Visita %@ en tu smartphone o computadora e ingresa este código:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Visita %@ e ingresa el código que se muestra arriba."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- O -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "Aceptar"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Tú decides: elige qué información quieres compartir con las aplicaciones."; +"LoginTooltip.Message" = "¡Nuevo! Tú tienes el control: 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Compartir"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "¿No eres tú?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Continuar como %@"; diff --git a/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings index 0bfe194b5f..9a202bd15f 100644 --- a/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/es_ES.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Visita %@ en tu smartphone u ordenador e introduce este código:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Visita %@ e introduce el código que se muestra arriba."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Para conectar tu cuenta, abre la aplicación de Facebook en tu dispositivo móvil y comprueba las notificaciones."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- O -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "Aceptar"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Tú tienes el control: elige la información que quieres compartir con las aplicaciones."; +"LoginTooltip.Message" = "Novedad: Tú eres quien controla y 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Compartir"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "¿No eres tú?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Confirmar inicio de sesión"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Continuar como %@"; diff --git a/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings index 118646175b..17ade13e83 100644 --- a/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/fi.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Siirry osoitteeseen %@ älypuhelimella tai tietokoneella ja anna seuraava koodi:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Siirry osoitteeseen %@ ja kirjoita oheinen koodi sivulle."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Pääset liittämään käyttäjätilisi avaamalla Facebook-sovelluksen mobiililaitteellasi ja tarkistamalla ilmoitukset."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- TAI -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Sinä voit valita, mitä tietoja jaat sovelluksille."; +"LoginTooltip.Message" = "Uutta! Sinä päätät – valitse, mitä haluat jakaa sovellusten kanssa."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Kirjaudu sisään"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Jaa"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Etkö tämä ole sinä?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Vahvista sisäänkirjautuminen"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Jatka nimellä %@"; diff --git a/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings index e60c3b2961..b289505fc9 100644 --- a/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/fil.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Puntahan ang %@ sa iyong smartphone o computer at ilagay ang code na ito:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Pumunta sa %@ at ilagay ang code na ipinapakita sa itaas."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Para ikonekta ang iyong account, buksan ang Facebook app sa iyong cellphone at tumingin ng mga notification."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- O KAYA -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Ikaw ang may kontrol - piliin kung anong impormasyon ang gusto mong ibahagi sa mga app."; +"LoginTooltip.Message" = "Bago! 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Ibahagi"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Hindi ikaw?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "I-confirm ang Pag-log in"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Magpatuloy bilang %@"; diff --git a/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings index 5995257c8e..9b0a2121e1 100644 --- a/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/fr.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Rendez-vous sur %@ sur votre smartphone ou votre ordinateur et entrez ce code :"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Consultez la page %@ et saisissez le code indiqué ci-dessus."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Pour connecter votre compte, lancez l’application Facebook sur votre appareil mobile et consultez les notifications."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- OU -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Vous gardez le contrôle. Choisissez les informations que vous souhaitez partager avec les applications."; +"LoginTooltip.Message" = "Nouveau ! 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Partager"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Ce n’est pas vous ?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Confirmer la connexion"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Continuer en tant que %@"; diff --git a/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings index 302cce8cce..04b36aed9a 100644 --- a/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/gu.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "તમારા સ્માર્ટફોન અથવા કમ્પ્યુટર પર %@ ની મુલાકાત લો અને આ કોડ દાખલ કરો:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ ની મુલાકાત લો અને ઉપર બતાવ્યા પ્રમાણે કોડ દાખલ કરો."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "તમારા એકાઉન્ટ સાથે જોડાવા માટે, તમારા મોબાઇલ ઉપકરણ પર Facebook એપ્લિકેશન ખોલો અને સૂચનો માટે તપાસો."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- અથવા -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "ઠીક"; @@ -37,9 +43,6 @@ /* 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" = "ફેસબુક સાથે લૉગ ઇન કરો"; @@ -65,7 +68,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" = "લૉગ ઇન કરો"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "શેર કરો"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "તમે નહિ?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "લૉગિનની પુષ્ટિ કરો"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ તરીકે ચાલુ રાખો"; diff --git a/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings index b515e4e50c..134f36da0f 100644 --- a/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/he.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "בקר ב-%@ בטלפון החכם או במחשב והזן קוד זה:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "בקר ב-%@ והזן את הקוד המופיע למעלה."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "כדי לחבר את החשבון שלך, פתח את אפליקציית פייסבוק במכשיר הנייד שלך ובדוק אם יש התראות."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- או -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "אישור"; @@ -37,9 +43,6 @@ /* 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" = "התחבר באמצעות פייסבוק"; @@ -65,7 +68,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" = "התחבר"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "שתף"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "לא אתה?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "אשר התחברות"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "המשך כ-%@"; diff --git a/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings index b920cb9e2c..7a64f1d2cf 100644 --- a/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/hi.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "अपने स्मार्टफ़ोन या कंप्यूटर पर %@ पर जाएँ और यह कोड डालें:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ पर जाएँ और ऊपर दिया गया कोड दर्ज करें."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "अपने खाते को कनेक्ट करने के लिए, अपने मोबाइल एप्लिकेशन में Facebook एप्लिकेशन खोलें और सूचनाओं के लिए जाँच करें."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- या -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "ठीक"; @@ -37,9 +43,6 @@ /* 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 से लॉग इन करें"; @@ -65,7 +68,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" = "लॉग इन करें"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "साझा करें"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "आप नहीं हैं?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "लॉग इन कन्फ़र्म करें"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ के रूप में जारी रखें"; diff --git a/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings index 548dfb9fb6..6ada8e438a 100644 --- a/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/hr.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Posjetite %@ na pametnom telefonu ili računalu i unesite ovaj kôd:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Posjetite adresu %@ i unesite gore prikazan kod."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Da biste povezali račun, otvorite aplikaciju Facebook na mobilnom uređaju i potražite obavijesti."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ILI -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "U redu"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Vi odlučujete – odaberite koje podatke želite dijeliti u aplikacijama."; +"LoginTooltip.Message" = "Novo! Vi odlučujete – odaberite koje informacije želite podijeliti u aplikacijama."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Prijava"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Dijeli"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "To niste vi?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Potvrda prijave"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Nastavi kao %@"; diff --git a/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings index 7de57b03c6..a919954102 100644 --- a/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/hu.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Keresd fel a(z) %@ oldalt a telefonodról vagy számítógépről, és írd be a következő kódot:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Keresd fel a %@ címet, és írd be a fent megjelenített kódot."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "A fiók hozzákapcsolásához nyisd meg a Facebook alkalmazást a mobilkészülékeden, és nézd meg az értesítéseket."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- VAGY -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "A döntés a kezedben van: kiválaszthatod, hogy milyen adatokat osztasz meg az alkalmazásokkal."; +"LoginTooltip.Message" = "Újdonság! 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Megosztás"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Nem te vagy az?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Bejelentkezés megerősítése"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Folytatás mint %@"; diff --git a/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings index 17a15f3e8f..c6c12a86ef 100644 --- a/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/id.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Buka %@ dari smartphone Anda atau komputer dan masukkan kode ini:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Kunjungi %@ dan masukkan kode yang ditampilkan di atas."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akun Anda, buka aplikasi Facebook di perangkat seluler Anda dan periksa pemberitahuan."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Anda memegang kendali - pilih info yang ingin Anda bagikan dengan aplikasi."; +"LoginTooltip.Message" = "Baru! 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Berbagi"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Bukan Anda?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Konfirmasikan Masuk"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Lanjutkan sebagai %@"; diff --git a/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings index 7223a4e6d4..304f05e713 100644 --- a/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/it.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Accedi a %@ nel tuo smartphone o computer e inserisci questo codice:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Visita %@ e inserisci il codice mostrato sopra."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Per collegare il tuo account, apri l'app Facebook sul tuo dispositivo mobile e controlla se hai notifiche."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- OPPURE -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Il controllo è nelle tue mani: scegli quali informazioni condividere con le app."; +"LoginTooltip.Message" = "Novità! Il controllo è nelle tue mani: scegli quali informazioni condividere con le applicazioni."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Accedi"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Condividi"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Non sei tu?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Conferma l'accesso"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Continua come %@"; diff --git a/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings index 43faf40b81..7fdf51cb3d 100644 --- a/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/ja.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "スマートフォンまたはコンピュータから%@にアクセスし、次のコードを入力してください。"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@にアクセスし、上に表示されているコードを入力してください。"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "アカウントを接続するには、お使いのモバイル機器でFacebookアプリを開き、通知をご確認ください。"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- または -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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でログイン"; @@ -65,7 +68,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" = "ログイン"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "シェア"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "別のユーザーとしてログイン"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "ログインの確認"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@として続行"; diff --git a/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings index f743a2793c..87765be66a 100644 --- a/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/kn.lproj/FacebookSDK.strings @@ -37,9 +37,6 @@ /* 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 ಮೂಲಕ ಲಾಗ್‌ ಇನ್‌ ಮಾಡಿ"; @@ -65,7 +62,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/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings index f5d01eb8a0..b25e67afe0 100644 --- a/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/ko.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "스마트폰이나 컴퓨터에서 %@ 주소를 방문하여 다음 코드를 입력하세요."; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@를 방문하여 위에 표시된 코드를 입력하세요."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "계정을 연결하려면 모바일 기기에서 Facebook 앱을 열고 알림을 확인하세요."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- 또는 -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "확인"; @@ -37,9 +43,6 @@ /* 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으로 로그인"; @@ -65,7 +68,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" = "로그인"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "공유하기"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "회원님이 아닌가요?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "로그인 확인"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@님으로 계속"; diff --git a/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings index 7357b1d842..e34edae10a 100644 --- a/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/ml.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "നിങ്ങളുടെ സ്‌മാർട്ട്ഫോണിലെ അല്ലെങ്കിൽ കമ്പ്യൂട്ടറിലെ %@ സന്ദർശിച്ച് ഇനിപ്പറയുന്ന കോഡ് നൽകുക:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ സന്ദർശിച്ച്‌ മുകളിൽ കാണിച്ച‌ കോഡ്‌ നൽകുക."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "നിങ്ങളുടെ അക്കൗണ്ട്‌ കണക്‌റ്റുചെയ്യാൻ, നിങ്ങളുടെ മൊബൈൽ ഉപകരണത്തിലെ Facebook ആപ്പ്‌ തുറന്ന്‌ അറിയിപ്പുകൾ പരിശോധിക്കുക."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- അല്ലെങ്കിൽ -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "ശരി"; @@ -37,9 +43,6 @@ /* 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 ഉപയോഗിച്ച് ലോഗിൻ ചെയ്യുക"; @@ -65,7 +68,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" = "ലോഗിൻ ചെയ്യുക"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "പങ്കിടൂ"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "നിങ്ങൾ അല്ലേ?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "ലോഗിൻ സ്ഥിരീകരിക്കുക"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ ആയി തുടരുക"; diff --git a/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings index 1d1d742b14..75e6b2e6a3 100644 --- a/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/mr.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "आपला स्‍मार्ट फोन किंवा संगणकावर %@ ला भेट द्या आणि हा कोड प्रविष्‍ट करा:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ वर भेट द्या आणि वर दर्शवलेला कोड प्रविष्ट करा."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "तुमचे खाते कनेक्ट करण्यासाठी, तुमच्या मोबाईल उपकरणावर Facebook अॅप उघडा आणि सूचना तपासा."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- किंवा -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "ठीक"; @@ -37,9 +43,6 @@ /* 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" = "फेसबुकसह लॉग इन करा"; @@ -65,7 +68,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" = "लॉग इन करा"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "सामायिक करा"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "तुम्ही नाही?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "लॉग इन पुष्टी करा" + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ म्हणून चालू ठेवा"; diff --git a/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings index 209d15d242..ac32f62652 100644 --- a/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/ms.lproj/FacebookSDK.strings @@ -1,3 +1,12 @@ +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Lawati %@ dan masukkan kod yang ditunjukkan di atas."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Untuk menghubungkan akaun anda, buka apl Facebook di peranti mudah alih anda dan semak pemberitahuan."; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Bukan anda?"; + /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -34,9 +43,6 @@ /* 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"; @@ -62,7 +68,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" = "Anda yang mengawal - pilih maklumat yang anda ingin kongsi dengan apl."; +"LoginTooltip.Message" = "Baru! Anda yang mengawal - pilih maklumat yang anda ingin kongsi dengan aplikasi."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Log Masuk"; @@ -72,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Kongsi"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Sahkan Log Masuk"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Teruskan sebagai %@"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ATAU -"; diff --git a/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings index c278cc1da1..91c3b5eab5 100644 --- a/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/nb.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Gå til %@ på smarttelefonen eller datamaskinen din, og oppgi denne koden:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Gå til %@, og oppgi koden som vises ovenfor."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Koble til kontoen din ved å åpne Facebook-appen på mobilenheten din og se etter varsler."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Du bestemmer – velg hvilke opplysninger du vil dele med appene."; +"LoginTooltip.Message" = "Nyhet! 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Del"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Ikke deg?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Bekreft innlogging"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Fortsett som %@"; diff --git a/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings index ad1a565d57..b56c6cef5b 100644 --- a/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/nl.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Ga op je smartphone of computer naar %@ en voer deze code in:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Ga naar %@ en voer de bovenstaande code in."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Om je account te verbinden, open je de Facebook-app op je mobiele apparaat en controleer of je meldingen ziet."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- OF -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Jij hebt de controle. Kies welke informatie je met apps wilt delen."; +"LoginTooltip.Message" = "Nieuw! 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Delen"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Ben jij dit niet?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Aanmelden bevestigen"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Doorgaan als %@"; diff --git a/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings index 878b4a10f7..55950a79b1 100644 --- a/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/pa.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "ਆਪਣੇ ਸਮਾਰਟਫ਼ੋਨ ਜਾਂ ਕੰਪਿਊਟਰ 'ਤੇ %@ ਵਿੱਚ ਜਾਓ ਅਤੇ ਇਸ ਕੋਡ ਨੂੰ ਦਾਖ਼ਲ ਕਰੋ:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ ਵਿੱਚ ਜਾਓ ਅਤੇ ਉੱਤੇ ਦਿਖਾਏ ਗਏ ਕੋਡ ਨੂੰ ਦਾਖ਼ਲ ਕਰੋ।"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "ਆਪਣੇ ਖਾਤੇ ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਲਈ, ਆਪਣੀ ਮੋਬਾਈਲ ਡਿਵਾਈਸ 'ਤੇ Facebook ਐਪ ਨੂੰ ਖੋਲ੍ਹੋ ਅਤੇ ਸੂਚਨਾਵਾਂ ਨੂੰ ਦੇਖੋ।"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ਜਾਂ -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "ਠੀਕ"; @@ -37,9 +43,6 @@ /* 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 ਦੇ ਨਾਲ ਲੌਗ ਇਨ ਕਰੋ"; @@ -65,7 +68,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" = "ਲੌਗ ਇਨ ਕਰੋ"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "ਭੇਜੋ"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "ਕੀ ਤੁਸੀਂ ਨਹੀਂ ਹੋ?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "ਲੌਗਇਨ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ ਵੱਜੋਂ ਜਾਰੀ ਰੱਖੋ"; diff --git a/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings index b3bbf158c6..9d02032e49 100644 --- a/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/pl.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Przejdź do %@ na smartfonie lub komputerze i wprowadź ten kod:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Wejdź na stronę %@ i wprowadź podany powyżej kod."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Aby połączyć konto, otwórz aplikację Facebook na urządzeniu mobilnym i sprawdź powiadomienia."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- LUB -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Masz pełną kontrolę – określ, jakie informacje chcesz udostępniać aplikacjom."; +"LoginTooltip.Message" = "Nowość! 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ę"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Udostępnij"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "To nie Ty?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Potwierdź logowanie"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Kontynuuj jako %@"; diff --git a/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings index 27b70b0813..9c6aa5154a 100644 --- a/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/pt.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Acesse %@ no seu smartphone ou computador e insira este código:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Acesse %@ e introduza o código mostrado acima."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Para conectar sua conta, abra o aplicativo Facebook em seu dispositivo móvel e verifique se tem notificações."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "– OU –"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Você é quem controla — escolha quais informações você quer compartilhar com os aplicativos."; +"LoginTooltip.Message" = "Novidade! Você está no controle - escolha quais informações quer compartilhar com os aplicativos."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Entrar"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Compartilhar"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Não é você?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Confirme o login"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Continue como %@"; diff --git a/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings index eb84fdb4dd..2901a5916d 100644 --- a/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/pt_PT.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Visita %@ no teu smartphone ou computador e insere este código:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Visita %@ e introduz o código mostrado acima."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Para ligares a tua conta, abre a app Facebook no teu dispositivo móvel e verifica se tens notificações."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "– OU –"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Tens o controlo: escolhe a informação que pretendes partilhar com as apps."; +"LoginTooltip.Message" = "Novidade! Tens o controlo: escolhe a informação que pretendes partilhar com as aplicações."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Iniciar sessão"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Partilhar"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Não és tu?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Confirmar Início de Sessão"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Continuar como %@"; diff --git a/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings index 0712971ba2..a720bfb20e 100644 --- a/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/ru.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Откройте «%@» на своем смартфофне или компьютере и введите этот код:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Откройте страницу %@ и введите представленный выше код."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Чтобы подключить аккаунт, откройте приложение Facebook на мобильном устройстве и проверьте уведомления."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ИЛИ -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Вход в систему"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Поделиться"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Это не вы?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Подтвердить вход"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Продолжить как %@"; diff --git a/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings index 44b2a3515d..bbc4a86a0c 100644 --- a/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/sk.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Navštívte %@ v smartfóne alebo počítači a zadajte tento kód:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Navštívte stránku %@ a zadajte kód zobrazený vyššie."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Na pripojenie svojho účtu otvorte vo svojom mobilnom zariadení aplikáciu Facebook a skontrolujte upozornenia."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ALEBO -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Máte to pod kontrolou: vyberte, ktoré informácie chcete zdieľať s aplikáciami."; +"LoginTooltip.Message" = "Novinka! 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Zdieľať"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Nie ste to vy?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Potvrdiť prihlásenie"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Pokračovať ako %@"; diff --git a/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings index 39be6a9d92..ae12727c84 100644 --- a/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/sv.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Besök %@ på din smartphone eller dator och ange den här koden:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Besök %@ och ange koden som visas ovan."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Koppla ditt konto genom att öppna Facebook-appen på din mobila enhet och söka efter aviseringar."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- ELLER -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Du bestämmer – välj vilken info du vill dela med appar."; +"LoginTooltip.Message" = "Nyhet! 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Dela"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Inte du?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Bekräfta inloggning"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Fortsätt som %@"; diff --git a/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings index dd3020c04b..3536a957b0 100644 --- a/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/ta.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "உங்கள் ஸ்மார்ட்ஃபோன் அல்லது கணினியில் %@ ஐப் பார்வையிட்டு, பின்வரும் குறியீட்டை உள்ளிடவும்:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ என்பதற்குச் சென்று மேலே தெரியும் குறியீட்டை உள்ளிடவும்."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "உங்கள் கணக்குடன் இணைக்க, உங்கள் மொபைல் சாதனத்தில் Facebook பயன்பாட்டைத் திறந்து அறிவிப்புகளைப் பார்க்கவும்."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- அல்லது -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "சரி"; @@ -37,9 +43,6 @@ /* 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 மூலம் உள்நுழையவும்"; @@ -65,7 +68,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" = "உள்நுழைவு"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "பகிர்"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "நீங்கள் இல்லையா?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "உள்நுழைவை உறுதிப்படுத்தவும்"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ ஆகத் தொடரவும்"; diff --git a/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings index e3a5085aa3..0e7d813a42 100644 --- a/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/te.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "మీ స్మార్ట్‌ఫోన్ లేదా కంప్యూటర్‌లో %@ సందర్శించి, ఈ కోడ్‌ను నమోదు చేయండి:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ లింక్‌ను సందర్శించి, ఎగువ చూపిన కోడ్‌ను నమోదు చేయండి."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "మీ ఖాతాను అనుసంధానించడానికి, మీ మొబైల్ పరికరంలో Facebook అనువర్తనాన్ని తెరిచి, నోటిఫికేషన్‌లను తనిఖీ చేయండి."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- లేదా -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "ఒప్పుకుంటున్నాను"; @@ -37,9 +43,6 @@ /* 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తో లాగిన్ చేయి"; @@ -65,7 +68,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" = "లాగిన్ చేయండి"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "భాగస్వామ్యం చేయండి"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "మీరు కాదా?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "లాగిన్‌ను నిర్ధారించండి"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ వలె కొనసాగండి"; diff --git a/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings index 7d6b4f2e01..03dfd69973 100644 --- a/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/th.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "ไปที่ %@ ในสมาร์ทโฟนหรือคอมพิวเตอร์ของคุณ แล้วป้อนรหัสนี้:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "ไปที่ %@ และใส่โค้ดที่แสดงด้านบน"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "หากต้องการเชื่อมต่อบัญชีผู้ใช้ของคุณ ให้เปิดแอพ Facebook บนอุปกรณ์มือถือของคุณและตรวจสอบการแจ้งเตือน"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- หรือ -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "ตกลง"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "เข้าสู่ระบบ"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "แชร์"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "หากไม่ใช่คุณ"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "ยืนยันการเข้าสู่ระบบ"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "ดำเนินการต่อในชื่อ %@"; diff --git a/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings index a09c84c247..2bb30995fa 100644 --- a/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/tr.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Akıllı telefonunda veya bilgisayarında %@ adresine git ve bu kodu gir:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "%@ adresini ziyaret edin ve yukarıda görülen kodu girin."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Hesabınızı bağlamak için, mobil cihazınızda Facebook uygulamasını açın ve bildirimlerinizi kontrol edin."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- YA DA -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "Tamam"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "Kontrol sende. Uygulamalarla paylaşmak istediğin bilgileri seç."; +"LoginTooltip.Message" = "Yeni! 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"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Paylaş"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Sen değil misin?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Girişi Onayla"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "%@ olarak devam et"; diff --git a/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings index 99ede36235..29b00fe4e4 100644 --- a/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/vi.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "Truy cập %@ trên điện thoại thông minh hoặc máy tính và nhập mã sau:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "Truy cập %@ và nhập mã hiển thị ở trên."; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "Để kết nối tài khoản của bạn, hãy mở ứng dụng Facebook trên thiết bị di động và kiểm tra thông báo."; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- HOẶC -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "OK"; @@ -37,9 +43,6 @@ /* 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"; @@ -65,7 +68,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" = "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."; +"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."; /* Title of the web dialog that prompts the user to log in to Facebook. */ "LoginWeb.LogInTitle" = "Đăng nhập"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "Chia sẻ"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "Không phải bạn?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "Xác nhận đăng nhập"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "Tiếp tục với tư cách %@"; diff --git a/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings index 673fa772d5..b7dd283c8c 100644 --- a/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/zh.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "请用智能手机或电脑访问 %@,然后输入验证码:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "请访问 %@ 并输入上方显示的验证码。"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "要关联你的帐户,请在移动设备上打开 Facebook 应用,并查看通知。"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- 或者 -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "确定"; @@ -37,9 +43,6 @@ /* 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 登录"; @@ -65,7 +68,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" = "登录"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "分享"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "不是你?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "确认登录"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "以%@的身份继续"; diff --git a/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings index 66819f35a0..bd53c0e86f 100644 --- a/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/zh_Hant_HK.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "在智能手機或電腦前往 %@ 並輸入此代碼:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "前往 %@ 並輸入上方的程式碼。"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "若要連結您的帳戶,請在您的流動裝置上開啟 Facebook 應用程式並查看通知。"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "確定"; @@ -37,9 +43,6 @@ /* 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 登入"; @@ -65,7 +68,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" = "登入"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "分享"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "這不是您?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "確認登入"; + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "以%@的身分繼續"; diff --git a/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings b/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings index 8e64fd09fd..5e93e77d0e 100644 --- a/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings +++ b/FacebookSDKStrings.bundle/Resources/zh_Hant_TW.lproj/FacebookSDK.strings @@ -1,5 +1,11 @@ -/* The format string for device login instructions */ -"DeviceLogin.LogInPrompt" = "使用您的智慧型手機或電腦前往 %@,然後輸入此代碼:"; +/* Prompts a person to go to the URL listed to enter the confirmation code that is presented to them above the given string. */ +"DeviceLogin.LogInPrompt" = "請前往 %@ 並輸入上方顯示的代碼。"; + +/* Prompts a person that the next thing they need to do to finish connecting their Smart TV and Facebook application is to navigate to their Facebook application on their mobile device and look through their notifications for a message about the connection being formed */ +"DeviceLogin.SmartLogInPrompt" = "若要連結帳號,請從行動裝置開啟 Facebook 應用程式,並查看通知。"; + +/* Displayed as a separator between two options. First option is on a line above this, and second option is below */ +"DeviceLogin.SmartLogInOrLabel" = "- 或 -"; /* The title of the label to dismiss the alert when presenting user facing error messages */ "ErrorRecovery.Alert.OK" = "是"; @@ -37,9 +43,6 @@ /* 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 登入"; @@ -65,7 +68,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" = "登入"; @@ -75,3 +78,12 @@ /* The label for FBSDKShareButton */ "ShareButton.Share" = "分享"; + +/* Prompts a person if this is their current account */ +"SmartLogin.NotYou" = "這不是您?"; + +/* Text on a button that a person presses to confirm that they are finished with the login experience */ +"SmartLogin.ConfirmationTitle" = "確認登入" + +/* Text on a button that lets a person continue with their name linked to a Facebook account (Name = %@) */ +"SmartLogin.Continue" = "以 %@ 身分繼續"; diff --git a/samples/Catalog/Catalog/AppInviteViewController.m b/samples/Catalog/Catalog/AppInviteViewController.m index 994720d995..5ffe856453 100644 --- a/samples/Catalog/Catalog/AppInviteViewController.m +++ b/samples/Catalog/Catalog/AppInviteViewController.m @@ -45,7 +45,7 @@ - (IBAction)appInvitesWithCustomImage:(id)sender FBSDKAppInviteContent *content =[[FBSDKAppInviteContent alloc] init]; // Facebook hosted App Link is used here. See https://developers.facebook.com/docs/applinks for details. content.appLinkURL = [NSURL URLWithString:@"https://fb.me/1539184863038815"]; - content.appInvitePreviewImageURL = [NSURL URLWithString:@"http://catalogapp.parseapp.com/FacebookDeveloper.jpg"]; + content.appInvitePreviewImageURL = [NSURL URLWithString:@"https://d3uu10x6fsg06w.cloudfront.net/catalogapp/FacebookDeveloper.png"]; [FBSDKAppInviteDialog showFromViewController:self withContent:content delegate:self]; } diff --git a/samples/LoginSample/LoginSample/Info.plist b/samples/LoginSample/LoginSample/Info.plist index da740a39c4..dcf4b3d5c4 100644 --- a/samples/LoginSample/LoginSample/Info.plist +++ b/samples/LoginSample/LoginSample/Info.plist @@ -9,7 +9,7 @@ CFBundleExecutable $(EXECUTABLE_NAME) CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) + ${FB_BUNDLE_ID} CFBundleInfoDictionaryVersion 6.0 CFBundleName diff --git a/samples/LoginSample/LoginSample/SettingsUtil.m b/samples/LoginSample/LoginSample/SettingsUtil.m index 12cb9f758b..76d208ee42 100644 --- a/samples/LoginSample/LoginSample/SettingsUtil.m +++ b/samples/LoginSample/LoginSample/SettingsUtil.m @@ -124,17 +124,17 @@ + (void)setAdvancedUIManagerForController:(id)controller AKFButtonType confirmButtonType = [FBTweakValue(@"Settings", @"AccountKit", @"Confirm Button", @(AKFButtonTypeDefault), [SettingsUtil entryButtonTweakValues]) integerValue]; AKFTextPosition textPosition = [FBTweakValue(@"Settings", @"AccountKit", @"Text Position", @(AKFButtonTypeDefault), [SettingsUtil textPositionTweakValues]) integerValue]; if ([Theme isReverbTheme:theme.themeType]) { - controller.advancedUIManager = [[ReverbUIManager alloc] initWithConfirmButtonType:confirmButtonType - entryButtonType:entryButtonType - loginType:controller.loginType - textPosition:textPosition - theme:(ReverbTheme *)theme - delegate:nil]; + controller.uiManager = [[ReverbUIManager alloc] initWithConfirmButtonType:confirmButtonType + entryButtonType:entryButtonType + loginType:controller.loginType + textPosition:textPosition + theme:(ReverbTheme *)theme + delegate:nil]; } else { - controller.advancedUIManager = [[AdvancedUIManager alloc] initWithConfirmButtonType:confirmButtonType - entryButtonType:entryButtonType - loginType:controller.loginType - textPosition:textPosition]; + controller.uiManager = [[AdvancedUIManager alloc] initWithConfirmButtonType:confirmButtonType + entryButtonType:entryButtonType + loginType:controller.loginType + textPosition:textPosition]; } } } diff --git a/samples/Scrumptious/scrumptious/SCShareUtility.m b/samples/Scrumptious/scrumptious/SCShareUtility.m index bb60057785..c9351d4f0e 100644 --- a/samples/Scrumptious/scrumptious/SCShareUtility.m +++ b/samples/Scrumptious/scrumptious/SCShareUtility.m @@ -139,21 +139,21 @@ - (NSString *)_existingMealURLWithTitle:(NSString *)title // These OG object URLs were created using the edit open graph feature of the graph tool // at https://www.developers.facebook.com/apps/ if ([title isEqualToString:@"Cheeseburger"]) { - return @"https://scrumptious-facebook.parseapp.com/meals/cheeseburger"; + return @"https://d3uu10x6fsg06w.cloudfront.net/scrumptious-facebook/cheeseburger.html"; } else if ([title isEqualToString:@"Pizza"]) { - return @"https://scrumptious-facebook.parseapp.com/meals/pizza"; + return @"https://d3uu10x6fsg06w.cloudfront.net/scrumptious-facebook/pizza.html"; } else if ([title isEqualToString:@"Hotdog"]) { - return @"https://scrumptious-facebook.parseapp.com/meals/hotdog"; + return @"https://d3uu10x6fsg06w.cloudfront.net/scrumptious-facebook/hotdog.html"; } else if ([title isEqualToString:@"Italian"]) { - return @"https://scrumptious-facebook.parseapp.com/meals/italian"; + return @"https://d3uu10x6fsg06w.cloudfront.net/scrumptious-facebook/italian.html"; } else if ([title isEqualToString:@"French"]) { - return @"https://scrumptious-facebook.parseapp.com/meals/french"; + return @"https://d3uu10x6fsg06w.cloudfront.net/scrumptious-facebook/french.html"; } else if ([title isEqualToString:@"Chinese"]) { - return @"https://scrumptious-facebook.parseapp.com/meals/chinese"; + return @"https://d3uu10x6fsg06w.cloudfront.net/scrumptious-facebook/chinese.html"; } else if ([title isEqualToString:@"Thai"]) { - return @"https://scrumptious-facebook.parseapp.com/meals/thai"; + return @"https://d3uu10x6fsg06w.cloudfront.net/scrumptious-facebook/thai.html"; } else if ([title isEqualToString:@"Indian"]) { - return @"https://scrumptious-facebook.parseapp.com/meals/indian"; + return @"https://d3uu10x6fsg06w.cloudfront.net/scrumptious-facebook/indian.html"; } else { return nil; } diff --git a/samples/ShareIt/ShareIt/SIMainViewController.m b/samples/ShareIt/ShareIt/SIMainViewController.m index 13ba5c0935..87bb1bef89 100644 --- a/samples/ShareIt/ShareIt/SIMainViewController.m +++ b/samples/ShareIt/ShareIt/SIMainViewController.m @@ -46,15 +46,15 @@ @implementation SIMainViewController + (NSArray *)demoPhotos { return @[ - [SIPhoto photoWithObjectURL:[NSURL URLWithString:@"http://shareitexampleapp.parseapp.com/goofy/"] + [SIPhoto photoWithObjectURL:[NSURL URLWithString:@"https://d3uu10x6fsg06w.cloudfront.net/shareitexampleapp/goofy/index.html"] title:@"Make a Goofy Face" rating:5 image:[UIImage imageNamed:@"Goofy"]], - [SIPhoto photoWithObjectURL:[NSURL URLWithString:@"http://shareitexampleapp.parseapp.com/viking/"] + [SIPhoto photoWithObjectURL:[NSURL URLWithString:@"https://d3uu10x6fsg06w.cloudfront.net/shareitexampleapp/viking/index.html"] title:@"Happy Viking, Happy Liking" rating:3 image:[UIImage imageNamed:@"Viking"]], - [SIPhoto photoWithObjectURL:[NSURL URLWithString:@"http://shareitexampleapp.parseapp.com/liking/"] + [SIPhoto photoWithObjectURL:[NSURL URLWithString:@"https://d3uu10x6fsg06w.cloudfront.net/shareitexampleapp/liking/index.html"] title:@"Happy Liking, Happy Viking" rating:4 image:[UIImage imageNamed:@"Liking"]],