├── .gitignore ├── .npmignore ├── README.md ├── android ├── .gitignore ├── .npmignore ├── README.md ├── build.gradle └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── erickarroyo │ │ └── accountkit │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── erickarroyo │ │ │ └── accountkit │ │ │ ├── AccountKitModule.java │ │ │ └── AccountKitPackage.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── erickarroyo │ └── accountkit │ └── ExampleUnitTest.java ├── index.js ├── ios ├── AccountKit │ ├── AccountKit.framework │ │ ├── AccountKit │ │ ├── Headers │ │ │ ├── AKFAccessToken.h │ │ │ ├── AKFAccount.h │ │ │ ├── AKFAccountKit.h │ │ │ ├── AKFAccountPreferences.h │ │ │ ├── AKFAdvancedUIManager.h │ │ │ ├── AKFAdvancedUIManaging.h │ │ │ ├── AKFButtonType.h │ │ │ ├── AKFConfiguring.h │ │ │ ├── AKFError.h │ │ │ ├── AKFErrorDetail.h │ │ │ ├── AKFLoginFlowState.h │ │ │ ├── AKFPhoneNumber.h │ │ │ ├── AKFResponseType.h │ │ │ ├── AKFSettings.h │ │ │ ├── AKFTheme.h │ │ │ ├── AKFTheming.h │ │ │ ├── AKFViewController.h │ │ │ └── AccountKit.h │ │ ├── Info.plist │ │ └── Modules │ │ │ └── module.modulemap │ └── AccountKitStrings.bundle │ │ └── Resources │ │ ├── af.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── ar.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── bn.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── cs.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── da.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── de.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── el.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── en.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── es.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── es_ES.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── fi.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── fr.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── gu.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── he.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── hi.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── hr.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── hu.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── id.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── it.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── ja.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── ko.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── ml.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── mr.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── ms.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── nb.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── nl.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── pa.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── pl.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── pt.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── pt_PT.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── ro.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── ru.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── sk.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── sv.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── ta.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── te.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── th.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── tl.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── tr.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── vi.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── zh.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ ├── zh_Hant_HK.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings │ │ └── zh_Hant_TW.lproj │ │ ├── AccountKit.strings │ │ └── AccountKitCountryCode.strings ├── RNAccountKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── erick.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── erick.xcuserdatad │ │ └── xcschemes │ │ ├── RNAccountKit.xcscheme │ │ └── xcschememanagement.plist └── RNAccountKit │ ├── RNAccountKit.h │ └── RNAccountKit.m └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ files 2 | .idea/ 3 | 4 | node_modules/ 5 | 6 | # OSX files 7 | .DS_Store -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoericK/react-native-account-kit/f778a49a3ad376e7e99d04ba500972a95371a2b6/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-native-account-kit 2 | React Native Account Kit for Android and iOS (soon) 3 | 4 | ## Installation 5 | 6 | ```bash 7 | npm install react-native-account-kit subscribable --save 8 | ``` 9 | 10 | ### Configure native projects 11 | #### [Android](https://github.com/CoericK/react-native-account-kit/tree/master/android/) 12 | #### [iOS](https://github.com/CoericK/react-native-account-kit/tree/master/android/) 13 | 14 | ### How to use it 15 | ```javascript 16 | ... 17 | 18 | import React, { 19 | DeviceEventEmitter 20 | } from 'react-native'; 21 | 22 | import AccountKit from 'react-native-account-kit'; 23 | var Subscribable = require('subscribable'); 24 | 25 | var AK = new AccountKit(); 26 | ... 27 | class MyProject extends Component { 28 | ... 29 | 30 | constructor(props, context) { 31 | super(props, context); 32 | 33 | 34 | AK.getCurrentAccessToken() 35 | .then(function (at) { 36 | console.log(at); 37 | }) 38 | .fail(function (e) { 39 | console.log(e); 40 | }); 41 | 42 | AK.getCurrentAccount() 43 | .then(function (account_info) { 44 | console.log(account_info); 45 | }) 46 | .fail(function (e) { 47 | console.log(e); 48 | }); 49 | } 50 | 51 | mixins = [Subscribable.Mixin]; 52 | ... 53 | } 54 | ``` 55 | 56 | * To call the Login/Register View 57 | 58 | ```javascript 59 | AK.loginWithPhone(); // Expects as Response Type a TOKEN by Default 60 | //AK.loginWithPhone(AK.RESPONSE_TYPE_CODE); // Set the response type as TOKEN if you need it 61 | 62 | //Now we need to set the listener for the successful login 63 | 64 | componentWillMount() { 65 | DeviceEventEmitter.addListener('AccountKitLogged', function (e:Event) { 66 | console.log(e); // Will have the token/code information 67 | }); 68 | } 69 | 70 | } 71 | ``` 72 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/.npmignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- 1 | * In `android/settings.gradle` 2 | 3 | ```gradle 4 | ... 5 | include ':react-native-account-kit' 6 | project(':react-native-account-kit').projectDir = new File(settingsDir, '../node_modules/react-native-account-kit/android') 7 | ``` 8 | 9 | * In `android/app/build.gradle` 10 | 11 | ```gradle 12 | ... 13 | dependencies { 14 | ... 15 | compile project(':react-native-account-kit') 16 | } 17 | ``` 18 | 19 | * Register Module (in MainActivity.java) 20 | 21 | ```java 22 | import com.erickarroyo.accountkit.AccountKitPackage;; // <--- import 23 | 24 | public class MainActivity extends .... { 25 | 26 | ...... 27 | 28 | @Override 29 | protected List getPackages() { 30 | return Arrays.asList( 31 | new MainReactPackage(), 32 | new AccountKitPackage() // <------ add this line to your MainActivity class 33 | ); 34 | } 35 | } 36 | 37 | ...... 38 | } 39 | ``` 40 | 41 | * In `manifest/AndroidManifest.xml` 42 | 43 | ```xml 44 | ... 45 | 46 | ... 47 | 48 | 49 | ... 50 | 51 | 52 | ... 53 | 54 | 57 | 60 | 63 | 64 | 65 | 69 | ... 70 | 71 | ... 72 | ``` 73 | 74 | 75 | * Create/Add a custom theme `values/themes.xml` to see more themes check the [Facebook Demo](https://github.com/fbsamples/account-kit-samples-for-android/blob/master/AccountKitSample/res/values/themes.xml) 76 | 77 | ```xml 78 | ... 79 | 80 | 81 | ... 82 | 83 | 84 | ... 85 | 101 | 102 | 111 | ... 112 | 113 | 114 | ``` -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 23 5 | buildToolsVersion "24.0.0 rc2" 6 | 7 | defaultConfig { 8 | minSdkVersion 16 9 | targetSdkVersion 23 10 | versionCode 1 11 | versionName "1.0" 12 | } 13 | buildTypes { 14 | release { 15 | minifyEnabled false 16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 17 | } 18 | } 19 | } 20 | 21 | repositories { 22 | mavenCentral() 23 | } 24 | dependencies { 25 | compile fileTree(dir: 'libs', include: ['*.jar']) 26 | //testCompile 'junit:junit:4.12' 27 | //compile 'com.android.support:appcompat-v7:23.3.0' 28 | compile 'com.facebook.react:react-native:0.20.1' 29 | compile 'com.facebook.android:account-kit-sdk:4.11.0' 30 | } 31 | -------------------------------------------------------------------------------- /android/src/androidTest/java/com/erickarroyo/accountkit/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.erickarroyo.accountkit; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /android/src/main/java/com/erickarroyo/accountkit/AccountKitPackage.java: -------------------------------------------------------------------------------- 1 | package com.erickarroyo.accountkit; 2 | 3 | import com.facebook.react.ReactPackage; 4 | import com.facebook.react.bridge.JavaScriptModule; 5 | import com.facebook.react.bridge.NativeModule; 6 | import com.facebook.react.bridge.ReactApplicationContext; 7 | import com.facebook.react.uimanager.ViewManager; 8 | 9 | import java.util.ArrayList; 10 | import java.util.Collections; 11 | import java.util.List; 12 | 13 | public class AccountKitPackage implements ReactPackage { 14 | 15 | @Override 16 | public List createNativeModules(ReactApplicationContext reactContext) { 17 | 18 | List modules = new ArrayList<>(); 19 | 20 | modules.add(new AccountKitModule(reactContext)); 21 | 22 | return modules; 23 | 24 | } 25 | 26 | @Override 27 | public List> createJSModules() { 28 | return Collections.emptyList(); 29 | } 30 | 31 | @Override 32 | public List createViewManagers(ReactApplicationContext reactContext) { 33 | return Collections.emptyList(); 34 | } 35 | } -------------------------------------------------------------------------------- /android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | accountkit 3 | 4 | -------------------------------------------------------------------------------- /android/src/test/java/com/erickarroyo/accountkit/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.erickarroyo.accountkit; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | import React from 'react-native'; 3 | 4 | var Q = require('q'); 5 | 6 | const {DeviceEventEmitter, NativeModules } = React; 7 | 8 | const {AccountKitManager} = NativeModules; 9 | 10 | export default class AccountKit { 11 | 12 | constructor() { 13 | this.RESPONSE_TYPE_TOKEN = 'TOKEN'; 14 | this.RESPONSE_TYPE_CODE = 'CODE'; 15 | } 16 | 17 | 18 | loginWithPhone(response_type = 'TOKEN') { 19 | if (response_type === this.RESPONSE_TYPE_TOKEN || response_type === this.RESPONSE_TYPE_CODE) { 20 | AccountKitManager.loginWithPhone(response_type); 21 | } else { 22 | console.log('Warning: Please select a valid response type'); 23 | } 24 | } 25 | 26 | 27 | getCurrentAccessToken() { 28 | var d = Q.defer(); 29 | AccountKitManager.getCurrentAccessToken((e, access_token)=> { 30 | if (e) { 31 | d.reject(e); 32 | } else { 33 | d.resolve(access_token); 34 | } 35 | }); 36 | 37 | return d.promise; 38 | } 39 | 40 | getCurrentAccount() { 41 | var d = Q.defer(); 42 | AccountKitManager.getCurrentAccount((e, current_account)=> { 43 | if (e) { 44 | d.reject(e); 45 | } else { 46 | d.resolve(current_account); 47 | } 48 | }); 49 | 50 | return d.promise; 51 | } 52 | 53 | logOut() { 54 | AccountKitManager.logOut(); 55 | } 56 | 57 | 58 | } -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/AccountKit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoericK/react-native-account-kit/f778a49a3ad376e7e99d04ba500972a95371a2b6/ios/AccountKit/AccountKit.framework/AccountKit -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFAccessToken.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | NS_ASSUME_NONNULL_BEGIN 22 | 23 | @protocol AKFAccessToken 24 | 25 | /*! 26 | @abstract The account kit account ID. 27 | */ 28 | @property (nonatomic, copy, readonly) NSString *accountID; 29 | 30 | /*! 31 | @abstract The Facebook application ID. 32 | */ 33 | @property (nonatomic, copy, readonly) NSString *applicationID; 34 | 35 | /*! 36 | @abstract The time the receiver was last refreshed. 37 | */ 38 | @property (nonatomic, copy, readonly) NSDate *lastRefresh; 39 | 40 | /*! 41 | @abstract The interval at which the token should be refreshed. 42 | */ 43 | @property (nonatomic, readonly, assign) NSTimeInterval tokenRefreshInterval; 44 | 45 | /*! 46 | @abstract The opaque token string. 47 | */ 48 | @property (nonatomic, readonly, copy) NSString *tokenString; 49 | 50 | @end 51 | 52 | NS_ASSUME_NONNULL_END 53 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFAccount.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | @class AKFPhoneNumber; 22 | 23 | NS_ASSUME_NONNULL_BEGIN 24 | 25 | @protocol AKFAccount 26 | 27 | /*! 28 | @abstract The account kit account ID. 29 | */ 30 | @property (nonatomic, readonly, copy) NSString *accountID; 31 | 32 | /*! 33 | @abstract The account kit account email address. 34 | */ 35 | @property (nullable, nonatomic, readonly, copy) NSString *emailAddress; 36 | 37 | /*! 38 | @abstract The account kit account phone number. 39 | */ 40 | @property (nullable, nonatomic, readonly, copy) AKFPhoneNumber *phoneNumber; 41 | 42 | @end 43 | 44 | NS_ASSUME_NONNULL_END 45 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFAccountKit.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | #import 22 | #import 23 | #import 24 | #import 25 | #import 26 | 27 | @class AKFPhoneNumber; 28 | 29 | NS_ASSUME_NONNULL_BEGIN 30 | 31 | /*! 32 | @abstract Callback that receives AccountKit account information. 33 | */ 34 | typedef void (^AKFRequestAccountHandler)(id _Nullable account, NSError *_Nullable error); 35 | 36 | /*! 37 | @abstract Primary interface for authenticating AccountKit accounts. 38 | */ 39 | @interface AKFAccountKit : NSObject 40 | 41 | /*! 42 | @abstract The version of the Account Kit Graph API used. 43 | */ 44 | + (NSString *)graphVersionString; 45 | 46 | /*! 47 | #abstract The version of the Account Kit SDK. 48 | */ 49 | + (NSString *)versionString; 50 | 51 | /*! 52 | @abstract Retrieve the current access token, if any. 53 | */ 54 | @property (nullable, nonatomic, copy, readonly) id currentAccessToken; 55 | 56 | /*! 57 | @abstract Init Account Kit with a specified response type. 58 | */ 59 | - (instancetype)initWithResponseType:(AKFResponseType)responseType 60 | NS_DESIGNATED_INITIALIZER; 61 | 62 | - (instancetype)init NS_UNAVAILABLE; 63 | 64 | /*! 65 | @abstract Returns an instance of account preferences for the current access token. 66 | */ 67 | - (nullable AKFAccountPreferences *)accountPreferences; 68 | 69 | /*! 70 | @abstract Cancels the pending login request. 71 | */ 72 | - (void)cancelLogin; 73 | 74 | /*! 75 | @abstract Logs out currently logged in account. 76 | */ 77 | - (void)logOut; 78 | 79 | /*! 80 | @abstract Asynchronously returns Account Kit account information 81 | */ 82 | - (void)requestAccount:(AKFRequestAccountHandler)handler; 83 | 84 | /*! 85 | @abstract Returns a view controller to be presented to initiate an email login. 86 | */ 87 | - (UIViewController *)viewControllerForEmailLogin; 88 | 89 | /*! 90 | @abstract Returns a view controller to be presented to initiate an email login. 91 | @param email the email to be used for login. 92 | @param state the state for the login request. 93 | */ 94 | - (UIViewController *)viewControllerForEmailLoginWithEmail:(nullable NSString *)email 95 | state:(nullable NSString *)state; 96 | 97 | /*! 98 | @abstract Returns a view controller to be presented to initiate a phone login. 99 | */ 100 | - (UIViewController *)viewControllerForPhoneLogin; 101 | 102 | /*! 103 | @abstract Returns a view controller to be presented to initiate a phone login. 104 | @param phoneNumber the phone number to be used for login. 105 | @param state the state for the login request. 106 | */ 107 | - (UIViewController *)viewControllerForPhoneLoginWithPhoneNumber:(nullable AKFPhoneNumber *)phoneNumber 108 | state:(nullable NSString *)state; 109 | 110 | /*! 111 | @abstract Returns a view controller to resume a login that was pending when the app shutdown. 112 | */ 113 | - (UIViewController *)viewControllerForLoginResume; 114 | 115 | @end 116 | 117 | NS_ASSUME_NONNULL_END 118 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFAdvancedUIManager.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | #import 22 | #import 23 | 24 | /*! 25 | @abstract A controller that exposes actions to the AKFAdvancedUIManager 26 | */ 27 | @protocol AKFAdvancedUIActionController 28 | 29 | /*! 30 | @abstract Triggers a pop of the current state. 31 | */ 32 | - (void)back; 33 | 34 | @end 35 | 36 | /*! 37 | @abstract Manager for advanced UI configuration. 38 | */ 39 | @protocol AKFAdvancedUIManager 40 | 41 | @optional 42 | 43 | /*! 44 | @abstract Returns a custom view to use above the scrollable content. 45 | 46 | @param state the current state of the login flow 47 | 48 | @return a View or null for the default view 49 | */ 50 | - (nullable UIView *)actionBarViewForState:(AKFLoginFlowState)state; 51 | 52 | /*! 53 | @abstract Returns a custom view for the body in the middle of the scrollable container. 54 | 55 | @param state the current state of the login flow 56 | 57 | @return a View or null for the default view 58 | */ 59 | - (nullable UIView *)bodyViewForState:(AKFLoginFlowState)state; 60 | 61 | /*! 62 | @abstract Returns the button type for the given login state. 63 | 64 | @discussion This method is only called for PhoneLogin, EmailLogin and ConfirmationCode states. 65 | 66 | @param state the current state of the login flow 67 | 68 | @return the button type for the state 69 | */ 70 | - (AKFButtonType)buttonTypeForState:(AKFLoginFlowState)state; 71 | 72 | /*! 73 | @abstract Returns a custom view for the bottom of the content in the scrollable container. 74 | 75 | @param state the current state of the login flow 76 | 77 | @return a View or null for the default view 78 | */ 79 | - (nullable UIView *)footerViewForState:(AKFLoginFlowState)state; 80 | 81 | /*! 82 | @abstract Returns a custom view for the top of the content in the scrollable container. 83 | 84 | @param state the current state of the login flow 85 | 86 | @return a View or null for the default view 87 | */ 88 | - (nullable UIView *)headerViewForState:(AKFLoginFlowState)state; 89 | 90 | /*! 91 | @abstract Provides a controller for the receiver that can send messages back to the current controller. 92 | 93 | @discussion This method will be called before any views are retrieved. 94 | 95 | @param actionController the action controller 96 | */ 97 | - (void)setActionController:(nonnull id)actionController; 98 | 99 | /*! 100 | @abstract Called when an error is encountered and should be displayed in the UI. 101 | 102 | @discussion This method will be called before the views are retrieved. 103 | 104 | @param error the error 105 | */ 106 | - (void)setError:(nonnull NSError *)error; 107 | 108 | @end 109 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFAdvancedUIManaging.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | #import 22 | 23 | @protocol AKFAdvancedUIManaging 24 | 25 | @property (nonatomic, strong) id advancedUIManager; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFButtonType.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | /*! 22 | @abstract The button types that can be used within the Account Kit UI. 23 | */ 24 | typedef NS_ENUM(NSUInteger, AKFButtonType) 25 | { 26 | /*! 27 | @abstract The default button text will be used for the current context. 28 | */ 29 | AKFButtonTypeDefault, 30 | 31 | /*! 32 | @abstract "Begin" (localized) 33 | */ 34 | AKFButtonTypeBegin, 35 | 36 | /*! 37 | @abstract "Confirm" (localized) 38 | */ 39 | AKFButtonTypeConfirm, 40 | 41 | /*! 42 | @abstract "Continue" (localized) 43 | */ 44 | AKFButtonTypeContinue, 45 | 46 | /*! 47 | @abstract "Log In" (localized) 48 | */ 49 | AKFButtonTypeLogIn, 50 | 51 | /*! 52 | @abstract "Next" (localized) 53 | */ 54 | AKFButtonTypeNext, 55 | 56 | /*! 57 | @abstract "OK" (localized) 58 | */ 59 | AKFButtonTypeOK, 60 | 61 | /*! 62 | @abstract "Send" (localized) 63 | */ 64 | AKFButtonTypeSend, 65 | 66 | /*! 67 | @abstract "Start" (localized) 68 | */ 69 | AKFButtonTypeStart, 70 | 71 | /*! 72 | @abstract "Submit" (localized) 73 | */ 74 | AKFButtonTypeSubmit, 75 | }; 76 | 77 | extern const NSUInteger AKFButtonTypeCount; 78 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFConfiguring.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | @protocol AKFConfiguring 22 | 23 | /*! 24 | @abstract List of country codes to disallow. 25 | */ 26 | @property (nonatomic, copy) NSArray *blacklistedCountryCodes; 27 | 28 | /*! 29 | @abstract Specifies the default country code to select. 30 | */ 31 | @property (nonatomic, copy) NSString *defaultCountryCode; 32 | 33 | /*! 34 | @abstract Specifies if the app supports sending codes to Facebook (as an SMS alternative) 35 | */ 36 | @property (nonatomic) BOOL enableSendToFacebook; 37 | 38 | /*! 39 | @abstract List of country codes to allow. 40 | */ 41 | @property (nonatomic, copy) NSArray *whitelistedCountryCodes; 42 | 43 | @end 44 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFError.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | NS_ASSUME_NONNULL_BEGIN 22 | 23 | /*! 24 | @abstract The AccountKit error domain. 25 | */ 26 | extern NSString *const AKFErrorDomain; 27 | 28 | /*! 29 | @abstract The userInfo key for the developer message in errors. 30 | */ 31 | extern NSString *const AKFErrorDeveloperMessageKey; 32 | 33 | /*! 34 | @abstract The userInfo key for the user message in errors. 35 | */ 36 | extern NSString *const AKFErrorUserMessageKey; 37 | 38 | /*! 39 | @abstract The userInfo key for the object that caused the error. 40 | */ 41 | extern NSString *const AKFErrorObjectKey; 42 | 43 | /*! 44 | @abstract Top level error codes from the AccountKit framework. 45 | @discussion Use the NSUnderlyingErrorKey to retrieve underlying errors with more details if necessary. 46 | */ 47 | typedef NS_ENUM(NSInteger, AKFErrorCode) 48 | { 49 | /*! 50 | @abstract A request failed due to a network error. 51 | @discussion It is generally suitable to present UI to check the network connection when this error code is received. 52 | */ 53 | AKFNetworkConnectionError = 100, 54 | 55 | /*! 56 | @abstract Server generated an error. 57 | @discussion Use AKFErrorDeveloperMessageKey to retrieve the details of the server error from the underlying error. 58 | */ 59 | AKFServerError = 200, 60 | 61 | /*! 62 | @abstract The existing login request has become invalid. 63 | @discussion A new login request must be initiated. See AKFLoginRequestInvalidatedErrorCode for underlying error codes. 64 | */ 65 | AKFLoginRequestInvalidatedError = 300, 66 | 67 | /*! 68 | @abstract A parameter value that is entered is invalid. 69 | @discussion The data passed into the SDK has an invalid value. In most cases this can be resolved by presenting UI to 70 | re-enter the data correctly. See AKFInvalidParameterValueErrorCode for underlying error codes. 71 | */ 72 | AKFInvalidParameterValueError = 400, 73 | }; 74 | 75 | NS_ASSUME_NONNULL_END 76 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFErrorDetail.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | NS_ASSUME_NONNULL_BEGIN 22 | 23 | /*! 24 | @abstract The AccountKit error domain for server errors (underlying errors). 25 | */ 26 | extern NSString *const AKFServerErrorDomain; 27 | 28 | typedef NS_ENUM(NSInteger, AKFServerErrorCode) 29 | { 30 | /*! 31 | @abstract An invalid parameter value was found. 32 | @discussion The SDK does not know how to handle this parameter value from the server. 33 | */ 34 | AKFInvalidServerParameterValueError = 201, 35 | }; 36 | 37 | typedef NS_ENUM(NSInteger, AKFLoginRequestInvalidatedErrorCode) 38 | { 39 | /*! 40 | @abstract The request has expired without completing. 41 | */ 42 | AKFLoginRequestExpiredError = 301, 43 | }; 44 | 45 | typedef NS_ENUM(NSInteger, AKFInvalidParameterValueErrorCode) 46 | { 47 | /*! 48 | @abstract The email address value is invalid. 49 | */ 50 | AKFInvalidEmailAddressError = 401, 51 | 52 | /*! 53 | @abstract The phone number value is invalid. 54 | */ 55 | AKFInvalidPhoneNumberError = 402, 56 | 57 | /*! 58 | @abstract The value is not of the appropriate type for NSCoding. 59 | */ 60 | AKFInvalidCodingValueError = 403, 61 | 62 | /*! 63 | @abstract No valid access token is available. 64 | */ 65 | AKFInvalidAccessTokenError = 404, 66 | 67 | /*! 68 | @abstract The key for account preferences is invalid. 69 | */ 70 | AKFInvalidAccountPreferenceKeyError = 405, 71 | 72 | /*! 73 | @abstract The value for account preferences is invalid. 74 | */ 75 | AKFInvalidAccountPreferenceValueError = 406, 76 | 77 | /*! 78 | @abstract The operation was not successful. 79 | */ 80 | AKFOperationNotSuccessful = 407, 81 | }; 82 | 83 | typedef NS_ENUM(NSInteger, AKFServerResponseErrorCode) 84 | { 85 | AKFServerResponseErrorCodeInvalidConfirmationCode = 15003, 86 | }; 87 | 88 | NS_ASSUME_NONNULL_END 89 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFLoginFlowState.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | /*! 22 | @abstract States for the login flow. 23 | */ 24 | typedef NS_ENUM(NSUInteger, AKFLoginFlowState) 25 | { 26 | /*! 27 | @abstract No flow state is available. 28 | */ 29 | AKFLoginFlowStateNone, 30 | 31 | /*! 32 | @abstract The phone number is being entered. 33 | */ 34 | AKFLoginFlowStatePhoneNumberInput, 35 | 36 | /*! 37 | @abstract The email address is being entered. 38 | */ 39 | AKFLoginFlowStateEmailInput, 40 | 41 | /*! 42 | @abstract The email is being verified. 43 | */ 44 | AKFLoginFlowStateEmailVerify, 45 | 46 | /*! 47 | @abstract The confirmation code is sending. 48 | */ 49 | AKFLoginFlowStateSendingCode, 50 | 51 | /*! 52 | @abstract The confirmation code is sent. 53 | */ 54 | AKFLoginFlowStateSentCode, 55 | 56 | /*! 57 | @abstract The confirmation code is being entered. 58 | */ 59 | AKFLoginFlowStateCodeInput, 60 | 61 | /*! 62 | @abstract The confirmation code is being verified. 63 | */ 64 | AKFLoginFlowStateVerifyingCode, 65 | 66 | /*! 67 | @abstract The confirmation code is verified. 68 | */ 69 | AKFLoginFlowStateVerified, 70 | 71 | /*! 72 | @abstract An error is being presented. 73 | */ 74 | AKFLoginFlowStateError, 75 | }; 76 | 77 | extern const NSUInteger AKFLoginFlowStateCount; 78 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFPhoneNumber.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | NS_ASSUME_NONNULL_BEGIN 22 | 23 | @interface AKFPhoneNumber : NSObject 24 | 25 | - (instancetype)initWithCountryCode:(NSString *)countryCode 26 | phoneNumber:(NSString *)phoneNumber NS_DESIGNATED_INITIALIZER; 27 | 28 | - (instancetype)init NS_UNAVAILABLE; 29 | + (instancetype)new NS_UNAVAILABLE; 30 | 31 | @property (nonatomic, copy, readonly) NSString *countryCode; 32 | @property (nonatomic, copy, readonly) NSString *phoneNumber; 33 | 34 | - (BOOL)isEqualToPhoneNumber:(AKFPhoneNumber *)phoneNumber; 35 | 36 | - (NSString *)stringRepresentation; 37 | 38 | @end 39 | 40 | NS_ASSUME_NONNULL_END 41 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFResponseType.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | typedef NS_ENUM(NSUInteger, AKFResponseType) { 22 | /* 23 | @abstract Indicates that the requested response type is an access token. 24 | */ 25 | AKFResponseTypeAccessToken, 26 | 27 | /* 28 | @abstract Indicates that the requested response type is an authorization code that can be exchanged for an access 29 | token. 30 | */ 31 | AKFResponseTypeAuthorizationCode, 32 | }; 33 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFSettings.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | NS_ASSUME_NONNULL_BEGIN 22 | 23 | /*! 24 | AccountKit application settings. 25 | */ 26 | @interface AKFSettings : NSObject 27 | 28 | /*! 29 | @abstract Get the Account Kit Client Token used by the SDK. 30 | @discussion If not explicitly set, the default will be read from the application's plist (AccountKitClientToken). 31 | */ 32 | + (NSString *)clientToken; 33 | 34 | /*! 35 | @abstract Set the Account Kit Client Token used by the SDK. 36 | @param clientToken The Account Kit Client Token to be used by the SDK. 37 | */ 38 | + (void)setClientToken:(NSString *)clientToken; 39 | 40 | @end 41 | 42 | NS_ASSUME_NONNULL_END 43 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFTheme.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | NS_ASSUME_NONNULL_BEGIN 22 | 23 | typedef NS_ENUM(NSUInteger, AKFHeaderTextType) 24 | { 25 | AKFHeaderTextTypeLogin, 26 | AKFHeaderTextTypeAppName, 27 | }; 28 | 29 | extern const NSUInteger AKFHeaderTextTypeCount; 30 | 31 | @interface AKFTheme : NSObject 32 | 33 | + (instancetype)defaultTheme; 34 | + (instancetype)outlineTheme; 35 | + (instancetype)outlineThemeWithPrimaryColor:(UIColor *)primaryColor 36 | primaryTextColor:(UIColor *)primaryTextColor 37 | secondaryTextColor:(UIColor *)secondaryTextColor 38 | statusBarStyle:(UIStatusBarStyle)statusBarStyle; 39 | + (instancetype)themeWithPrimaryColor:(UIColor *)primaryColor 40 | primaryTextColor:(UIColor *)primaryTextColor 41 | secondaryColor:(UIColor *)secondaryColor 42 | secondaryTextColor:(UIColor *)secondaryTextColor 43 | statusBarStyle:(UIStatusBarStyle)statusBarStyle; 44 | 45 | @property (nonatomic, copy) UIColor *backgroundColor; 46 | @property (nullable, nonatomic, copy) UIImage *backgroundImage; 47 | @property (nonatomic, copy) UIColor *buttonBackgroundColor; 48 | @property (nonatomic, copy) UIColor *buttonBorderColor; 49 | @property (nonatomic, copy) UIColor *buttonDisabledBackgroundColor; 50 | @property (nonatomic, copy) UIColor *buttonDisabledBorderColor; 51 | @property (nonatomic, copy) UIColor *buttonDisabledTextColor; 52 | @property (nonatomic, copy) UIColor *buttonHighlightedBackgroundColor; 53 | @property (nonatomic, copy) UIColor *buttonHighlightedBorderColor; 54 | @property (nonatomic, copy) UIColor *buttonHighlightedTextColor; 55 | @property (nonatomic, copy) UIColor *buttonTextColor; 56 | @property (nonatomic, copy) UIColor *headerBackgroundColor; 57 | @property (nonatomic, copy) UIColor *headerTextColor; 58 | @property (nonatomic, assign) AKFHeaderTextType headerTextType; 59 | @property (nonatomic, copy) UIColor *iconColor; 60 | @property (nonatomic, copy) UIColor *inputBackgroundColor; 61 | @property (nonatomic, copy) UIColor *inputBorderColor; 62 | @property (nonatomic, copy) UIColor *inputTextColor; 63 | @property (nonatomic, assign) UIStatusBarStyle statusBarStyle; 64 | @property (nonatomic, copy) UIColor *textColor; 65 | @property (nonatomic, copy) UIColor *titleColor; 66 | 67 | - (BOOL)isEqualToTheme:(AKFTheme *)theme; 68 | 69 | @end 70 | 71 | NS_ASSUME_NONNULL_END 72 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFTheming.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | @class AKFTheme; 22 | 23 | NS_ASSUME_NONNULL_BEGIN 24 | 25 | @protocol AKFTheming 26 | 27 | @property (null_resettable, nonatomic, copy) AKFTheme *theme UI_APPEARANCE_SELECTOR; 28 | 29 | @end 30 | 31 | NS_ASSUME_NONNULL_END 32 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AKFViewController.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | 21 | #import 22 | #import 23 | #import 24 | #import 25 | 26 | @protocol AKFViewControllerDelegate; 27 | 28 | @protocol AKFViewController 29 | 30 | @property (nonatomic, weak) id delegate; 31 | 32 | @end 33 | 34 | @protocol AKFViewControllerDelegate 35 | 36 | @optional 37 | 38 | - (void)viewController:(UIViewController *)viewController didCompleteLoginWithAuthorizationCode:(NSString *)code state:(NSString *)state; 39 | - (void)viewController:(UIViewController *)viewController didCompleteLoginWithAccessToken:(id)accessToken state:(NSString *)state; 40 | - (void)viewController:(UIViewController *)viewController didFailWithError:(NSError *)error; 41 | - (void)viewControllerDidCancel:(UIViewController *)viewController; 42 | 43 | @end 44 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Headers/AccountKit.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | 19 | #import 20 | #import 21 | #import 22 | #import 23 | #import 24 | #import 25 | #import 26 | #import 27 | #import 28 | #import 29 | #import 30 | #import 31 | #import 32 | #import 33 | #import 34 | #import 35 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoericK/react-native-account-kit/f778a49a3ad376e7e99d04ba500972a95371a2b6/ios/AccountKit/AccountKit.framework/Info.plist -------------------------------------------------------------------------------- /ios/AccountKit/AccountKit.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module AccountKit { 2 | umbrella header "AccountKit.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/af.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Terug"; 23 | "com_accountkit_button_begin" = "Begin"; 24 | "com_accountkit_button_cancel" = "Kanselleer"; 25 | "com_accountkit_button_confirm" = "Bevestig"; 26 | "com_accountkit_button_continue" = "Gaan voort"; 27 | "com_accountkit_button_log_in" = "Meld aan"; 28 | "com_accountkit_button_next" = "Volgende"; 29 | "com_accountkit_button_ok" = "Goed"; 30 | "com_accountkit_button_resend" = "Stuur nuwe kode"; 31 | "com_accountkit_button_resend_sms" = "Stuur weer SMS"; 32 | "com_accountkit_button_send" = "Stuur"; 33 | "com_accountkit_button_send_code_in_fb" = "Stuur kode in Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Tik Stuur kode in Facebook om 'n kennisgewing na die Facebook-rekening te stuur wat met die foonnommer verbind is wat jy ingevoer het."; 35 | "com_accountkit_button_start" = "Begin"; 36 | "com_accountkit_button_start_over" = "Probeer weer"; 37 | "com_accountkit_button_submit" = "Dien in"; 38 | "com_accountkit_check_email" = "Maak jou e-pos oop"; 39 | "com_accountkit_confirmation_code_agreement" = "Tik %1$@ om Facebook se Bepalings, Databeleid en koekiegebruik te aanvaar."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Tik %1$@ om Facebook se Bepalings, Databeleid, koekiegebruik en die Privaatheidsbeleid van %6$@ te aanvaar."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Tik %1$@ om Facebook se Bepalings, Databeleid, koekiegebruik en die Privaatheidsbeleid en Diensbepalings van %7$@ te aanvaar."; 42 | "com_accountkit_confirmation_code_text" = "Stuur nuwe kode"; 43 | "com_accountkit_confirmation_code_title" = "Voer jou kode in"; 44 | "com_accountkit_country_code_title" = "Kies jou land"; 45 | "com_accountkit_email_invalid" = "Hierdie e-pos is verkeerd. Probeer asseblief weer."; 46 | "com_accountkit_email_loading_title" = "Stuur tans e-pos\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Bevestig jou e-pos"; 48 | "com_accountkit_email_login_text" = "Tik %1$@ om 'n bevestiging-e-pos vanaf Account Kit te kry wat deur Facebook aangedryf is. %2$@ gebruik dit om jou te help om aan te meld, maar jy benodig nie 'n Facebook-rekening nie. Kom meer te wete."; 49 | "com_accountkit_email_login_title" = "Voer jou e-posadres in"; 50 | "com_accountkit_email_not_received" = "Stuur weer e-pos"; 51 | "com_accountkit_email_verify_title" = "Maak die e-pos oop wat ons gestuur het en bevestig jou adres"; 52 | "com_accountkit_error_title" = "Ons is jammer, iets het verkeerd gegaan."; 53 | "com_accountkit_facebook_code_entry_title" = "Voer jou kode van Facebook in"; 54 | "com_accountkit_phone_loading_title" = "Stuur tans jou kode\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Nommer"; 56 | "com_accountkit_phone_login_retry_title" = "Bevestig jou foonnommer"; 57 | "com_accountkit_phone_login_text" = "Tik %1$@ om 'n bevestiging-teksboodskap vanaf Account Kit te kry wat deur Facebook aangedryf is. %2$@ gebruik dit om jou te help om aan te meld, maar jy benodig nie 'n Facebook-rekening nie. Boodskap- en datatariewe kan dalk geld. Kom meer te wete."; 58 | "com_accountkit_phone_login_title" = "Voer jou foonnommer in"; 59 | "com_accountkit_resend_email_text" = "Stuur nuwe e-pos"; 60 | "com_accountkit_resend_title" = "Ons is jammer. Probeer hierdie opsies om voort te gaan."; 61 | "com_accountkit_return_title" = "Neem jou tans terug na %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Gestuur!"; 63 | "com_accountkit_success_title" = "Klaar!"; 64 | "com_accountkit_toolbar_title" = "Meld by %1$@ aan"; 65 | "com_accountkit_verify_confirmation_code_title" = "Ons kon nie jou kode verifieer nie. Probeer asseblief weer:"; 66 | "com_accountkit_verify_title" = "Verifieer tans jou kode\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/ar.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "رجوع"; 23 | "com_accountkit_button_begin" = "بدء"; 24 | "com_accountkit_button_cancel" = "إلغاء"; 25 | "com_accountkit_button_confirm" = "تأكيد"; 26 | "com_accountkit_button_continue" = "متابعة"; 27 | "com_accountkit_button_log_in" = "تسجيل الدخول"; 28 | "com_accountkit_button_next" = "التالي"; 29 | "com_accountkit_button_ok" = "موافق"; 30 | "com_accountkit_button_resend" = "إرسال رمز جديد"; 31 | "com_accountkit_button_resend_sms" = "إعادة إرسال رسالة SMS"; 32 | "com_accountkit_button_send" = "إرسال"; 33 | "com_accountkit_button_send_code_in_fb" = "إرسال الرمز على فيسبوك"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "اضغط على \"إرسال الرمز\" في فيسبوك لإرسال إشعار إلى حساب فيسبوك المرتبط برقم الهاتف الذي أدخلته."; 35 | "com_accountkit_button_start" = "بدء"; 36 | "com_accountkit_button_start_over" = "حاول مرة أخرى"; 37 | "com_accountkit_button_submit" = "تقديم"; 38 | "com_accountkit_check_email" = "فتح البريد الإلكتروني"; 39 | "com_accountkit_confirmation_code_agreement" = "اضغط على %1$@ لقبول شروط سياسة بيانات واستخدام ملفات تعريف الارتباط لفيسبوك."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "اضغط على %1$@ لقبول شروط خصوصية بيانات واستخدام ملفات تعريف الارتباط لفيسبوك وسياسة خصوصية %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "اضغط على %1$@ لقبول شروط خصوصية بيانات واستخدام ملفات تعريف الارتباط لفيسبوك وسياسة خصوصية وشروط خدمة %7$@."; 42 | "com_accountkit_confirmation_code_text" = "إعادة إرسال الرمز"; 43 | "com_accountkit_confirmation_code_title" = "أدخل الرمز"; 44 | "com_accountkit_country_code_title" = "حدد بلدك"; 45 | "com_accountkit_email_invalid" = "عنوان البريد الإلكتروني غير صحيح. يرجى المحاولة مرة أخرى."; 46 | "com_accountkit_email_loading_title" = "جارٍ إرسال بريد إلكتروني\U2026"; 47 | "com_accountkit_email_login_retry_title" = "قم بتأكيد بريدك الإلكتروني"; 48 | "com_accountkit_email_login_text" = "اضغط على %1$@ للحصول على رسالة بريد إلكتروني للتأكيد من Account Kit من Facebook. يستخدم %2$@ هذا لمساعدتك على التسجيل، لكن ليس من الضروري أن يكون لديك حساب على فيسبوك. تعرف على المزيد."; 49 | "com_accountkit_email_login_title" = "أدخل عنوان بريدك الإلكتروني"; 50 | "com_accountkit_email_not_received" = "إعادة إرسال البريد الإلكتروني"; 51 | "com_accountkit_email_verify_title" = "افتح البريد الإلكتروني الذي تم إرساله وقم بتأكيد عنوانك"; 52 | "com_accountkit_error_title" = "عذراً، حدث خطأ ما."; 53 | "com_accountkit_facebook_code_entry_title" = "أدخل الرمز الذي تم إرساله من فيسبوك"; 54 | "com_accountkit_phone_loading_title" = "جارٍ إرسال الرمز\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "الرقم"; 56 | "com_accountkit_phone_login_retry_title" = "تأكيد رقم هاتفك"; 57 | "com_accountkit_phone_login_text" = "اضغط على %1$@ للحصول على تأكيد عبر رسالة SMS من Account Kit من Facebook. يستخدم %2$@ هذا لمساعدتك على التسجيل، لكن ليس من الضروري أن يكون لديك حساب على فيسبوك. يتم تطبيق أسعار الرسائل وبيانات الاتصال. تعرف على المزيد."; 58 | "com_accountkit_phone_login_title" = "أدخل رقم هاتفك"; 59 | "com_accountkit_resend_email_text" = "إرسال بريد إلكتروني جديد"; 60 | "com_accountkit_resend_title" = "نأسف لذلك. جرّب هذه الخيارات للمتابعة."; 61 | "com_accountkit_return_title" = "عودة إلى %1$@\U2026"; 62 | "com_accountkit_sent_title" = "تم الإرسال!"; 63 | "com_accountkit_success_title" = "تم!"; 64 | "com_accountkit_toolbar_title" = "تسجيل الدخول إلى %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "تعذر علينا\ التحقق من رمزك. يرجى إعادة المحاولة:"; 66 | "com_accountkit_verify_title" = "جارٍ التحقق من الرمز\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/bn.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "ফিরুন"; 23 | "com_accountkit_button_begin" = "আরম্ভ করুন"; 24 | "com_accountkit_button_cancel" = "বাতিল করুন"; 25 | "com_accountkit_button_confirm" = "নিশ্চিত করুন"; 26 | "com_accountkit_button_continue" = "অবিরত রাখুন"; 27 | "com_accountkit_button_log_in" = "লগ ইন করুন"; 28 | "com_accountkit_button_next" = "পরবর্তী"; 29 | "com_accountkit_button_ok" = "ঠিক আছে"; 30 | "com_accountkit_button_resend" = "নতুন কোড পাঠান"; 31 | "com_accountkit_button_resend_sms" = "পুনরায় SMS পাঠান"; 32 | "com_accountkit_button_send" = "পাঠান"; 33 | "com_accountkit_button_send_code_in_fb" = "Facebook এ কোড পাঠান"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "আপনার প্রবেশ করানো ফোন নম্বরের সাথে লিঙ্ক করা Facebook অ্যাকাউন্টে একটি বিজ্ঞপ্তি পাঠাতে Facebook এ 'কোড পাঠান' এ আলতো চাপুন৷"; 35 | "com_accountkit_button_start" = "শুরু করুন"; 36 | "com_accountkit_button_start_over" = "আবার চেষ্টা করুন"; 37 | "com_accountkit_button_submit" = "জমা দিন"; 38 | "com_accountkit_check_email" = "আপনার ইমেল খুলুন"; 39 | "com_accountkit_confirmation_code_agreement" = "Facebook এর শ্র্তাবলী, ডেটা নীতি এবং কুকির ব্যবহার স্বীকার করার জন্য %1$@ এ আলতো চাপ দিন৷"; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Facebook এর শ্র্তাবলী, ডেটা নীতি, কুকির ব্যবহার এবং %6$@ এর গোপনীয়তা নীতি স্বীকার করার জন্য %1$@ এ আলতো চাপ দিন৷"; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Facebook এর শ্র্তাবলী, ডেটা নীতি, কুকির ব্যবহার এবং গোপনীয়তা নীতি এবং %7$@ এর পরিষেবার শ্র্তাবলী স্বীকার করার জন্য %1$@ এ আলতো চাপ দিন৷"; 42 | "com_accountkit_confirmation_code_text" = "নতুন কোড পাঠান"; 43 | "com_accountkit_confirmation_code_title" = "আপনার কোড লিখুন"; 44 | "com_accountkit_country_code_title" = "আপনার দেশ নির্বাচন করুন"; 45 | "com_accountkit_email_invalid" = "এই ইমেলটি অবৈধ৷ অনুগ্রহ করে আবার চেষ্টা করুন৷"; 46 | "com_accountkit_email_loading_title" = "ইমেল পাঠানো হচ্ছে\U2026"; 47 | "com_accountkit_email_login_retry_title" = "আপনার ইমেল নিশ্চিত করুন"; 48 | "com_accountkit_email_login_text" = "Facebook এর Account Kit থেকে একটি নিশ্চিতকরণ ইমেল পেতে %1$@ এ আলতো চাপ দিন৷ %2$@ এটি আপনাকে সাইন ইন করতে সাহায্য করার জন্য ব্যবহার করে, কিন্তু আপনার কোনো Facebook অ্যাকাউণ্টের প্রয়োজন নেই। আরও জানুন। "; 49 | "com_accountkit_email_login_title" = "আপনার ইমেল ঠিকানা লিখুন"; 50 | "com_accountkit_email_not_received" = "ইমেল পুনরায় পাঠান"; 51 | "com_accountkit_email_verify_title" = "আমরা যে ইমেলটি পাঠিয়েছি সেটি খুলুন এবং আপনার ঠিকানা নিশ্চিত করুন"; 52 | "com_accountkit_error_title" = "আমরা দুঃখিত, কিছু ত্রুটি ঘটেছে৷"; 53 | "com_accountkit_facebook_code_entry_title" = "Facebook থেকে আপনার কোড প্রবেশ করান"; 54 | "com_accountkit_phone_loading_title" = "আপনার কোড পাঠানো হচ্ছে\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "নম্বর"; 56 | "com_accountkit_phone_login_retry_title" = "আপনার ফোন নম্বর নিশ্চিত করুন"; 57 | "com_accountkit_phone_login_text" = "Facebook এর Account Kit থেকে একটি নিশ্চিতকরণ ইমেল পেতে %1$@ এ আলতো চাপ দিন৷ %2$@ এটি আপনাকে সাইন ইন করতে সাহায্য করার জন্য ব্যবহার করে, কিন্তু আপনার কোনো Facebook অ্যাকাউণ্টের প্রয়োজন নেই। বার্তা ও ডেটা রেটগুলি প্রযোজ্য হবে। আরও জানুন। "; 58 | "com_accountkit_phone_login_title" = "আপনার ফোন নম্বর লিখুন"; 59 | "com_accountkit_resend_email_text" = "নতুন ইমেল পাঠান"; 60 | "com_accountkit_resend_title" = "আমরা দুঃখিত৷ চালিয়ে যেতে এই বিকল্পসমূহ ব্যবহার করার চেষ্টা করুন৷"; 61 | "com_accountkit_return_title" = "আপনাকে আবার %1$@ এ নিয়ে যাচ্ছে\U2026"; 62 | "com_accountkit_sent_title" = "প্রেরিত:"; 63 | "com_accountkit_success_title" = "সম্পন্ন!"; 64 | "com_accountkit_toolbar_title" = "%1$@ এ লগ ইন করুন"; 65 | "com_accountkit_verify_confirmation_code_title" = "আমরা আপনার কোড যাচাই করতে পারি নি। অনুগ্রহ করে পুনরায় চেষ্টা করুন।"; 66 | "com_accountkit_verify_title" = "আপনার কোড যাচাই করা হচ্ছে\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/cs.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Zpět"; 23 | "com_accountkit_button_begin" = "Začít"; 24 | "com_accountkit_button_cancel" = "Zrušit"; 25 | "com_accountkit_button_confirm" = "Potvrdit"; 26 | "com_accountkit_button_continue" = "Pokračovat"; 27 | "com_accountkit_button_log_in" = "Přihlásit se"; 28 | "com_accountkit_button_next" = "Další"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Poslat nový kód"; 31 | "com_accountkit_button_resend_sms" = "Znovu poslat SMS"; 32 | "com_accountkit_button_send" = "Poslat"; 33 | "com_accountkit_button_send_code_in_fb" = "Poslat kód na Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Klepněte na Facebooku na možnost poslat kód. Tím se odešle upozornění na Facebook účet spojený se zadaným telefonním číslem."; 35 | "com_accountkit_button_start" = "Spustit"; 36 | "com_accountkit_button_start_over" = "Zkuste to znovu"; 37 | "com_accountkit_button_submit" = "Odeslat"; 38 | "com_accountkit_check_email" = "Otevřete e-mail"; 39 | "com_accountkit_confirmation_code_agreement" = "Klepnutím na %1$@ přijmete podmínky, zásady používání dat a zásady používání souborů cookie Facebooku."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Klepnutím na %1$@ přijmete podmínky, zásady používání dat, zásady používání souborů cookie a zásady soukromí Facebooku služby %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Klepnutím na %1$@ přijmete podmínky, zásady používání dat, zásady používání souborů cookie a zásady soukromí a smluvní podmínky Facebooku služby %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Znovu poslat kód"; 43 | "com_accountkit_confirmation_code_title" = "Zadejte kód"; 44 | "com_accountkit_country_code_title" = "Vyberte zemi"; 45 | "com_accountkit_email_invalid" = "Tento e-mail není správný. Zkuste to znovu."; 46 | "com_accountkit_email_loading_title" = "Odesílání e-mailu\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Potvrdit e-mail"; 48 | "com_accountkit_email_login_text" = "Klepněte na %1$@ a dostanete ze služby Account Kit založené na technologii Facebooku potvrzovací e-mail. Služba %2$@ tuto možnost využívá, abyste se mohli přihlásit, vy ale účet na Facebooku nepotřebujete. Další informace."; 49 | "com_accountkit_email_login_title" = "Zadejte e-mailovou adresu"; 50 | "com_accountkit_email_not_received" = "Poslat e-mail znovu"; 51 | "com_accountkit_email_verify_title" = "Otevřete e-mail, který jsme vám poslali, a svoji adresu potvrďte"; 52 | "com_accountkit_error_title" = "Je nám líto, ale něco se nepovedlo."; 53 | "com_accountkit_facebook_code_entry_title" = "Zadejte kód z Facebooku"; 54 | "com_accountkit_phone_loading_title" = "Posílání kódu\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Číslo"; 56 | "com_accountkit_phone_login_retry_title" = "Potvrďte telefonní číslo"; 57 | "com_accountkit_phone_login_text" = "Klepněte na %1$@ a dostanete ze služby Account Kit založené na technologii Facebooku potvrzovací SMS. Služba %2$@ tuto možnost využívá, abyste se mohli přihlásit, vy ale účet na Facebooku nepotřebujete. Zprávy a data jsou zpoplatněna podle příslušného tarifu. Další informace."; 58 | "com_accountkit_phone_login_title" = "Zadejte telefonní číslo"; 59 | "com_accountkit_resend_email_text" = "Poslat nový e-mail"; 60 | "com_accountkit_resend_title" = "Je nám líto. Zkuste tyto možnosti a pokračujte."; 61 | "com_accountkit_return_title" = "Přesměrování zpět na %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Odesláno!"; 63 | "com_accountkit_success_title" = "Hotovo!"; 64 | "com_accountkit_toolbar_title" = "Přihlaste se k %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Kód jsme nemohli ověřit.\nZkuste to znovu:"; 66 | "com_accountkit_verify_title" = "Ověřování kódu\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/da.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Tilbage"; 23 | "com_accountkit_button_begin" = "Begynd"; 24 | "com_accountkit_button_cancel" = "Annuller"; 25 | "com_accountkit_button_confirm" = "Bekræft"; 26 | "com_accountkit_button_continue" = "Fortsæt"; 27 | "com_accountkit_button_log_in" = "Log på"; 28 | "com_accountkit_button_next" = "Næste"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Send ny kode"; 31 | "com_accountkit_button_resend_sms" = "Send sms igen"; 32 | "com_accountkit_button_send" = "Send"; 33 | "com_accountkit_button_send_code_in_fb" = "Send kode i Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Tryk på Send kode i Facebook for at sende en notifikation til den Facebook-konto, der er knyttet til det telefonnummer, du har indtastet."; 35 | "com_accountkit_button_start" = "Start"; 36 | "com_accountkit_button_start_over" = "Prøv igen"; 37 | "com_accountkit_button_submit" = "Indsend"; 38 | "com_accountkit_check_email" = "Åbn din e-mail"; 39 | "com_accountkit_confirmation_code_agreement" = "Tryk på %1$@ for at acceptere Facebooks vilkår, datapolitik og brug af cookies."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Tryk på %1$@ for at acceptere Facebooks vilkår, datapolitik og brug af cookies samt %6$@s politik om beskyttelse af personlige oplysninger."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Tryk på %1$@ for at acceptere Facebooks vilkår, datapolitik og brug af cookies samt %7$@s politik om beskyttelse af personlige oplysninger og tjenestevilkår."; 42 | "com_accountkit_confirmation_code_text" = "Send kode igen"; 43 | "com_accountkit_confirmation_code_title" = "Indtast din kode"; 44 | "com_accountkit_country_code_title" = "Vælg dit land"; 45 | "com_accountkit_email_invalid" = "E-mailen er ikke korrekt. Prøv igen."; 46 | "com_accountkit_email_loading_title" = "Sender e-mail \U2026"; 47 | "com_accountkit_email_login_retry_title" = "Bekræft din e-mail"; 48 | "com_accountkit_email_login_text" = "Tryk på %1$@ for at få en bekræftelsesmail fra Account Kit leveret af Facebook. %2$@ bruger dette til at hjælpe dig med at logge på, men det er ikke nødvendigt at have en Facebook-konto. Læs mere."; 49 | "com_accountkit_email_login_title" = "Indtast din e-mailadresse"; 50 | "com_accountkit_email_not_received" = "Send e-mail igen"; 51 | "com_accountkit_email_verify_title" = "Åbn den e-mail, vi har sendt, og bekræft din adresse"; 52 | "com_accountkit_error_title" = "Der gik desværre noget galt."; 53 | "com_accountkit_facebook_code_entry_title" = "Indtast din kode fra Facebook"; 54 | "com_accountkit_phone_loading_title" = "Sender din kode\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Nummer"; 56 | "com_accountkit_phone_login_retry_title" = "Bekræft dit telefonnummer"; 57 | "com_accountkit_phone_login_text" = "Tryk på %1$@ for at få en sms-bekræftelse fra Account Kit leveret af Facebook. %2$@ bruger dette til at hjælpe dig med at logge på, men det er ikke nødvendigt at have en Facebook-konto. Du skal muligvis betale for beskeder og dataforbrug. Læs mere."; 58 | "com_accountkit_phone_login_title" = "Indtast dit telefonnummer"; 59 | "com_accountkit_resend_email_text" = "Send ny e-mail"; 60 | "com_accountkit_resend_title" = "Vi beklager. Prøv følgende for at fortsætte."; 61 | "com_accountkit_return_title" = "Fører dig tilbage til %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Sendt!"; 63 | "com_accountkit_success_title" = "Færdig!"; 64 | "com_accountkit_toolbar_title" = "Log på %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Koden blev ikke bekræftet. Prøv igen:"; 66 | "com_accountkit_verify_title" = "Verificerer din kode\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/en.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Back"; 23 | "com_accountkit_button_begin" = "Begin"; 24 | "com_accountkit_button_cancel" = "Cancel"; 25 | "com_accountkit_button_confirm" = "Confirm"; 26 | "com_accountkit_button_continue" = "Continue"; 27 | "com_accountkit_button_log_in" = "Log In"; 28 | "com_accountkit_button_next" = "Next"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Send New Code"; 31 | "com_accountkit_button_resend_sms" = "Resend SMS"; 32 | "com_accountkit_button_send" = "Send"; 33 | "com_accountkit_button_send_code_in_fb" = "Send Code in Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Tap Send Code in Facebook to send a notification to the Facebook account linked to the phone number you entered."; 35 | "com_accountkit_button_start" = "Start"; 36 | "com_accountkit_button_start_over" = "Try Again"; 37 | "com_accountkit_button_submit" = "Submit"; 38 | "com_accountkit_check_email" = "Open your Email"; 39 | "com_accountkit_confirmation_code_agreement" = "Tap %1$@ to accept Facebook's Terms, Data Policy and cookie use."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Tap %1$@ to accept Facebook's Terms, Data Policy, cookie use and the Privacy Policy of %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Tap %1$@ to accept Facebook's Terms, Data Policy, cookie use and the Privacy Policy and Terms of Service of %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Send New Code"; 43 | "com_accountkit_confirmation_code_title" = "Enter your code"; 44 | "com_accountkit_country_code_title" = "Select Your Country"; 45 | "com_accountkit_email_invalid" = "This email is incorrect. Please try again."; 46 | "com_accountkit_email_loading_title" = "Sending email\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Confirm your email"; 48 | "com_accountkit_email_login_text" = "Tap %1$@ to get a confirmation email from Account Kit powered by Facebook. %2$@ uses this to help you sign in, but you don't need a Facebook account. Learn more."; 49 | "com_accountkit_email_login_title" = "Enter your email address"; 50 | "com_accountkit_email_not_received" = "Resend Email"; 51 | "com_accountkit_email_verify_title" = "Open the email and confirm your address"; 52 | "com_accountkit_error_title" = "We're sorry, something went wrong."; 53 | "com_accountkit_facebook_code_entry_title" = "Enter your code from Facebook"; 54 | "com_accountkit_phone_loading_title" = "Sending your code\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Number"; 56 | "com_accountkit_phone_login_retry_title" = "Confirm your phone number"; 57 | "com_accountkit_phone_login_text" = "Tap %1$@ to get an SMS confirmation from Account Kit powered by Facebook. %2$@ uses this to help you sign in, but you don't need a Facebook account. Message and data rates may apply. Learn more."; 58 | "com_accountkit_phone_login_title" = "Enter your phone number"; 59 | "com_accountkit_resend_email_text" = "Send New Email"; 60 | "com_accountkit_resend_title" = "We're sorry. Try these options to continue."; 61 | "com_accountkit_return_title" = "Taking you back to %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Sent!"; 63 | "com_accountkit_success_title" = "Done!"; 64 | "com_accountkit_toolbar_title" = "Log Into %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "We couldn't verify your code.\nPlease try again:"; 66 | "com_accountkit_verify_title" = "Verifying your code\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/es.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Atrás"; 23 | "com_accountkit_button_begin" = "Comenzar"; 24 | "com_accountkit_button_cancel" = "Cancelar"; 25 | "com_accountkit_button_confirm" = "Confirmar"; 26 | "com_accountkit_button_continue" = "Continuar"; 27 | "com_accountkit_button_log_in" = "Iniciar sesión"; 28 | "com_accountkit_button_next" = "Siguiente"; 29 | "com_accountkit_button_ok" = "Aceptar"; 30 | "com_accountkit_button_resend" = "Enviar código nuevo"; 31 | "com_accountkit_button_resend_sms" = "Reenviar SMS"; 32 | "com_accountkit_button_send" = "Enviar"; 33 | "com_accountkit_button_send_code_in_fb" = "Enviar código en Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Toca Enviar código para enviar una notificación a la cuenta de Facebook asociada con el número de teléfono que indicaste."; 35 | "com_accountkit_button_start" = "Inicio"; 36 | "com_accountkit_button_start_over" = "Intentar de nuevo"; 37 | "com_accountkit_button_submit" = "Enviar"; 38 | "com_accountkit_check_email" = "Abre tu correo electrónico"; 39 | "com_accountkit_confirmation_code_agreement" = "Toca %1$@ para aceptar las Condiciones, las Política de datos y el uso de cookies de Facebook."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Toca %1$@ para aceptar las Condiciones, la Política de datos, el uso de cookies y la Política de privacidad de %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Toca %1$@ para aceptar las Condiciones, la Política de datos, el uso de cookies, la Política de privacidad y las Condiciones del servicio de %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Reenviar código"; 43 | "com_accountkit_confirmation_code_title" = "Ingresa tu código"; 44 | "com_accountkit_country_code_title" = "Selecciona tu país"; 45 | "com_accountkit_email_invalid" = "La dirección de correo electrónico no es correcta. Vuelve a intentarlo."; 46 | "com_accountkit_email_loading_title" = "Enviando correo electrónico\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Confrirma tu dirección de correo electrónico"; 48 | "com_accountkit_email_login_text" = "Toca %1$@ para recibir un correo electrónico de confirmación de Account Kit de Facebook. %2$@ usa esto para ayudarte en el proceso de registro, pero no necesitas tener una cuenta de Facebook. Más información."; 49 | "com_accountkit_email_login_title" = "Escribe tu dirección de correo electrónico"; 50 | "com_accountkit_email_not_received" = "Reenviar correo electrónico"; 51 | "com_accountkit_email_verify_title" = "Abre el correo electrónico que te enviamos y confirma tu dirección"; 52 | "com_accountkit_error_title" = "Se produjo un error."; 53 | "com_accountkit_facebook_code_entry_title" = "Escribe tu código de Facebook"; 54 | "com_accountkit_phone_loading_title" = "Enviando tu código\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Número"; 56 | "com_accountkit_phone_login_retry_title" = "Confirma tu número de teléfono"; 57 | "com_accountkit_phone_login_text" = "Toca %1$@ para recibir un SMS de confirmación de Account Kit de Facebook. %2$@ usa esto para ayudarte en el proceso de registro, pero no necesitas tener una cuenta de Facebook. Es posible que se apliquen cargos por datos y mensajes. Más información."; 58 | "com_accountkit_phone_login_title" = "Escribe tu número de teléfono"; 59 | "com_accountkit_resend_email_text" = "Enviar un nuevo correo electrónico"; 60 | "com_accountkit_resend_title" = "Lo sentimos. Prueba estas opciones para continuar."; 61 | "com_accountkit_return_title" = "Se te está redirigiendo a %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Enviado"; 63 | "com_accountkit_success_title" = "¡Listo!"; 64 | "com_accountkit_toolbar_title" = "Iniciar sesión en %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "No pudimos verificar tu código.\nVuelve a intentarlo:"; 66 | "com_accountkit_verify_title" = "Verificando tu código\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/fi.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Takaisin"; 23 | "com_accountkit_button_begin" = "Aloita"; 24 | "com_accountkit_button_cancel" = "Peruuta"; 25 | "com_accountkit_button_confirm" = "Vahvista"; 26 | "com_accountkit_button_continue" = "Jatka"; 27 | "com_accountkit_button_log_in" = "Kirjaudu sisään"; 28 | "com_accountkit_button_next" = "Seuraava"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Lähetä uusi koodi"; 31 | "com_accountkit_button_resend_sms" = "Lähetä tekstiviesti uudelleen"; 32 | "com_accountkit_button_send" = "Lähetä"; 33 | "com_accountkit_button_send_code_in_fb" = "Lähetä koodi Facebookissa"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Napauta Lähetä koodi Facebookissa, niin ilmoitus lähetetään antamaasi puhelinnumeroon linkitettyyn Facebook-käyttäjätiliin."; 35 | "com_accountkit_button_start" = "Alku"; 36 | "com_accountkit_button_start_over" = "Yritä uudelleen"; 37 | "com_accountkit_button_submit" = "Lähetä"; 38 | "com_accountkit_check_email" = "Avaa sähköpostisi"; 39 | "com_accountkit_confirmation_code_agreement" = "Hyväksy Facebookin käyttöehdot, tietokäytäntö ja evästeiden käyttöä koskeva käytäntö valitsemalla %1$@."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Hyväksy Facebookin käyttöehdot, tietokäytäntö ja evästeiden käyttöä koskeva käytäntö ja sovelluksen %6$@ yksityisyyskäytäntö valitsemalla %1$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Hyväksy Facebookin käyttöehdot, tietokäytäntö ja evästeiden käyttöä koskeva käytäntö ja sovelluksen %7$@ yksityisyyskäytäntö ja käyttöehdot valitsemalla %1$@."; 42 | "com_accountkit_confirmation_code_text" = "Lähetä koodi uudelleen"; 43 | "com_accountkit_confirmation_code_title" = "Anna koodi"; 44 | "com_accountkit_country_code_title" = "Valitse maasi"; 45 | "com_accountkit_email_invalid" = "Sähköpostiosoite on virheellinen. Yritä uudelleen."; 46 | "com_accountkit_email_loading_title" = "Lähetetään sähköpostiviestiä\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Vahvista sähköpostisi"; 48 | "com_accountkit_email_login_text" = "Napauta %1$@, niin saat vahvistuksen Account Kit by Facebookilta sähköpostitse. %2$@ käyttää tätä auttaessaan sinua kirjautumaan sisään, mutta et tarvitse Facebook-tiliä. Lue lisää."; 49 | "com_accountkit_email_login_title" = "Anna sähköpostiosoitteesi"; 50 | "com_accountkit_email_not_received" = "Lähetä sähköpostiviesti uudelleen"; 51 | "com_accountkit_email_verify_title" = "Avaa lähettämämme sähköpostiviesti ja vahvista osoitteesi"; 52 | "com_accountkit_error_title" = "Valitettavasti tapahtui virhe."; 53 | "com_accountkit_facebook_code_entry_title" = "Anna Facebookista saamasi koodi"; 54 | "com_accountkit_phone_loading_title" = "Lähetetään koodiasi\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Numero"; 56 | "com_accountkit_phone_login_retry_title" = "Vahvista puhelinnumerosi"; 57 | "com_accountkit_phone_login_text" = "Napauta %1$@, niin saat vahvistuksen Account Kit by Facebookilta tekstiviestitse. %2$@ käyttää tätä auttaessaan sinua kirjautumaan sisään, mutta et tarvitse Facebook-tiliä. Viesteistä ja tiedonsiirrosta saatetaan veloittaa. Lue lisää."; 58 | "com_accountkit_phone_login_title" = "Anna puhelinnumerosi"; 59 | "com_accountkit_resend_email_text" = "Lähetä uusi sähköposti"; 60 | "com_accountkit_resend_title" = "Pahoittelemme. Jatka kokeilemalla näitä vaihtoehtoja."; 61 | "com_accountkit_return_title" = "Siirryt takaisin kohteeseen %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Lähetettiin!"; 63 | "com_accountkit_success_title" = "Valmis!"; 64 | "com_accountkit_toolbar_title" = "Kirjaudu sisään kohteeseen %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Koodin vahvistaminen epäonnistui. Yritä uudelleen:"; 66 | "com_accountkit_verify_title" = "Vahvistetaan koodiasi\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/gu.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "પાછળ"; 23 | "com_accountkit_button_begin" = "શરૂ કરો"; 24 | "com_accountkit_button_cancel" = "રદ કરો"; 25 | "com_accountkit_button_confirm" = "પુષ્ટિ કરો"; 26 | "com_accountkit_button_continue" = "ચાલુ રાખો"; 27 | "com_accountkit_button_log_in" = "લૉગ ઇન કરો"; 28 | "com_accountkit_button_next" = "આગલું"; 29 | "com_accountkit_button_ok" = "ઑકે"; 30 | "com_accountkit_button_resend" = "નવો કોડ મોકલો"; 31 | "com_accountkit_button_resend_sms" = "SMS ફરીથી મોકલો"; 32 | "com_accountkit_button_send" = "મોકલો"; 33 | "com_accountkit_button_send_code_in_fb" = "Facebook માં કોડ મોકલો"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "તમે દાખલ કરેલ ફોન નંબર સાથે લિંક કરેલ ફેસબુક એકાઉન્ટ પર સૂચના મોકલવા માટે ફેસબુકમાં કોડ મોકલો ટૅપ કરો."; 35 | "com_accountkit_button_start" = "પ્રારંભ કરો"; 36 | "com_accountkit_button_start_over" = "ફરી પ્રયાસ કરો"; 37 | "com_accountkit_button_submit" = "સબમિટ કરો"; 38 | "com_accountkit_check_email" = "તમારી ઈમેઇલ ખોલો"; 39 | "com_accountkit_confirmation_code_agreement" = "Facebook ની શરતો, ડેટા નીતિ અને કુકીનો ઉપયોગ સ્વીકારવા માટે %1$@ ટૅપ કરો."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Facebook ની શરતો, ડેટા નીતિ, કુકીનો ઉપયોગ અને %6$@ ની ગોપનીયતા નીતિ સ્વીકારવા માટે %1$@ ટૅપ કરો."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Facebook ની શરતો, ડેટા નીતિ, કુકીનો ઉપયોગ અને %7$@ ની ગોપનીયતા નીતિ અને સેવાની શરતો સ્વીકારવા માટે %1$@ ટૅપ કરો."; 42 | "com_accountkit_confirmation_code_text" = "નવો કોડ મોકલો"; 43 | "com_accountkit_confirmation_code_title" = "તમારો કોડ દાખલ કરો"; 44 | "com_accountkit_country_code_title" = "તમારો દેશ પસંદ કરો"; 45 | "com_accountkit_email_invalid" = "આ ઇમેઇલ ખોટું છે. કૃપા કરીને ફરી પ્રયાસ કરો."; 46 | "com_accountkit_email_loading_title" = "ઇમેઇલ મોકલી રહ્યાં છે\U2026"; 47 | "com_accountkit_email_login_retry_title" = "તમારી ઈમેઇલની પુષ્ટિ કરો"; 48 | "com_accountkit_email_login_text" = "Facebook ની Account Kit માંથી પુષ્ટિકરણ ઇમેઇલ મેળવવા માટે %1$@ ટૅપ કરો. %2$@ એ આનો ઉપયોગ તમને સાઇન ઇન કરવામાં મદદ માટે કરે છે, પરંતુ તમને ફેસબુક એકાઉન્ટની જરૂર પડતી નથી. વધુ જાણો."; 49 | "com_accountkit_email_login_title" = "તમારું ઇમેઇલ સરનામું દાખલ કરો"; 50 | "com_accountkit_email_not_received" = "ઇમેઇલ ફરીથી મોકલો"; 51 | "com_accountkit_email_verify_title" = "અમે મોકલેલ ઇમેઇલ ખોલો અને તમારા સરનામાની પુષ્ટિ કરો"; 52 | "com_accountkit_error_title" = "અમે ક્ષમાપ્રાર્થી છીએ, કંઈક ખોટું થયું."; 53 | "com_accountkit_facebook_code_entry_title" = "ફેસબુકમાંથી તમારો કોડ દાખલ કરો."; 54 | "com_accountkit_phone_loading_title" = "તમારો કોડ મોકલી રહ્યાં છીએ\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "નંબર"; 56 | "com_accountkit_phone_login_retry_title" = "તમારા ફોન નંબરની પુષ્ટિ કરો"; 57 | "com_accountkit_phone_login_text" = "Facebook દ્વારા સંચાલિત Account Kit માંથી SMS પુષ્ટિકરણ મેળવવા માટે %1$@ ટૅપ કરો. %2$@ એ આનો ઉપયોગ તમને સાઇન ઇન કરવામાં મદદ માટે કરે છે, પરંતુ તમને ફેસબુક એકાઉન્ટની જરૂર પડતી નથી. સંદેશ અને ડેટા દર લાગુ થઈ શકે છે. વધુ જાણો."; 58 | "com_accountkit_phone_login_title" = "તમારો ફોન નંબર દાખલ કરો"; 59 | "com_accountkit_resend_email_text" = "નવી ઇમેઇલ મોકલો"; 60 | "com_accountkit_resend_title" = "અમને ક્ષમા કરશો. ચાલુ રાખવા માટે આ વિકલ્પો અજમાવી જુઓ."; 61 | "com_accountkit_return_title" = "તમને %1$@ પર પાછા લઈ જઈ રહ્યાં છે\U2026"; 62 | "com_accountkit_sent_title" = "મોકલ્યો!"; 63 | "com_accountkit_success_title" = "પૂર્ણ થયું!"; 64 | "com_accountkit_toolbar_title" = "%1$@ માં લૉગ ઇન કરો"; 65 | "com_accountkit_verify_confirmation_code_title" = "અમે તમારો કોડ ચકાસી શક્યાં નથી. કૃપા કરીને ફરી પ્રયાસ કરો:"; 66 | "com_accountkit_verify_title" = "તમારો કોડ ચકાસી રહ્યાં છીએ\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/he.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "הקודם"; 23 | "com_accountkit_button_begin" = "התחל"; 24 | "com_accountkit_button_cancel" = "ביטול"; 25 | "com_accountkit_button_confirm" = "אשר"; 26 | "com_accountkit_button_continue" = "המשך"; 27 | "com_accountkit_button_log_in" = "התחבר"; 28 | "com_accountkit_button_next" = "הבא"; 29 | "com_accountkit_button_ok" = "אישור"; 30 | "com_accountkit_button_resend" = "שלח מחדש את הקוד"; 31 | "com_accountkit_button_resend_sms" = "שלח SMS שוב"; 32 | "com_accountkit_button_send" = "שלח"; 33 | "com_accountkit_button_send_code_in_fb" = "שלח את הקוד בפייסבוק"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "הקש על 'שלח קוד' בפייסבוק כדי לשלוח התראה לחשבון הפייסבוק המקושר למספר הטלפון שהזנת."; 35 | "com_accountkit_button_start" = "התחל"; 36 | "com_accountkit_button_start_over" = "נסה שוב"; 37 | "com_accountkit_button_submit" = "שלח"; 38 | "com_accountkit_check_email" = "פתח את הדוא\"ל"; 39 | "com_accountkit_confirmation_code_agreement" = "הקש על %1$@ כדי לקבל את ![CDATA[תנאי השימוש\\>, ![CDATA[מדיניות הנתונים\\> ו![CDATA[השימוש בקבצי Cookie\\> של פייסבוק."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "הקש על %1$@ כדי לקבל את ![CDATA[תנאי השימוש\\>, ![CDATA[מדיניות הנתונים\\> ו![CDATA[השימוש בקבצי Cookie\\> של פייסבוק ואת ![CDATA[מדיניות הפרטיות\\> של %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "הקש על %1$@ כדי לקבל את ![CDATA[תנאי השימוש\\>, ![CDATA[מדיניות הנתונים\\> ו![CDATA[השימוש בקבצי Cookie\\> של פייסבוק ואת ![CDATA[מדיניות הפרטיות\\> ו![CDATA[תנאי השירות\\> של %7$@."; 42 | "com_accountkit_confirmation_code_text" = "שלח מחדש את הקוד"; 43 | "com_accountkit_confirmation_code_title" = "הזן את הקוד"; 44 | "com_accountkit_country_code_title" = "בחר את המדינה שלך"; 45 | "com_accountkit_email_invalid" = "כתובת דוא\"ל זו שגויה. נסה שוב."; 46 | "com_accountkit_email_loading_title" = "שולח דוא\"ל\U2026"; 47 | "com_accountkit_email_login_retry_title" = "אשר את כתובת הדוא\"ל שלך"; 48 | "com_accountkit_email_login_text" = "הקש על %1$@ כדי לקבל אישור בדוא\"ל מ-Account Kit המופעל באמצעות פייסבוק. %2$@ משתמש באפשרות זו כדי לעזור לך להיכנס, אך אינך זקוק לחשבון פייסבוק. קבל מידע נוסף."; 49 | "com_accountkit_email_login_title" = "הזן את כתובת הדוא\"ל שלך"; 50 | "com_accountkit_email_not_received" = "שלח שוב דוא\"ל"; 51 | "com_accountkit_email_verify_title" = "פתח את הדוא\"ל ששלחנו ואשר את כתובתך"; 52 | "com_accountkit_error_title" = "אנחנו מצטערים, משהו השתבש."; 53 | "com_accountkit_facebook_code_entry_title" = "הזן את הקוד שלך מפייסבוק"; 54 | "com_accountkit_phone_loading_title" = "שולח את הקוד שלך\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "מספר"; 56 | "com_accountkit_phone_login_retry_title" = "אשר את מספר הטלפון שלך"; 57 | "com_accountkit_phone_login_text" = "הקש על %1$@ כדי לקבל אישור ב-SMS מ-Account Kit המופעל באמצעות פייסבוק. %2$@ משתמש באפשרות זו כדי לעזור לך להיכנס, אך אינך זקוק לחשבון פייסבוק. ייתכן שתחויב בתשלום לפי תעריפי ההודעות והנתונים. קבל מידע נוסף."; 58 | "com_accountkit_phone_login_title" = "הזן את מספר הטלפון שלך"; 59 | "com_accountkit_resend_email_text" = "שלח דוא\"ל חדש"; 60 | "com_accountkit_resend_title" = "אנו מצטערים. נסה אפשרויות אלה כדי להמשיך."; 61 | "com_accountkit_return_title" = "מחזירים אותך אל %1$@\U2026"; 62 | "com_accountkit_sent_title" = "נשלח!"; 63 | "com_accountkit_success_title" = "בוצע!"; 64 | "com_accountkit_toolbar_title" = "התחבר אל %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "לא הצלחנו לאמת את הקוד.\nנסה שוב:"; 66 | "com_accountkit_verify_title" = "מאמת את הקוד שלך\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/hi.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "वापस जाएँ"; 23 | "com_accountkit_button_begin" = "शुरू करें"; 24 | "com_accountkit_button_cancel" = "रद्द करें"; 25 | "com_accountkit_button_confirm" = "पुष्टि करें"; 26 | "com_accountkit_button_continue" = "जारी रखें"; 27 | "com_accountkit_button_log_in" = "लॉग इन करें"; 28 | "com_accountkit_button_next" = "अगला"; 29 | "com_accountkit_button_ok" = "ठीक"; 30 | "com_accountkit_button_resend" = "नया कोड भेजें"; 31 | "com_accountkit_button_resend_sms" = "SMS फिर से भेजें"; 32 | "com_accountkit_button_send" = "भेजें"; 33 | "com_accountkit_button_send_code_in_fb" = "Facebook में कोड भेजें"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "अपने द्वारा डाले गए फ़ोन नंबर से लिंक किए गए Facebook खाते पर सूचना भेजने के लिए Facebook में कोड भेजें टैप करें."; 35 | "com_accountkit_button_start" = "शुरू करें"; 36 | "com_accountkit_button_start_over" = "फिर से प्रयास करें"; 37 | "com_accountkit_button_submit" = "सबमिट करें"; 38 | "com_accountkit_check_email" = "अपना ईमेल खोलें"; 39 | "com_accountkit_confirmation_code_agreement" = "Facebook की शर्तों, डेटा नीति और कुकी उपयोग को स्वीकार करने के लिए %1$@ टैप करें."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Facebook की शर्तों, डेटा नीति, कुकी उपयोग और %6$@ की गोपनीयता नीति को स्वीकार करने के लिए %1$@ टैप करें."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Facebook की शर्तों, डेटा नीति, कुकी उपयोग और %7$@ की गोपनीयता नीति और सेवा की शर्तों को स्वीकार करने के लिए %1$@ टैप करें."; 42 | "com_accountkit_confirmation_code_text" = "कोड पुनः भेजें"; 43 | "com_accountkit_confirmation_code_title" = "अपना कोड डालें"; 44 | "com_accountkit_country_code_title" = "अपने देश का चयन करें"; 45 | "com_accountkit_email_invalid" = "यह ईमेल गलत है. कृपया फिर से कोशिश करें."; 46 | "com_accountkit_email_loading_title" = "ईमेल भेजा जा रहा है\U2026"; 47 | "com_accountkit_email_login_retry_title" = "अपना ईमेल कन्फ़र्म करें"; 48 | "com_accountkit_email_login_text" = "Facebook द्वारा संचालित Account Kit से कन्फ़र्मेशन ईमेल प्राप्त करने के लिए %1$@ टैप करें. साइन इन करने में आपकी मदद करने के लिए %2$@ इसका उपयोग करता है, लेकिन इसके लिए आपको Facebook खाते की आवश्यकता नहीं है. और जानें."; 49 | "com_accountkit_email_login_title" = "अपना ईमेल पता डालें"; 50 | "com_accountkit_email_not_received" = "ईमेल फिर से भेजें"; 51 | "com_accountkit_email_verify_title" = "हमारे द्वारा भेजा गया ईमेल खोलें और अपना पता कन्फ़र्म करें"; 52 | "com_accountkit_error_title" = "हमें खेद है, कुछ गड़बड़ी हुई."; 53 | "com_accountkit_facebook_code_entry_title" = "Facebook से अपना कोड डालें"; 54 | "com_accountkit_phone_loading_title" = "आपका कोड भेजा जा रहा है\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "नंबर"; 56 | "com_accountkit_phone_login_retry_title" = "अपना फ़ोन नंबर कन्फ़र्म करें"; 57 | "com_accountkit_phone_login_text" = "Facebook द्वारा संचालित Account Kit से SMS कन्फ़र्मेशन प्राप्त करने के लिए %1$@ टैप करें. साइन इन करने में आपकी मदद करने के लिए %2$@ इसका उपयोग करता है, लेकिन इसके लिए आपको Facebook खाते की आवश्यकता नहीं है. संदेश और डेटा दरें लागू हो सकती हैं. और जानें."; 58 | "com_accountkit_phone_login_title" = "अपना फ़ोन नंबर डालें"; 59 | "com_accountkit_resend_email_text" = "नया ईमेल भेजें"; 60 | "com_accountkit_resend_title" = "हमें खेद है. जारी रखने के लिए ये विकल्प आज़माएँ."; 61 | "com_accountkit_return_title" = "आपको वापस %1$@ पर ले जाया जा रहा है\U2026"; 62 | "com_accountkit_sent_title" = "भेजा दिया!"; 63 | "com_accountkit_success_title" = "पूर्ण!"; 64 | "com_accountkit_toolbar_title" = "%1$@ में लॉग इन करें"; 65 | "com_accountkit_verify_confirmation_code_title" = "हम आपका कोड सत्यापित नहीं कर सके.\nकृपया फिर से कोशिश करें:"; 66 | "com_accountkit_verify_title" = "आपका कोड सत्यापित किया जा रहा है\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/hr.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Natrag"; 23 | "com_accountkit_button_begin" = "Počni"; 24 | "com_accountkit_button_cancel" = "Odustani"; 25 | "com_accountkit_button_confirm" = "Potvrdi"; 26 | "com_accountkit_button_continue" = "Nastavi"; 27 | "com_accountkit_button_log_in" = "Prijava"; 28 | "com_accountkit_button_next" = "Dalje"; 29 | "com_accountkit_button_ok" = "U redu"; 30 | "com_accountkit_button_resend" = "Pošalji novi kod"; 31 | "com_accountkit_button_resend_sms" = "Ponovno pošalji SMS"; 32 | "com_accountkit_button_send" = "Pošalji"; 33 | "com_accountkit_button_send_code_in_fb" = "Pošalji kod na Facebooku"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Dodirnite Pošalji kod na Facebooku da biste poslali obavijest na Facebookov račun povezan s telefonskim brojem koji ste unijeli."; 35 | "com_accountkit_button_start" = "Početak"; 36 | "com_accountkit_button_start_over" = "Pokušajte ponovno"; 37 | "com_accountkit_button_submit" = "Pošalji"; 38 | "com_accountkit_check_email" = "Otvorite e-poštu"; 39 | "com_accountkit_confirmation_code_agreement" = "Dodirnite %1$@ da biste prihvatili Facebookove uvjete, pravilnik o podacima i korištenje kolačića."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Dodirnite %1$@ da biste prihvatili Facebookove uvjete, pravilnik o podacima, korištenje kolačića i pravila zaštite podataka za %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Dodirnite %1$@ da biste prihvatili Facebookove uvjete, pravilnik o podacima, korištenje kolačića i pravila zaštite podataka te uvjete pružanja usluge za %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Pošalji novi kod"; 43 | "com_accountkit_confirmation_code_title" = "Unesite kod"; 44 | "com_accountkit_country_code_title" = "Odaberite državu"; 45 | "com_accountkit_email_invalid" = "Pogrešna adresa e-pošte. Pokušajte ponovno."; 46 | "com_accountkit_email_loading_title" = "Slanje e-pošte\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Potvrdite adresu e-pošte"; 48 | "com_accountkit_email_login_text" = "Dodirnite %1$@ da biste od Facebookova kompleta za račune primili poruku e-pošte s potvrdom. %2$@ vam time pojednostavnjuje prijavu, ali nije vam potreban račun na Facebooku. Saznajte više."; 49 | "com_accountkit_email_login_title" = "Unesite adresu e-pošte"; 50 | "com_accountkit_email_not_received" = "Ponovno pošalji e-poštu"; 51 | "com_accountkit_email_verify_title" = "Otvorite poruku e-pošte koju smo vam poslali i potvrdite svoju adresu"; 52 | "com_accountkit_error_title" = "Nažalost, nešto nije u redu."; 53 | "com_accountkit_facebook_code_entry_title" = "Unesite kod s Facebooka"; 54 | "com_accountkit_phone_loading_title" = "Slanje koda\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Broj"; 56 | "com_accountkit_phone_login_retry_title" = "Potvrdite telefonski broj"; 57 | "com_accountkit_phone_login_text" = "Dodirnite %1$@ da biste od Facebookova kompleta za račune primili SMS poruku s potvrdom. %2$@ vam time pojednostavnjuje prijavu, ali nije vam potreban račun na Facebooku. Naplaćuju se naknade za poruke i podatkovni promet. Saznajte više."; 58 | "com_accountkit_phone_login_title" = "Unesite telefonski broj"; 59 | "com_accountkit_resend_email_text" = "Pošalji novu poruku e-pošte"; 60 | "com_accountkit_resend_title" = "Žao nam je. Isprobajte ove mogućnosti da biste nastavili."; 61 | "com_accountkit_return_title" = "Vraćate se na %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Poslano!"; 63 | "com_accountkit_success_title" = "Gotovo!"; 64 | "com_accountkit_toolbar_title" = "Prijavite se na račun %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Nismo mogli potvrditi vaš kod. Unesite ga ponovno:"; 66 | "com_accountkit_verify_title" = "Potvrđivanje koda\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/id.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Kembali"; 23 | "com_accountkit_button_begin" = "Mulai"; 24 | "com_accountkit_button_cancel" = "Batalkan"; 25 | "com_accountkit_button_confirm" = "Konfirmasi"; 26 | "com_accountkit_button_continue" = "Lanjutkan"; 27 | "com_accountkit_button_log_in" = "Masuk"; 28 | "com_accountkit_button_next" = "Berikutnya"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Kirimkan Kode Baru"; 31 | "com_accountkit_button_resend_sms" = "Kirim ulang SMS"; 32 | "com_accountkit_button_send" = "Kirim"; 33 | "com_accountkit_button_send_code_in_fb" = "Kirim Kode di Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Ketuk Kirim Kode di Facebook untuk mengirimkan pemberitahuan ke akun Facebook yang ditautkan dengan nomor telepon yang Anda masukkan."; 35 | "com_accountkit_button_start" = "Mulai"; 36 | "com_accountkit_button_start_over" = "Coba Lagi"; 37 | "com_accountkit_button_submit" = "Ajukan"; 38 | "com_accountkit_check_email" = "Buka email Anda"; 39 | "com_accountkit_confirmation_code_agreement" = "Ketuk %1$@ untuk menerima Ketentuan, Kebijakan Data, dan penggunaan kuki Facebook."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Ketuk %1$@ untuk menerima Ketentuan, Kebijakan Data, penggunaan kuki, dan Kebijakan Privasi Facebook tentang %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Ketuk %1$@ untuk menerima Ketentuan, Kebijakan Data, penggunaan kuki, dan Kebijakan Privasi serta Ketentuan Layanan Facebook tentang %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Kirim Ulang Kode"; 43 | "com_accountkit_confirmation_code_title" = "Ketikkan kode Anda"; 44 | "com_accountkit_country_code_title" = "Pilih Negara Anda"; 45 | "com_accountkit_email_invalid" = "Email ini salah. Silakan coba lagi."; 46 | "com_accountkit_email_loading_title" = "Mengirimkan email\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Konfirmasi email Anda"; 48 | "com_accountkit_email_login_text" = "Ketuk %1$@ untuk mendapatkan email konfirmasi dari Account Kit yang dipersembahkan oleh Facebook. %2$@ menggunakan ini untuk membantu Anda masuk, tetapi Anda tidak memerlukan akun Facebook. Pelajari selengkapnya."; 49 | "com_accountkit_email_login_title" = "Masukkan alamat email Anda"; 50 | "com_accountkit_email_not_received" = "Kirim Ulang Email"; 51 | "com_accountkit_email_verify_title" = "Buka email yang kami kirimkan dan konfirmasikan alamat Anda"; 52 | "com_accountkit_error_title" = "Mohon maaf, ada masalah."; 53 | "com_accountkit_facebook_code_entry_title" = "Masukkan kode Anda dari Facebook"; 54 | "com_accountkit_phone_loading_title" = "Mengirimkan kode Anda\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Nomor"; 56 | "com_accountkit_phone_login_retry_title" = "Konfirmasikan nomor telepon Anda"; 57 | "com_accountkit_phone_login_text" = "Ketuk %1$@ untuk mendapatkan SMS konfirmasi dari Account Kit yang dipersembahkan oleh Facebook. %2$@ menggunakan ini untuk membantu Anda masuk, tetapi Anda tidak memerlukan akun Facebook. Mungkin berlaku biaya pengiriman pesan dan data. Pelajari selengkapnya."; 58 | "com_accountkit_phone_login_title" = "Masukkan nomor telepon Anda"; 59 | "com_accountkit_resend_email_text" = "Kirim Email Baru"; 60 | "com_accountkit_resend_title" = "Kami mohon maaf. Coba opsi ini untuk melanjutkan."; 61 | "com_accountkit_return_title" = "Mengembalikan Anda ke %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Dikirim!"; 63 | "com_accountkit_success_title" = "Selesai!"; 64 | "com_accountkit_toolbar_title" = "Masuk ke %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Kami tidak dapat memverifikasi kode Anda.\nHarap coba lagi:"; 66 | "com_accountkit_verify_title" = "Memverifikasi kode Anda\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/it.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Indietro"; 23 | "com_accountkit_button_begin" = "Inizia"; 24 | "com_accountkit_button_cancel" = "Annulla"; 25 | "com_accountkit_button_confirm" = "Conferma"; 26 | "com_accountkit_button_continue" = "Continua"; 27 | "com_accountkit_button_log_in" = "Accedi"; 28 | "com_accountkit_button_next" = "Avanti"; 29 | "com_accountkit_button_ok" = "Ok"; 30 | "com_accountkit_button_resend" = "Invia nuovo codice"; 31 | "com_accountkit_button_resend_sms" = "Invia nuovamente l'SMS"; 32 | "com_accountkit_button_send" = "Invia"; 33 | "com_accountkit_button_send_code_in_fb" = "Invia il codice su Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Tocca Invia codice su Facebook per inviare una notifica all'account Facebook associato al numero di telefono che hai inserito."; 35 | "com_accountkit_button_start" = "Avvia"; 36 | "com_accountkit_button_start_over" = "Riprova"; 37 | "com_accountkit_button_submit" = "Invia"; 38 | "com_accountkit_check_email" = "Apri la tua e-mail"; 39 | "com_accountkit_confirmation_code_agreement" = "Tocca %1$@ per accettare le Condizioni, la Normativa sui dati e l'uso dei cookie di Facebook."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Tocca %1$@ per accettare le Condizioni, la Normativa sui dati e l'uso dei cookie di Facebook e la Normativa sulla privacy di %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Tocca %1$@ per accettare le Condizioni, la Normativa sui dati e l'uso dei cookie di Facebook e la Normativa sulla privacy e le Condizioni d'uso di %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Invia nuovamente il codice"; 43 | "com_accountkit_confirmation_code_title" = "Inserisci il tuo codice"; 44 | "com_accountkit_country_code_title" = "Seleziona il tuo Paese"; 45 | "com_accountkit_email_invalid" = "Questo indirizzo e-mail non è corretto. Riprova."; 46 | "com_accountkit_email_loading_title" = "Invio dell'e-mail\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Conferma il tuo indirizzo e-mail"; 48 | "com_accountkit_email_login_text" = "Tocca %1$@ per ricevere un'e-mail di conferma da Account Kit di Facebook. %2$@ usa questa tecnologia per consentirti di effettuare l'accesso, ma non è necessario avere un account Facebook. Scopri di più."; 49 | "com_accountkit_email_login_title" = "Inserisci il tuo indirizzo e-mail"; 50 | "com_accountkit_email_not_received" = "Invia nuovamente e-mail"; 51 | "com_accountkit_email_verify_title" = "Apri l'e-mail che ti abbiamo inviato e conferma il tuo indirizzo"; 52 | "com_accountkit_error_title" = "Spiacenti, si è verificato un errore."; 53 | "com_accountkit_facebook_code_entry_title" = "Inserisci il codice ricevuto da Facebook"; 54 | "com_accountkit_phone_loading_title" = "Invio del codice\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Numero"; 56 | "com_accountkit_phone_login_retry_title" = "Conferma il tuo numero di telefono"; 57 | "com_accountkit_phone_login_text" = "Tocca %1$@ per ricevere un SMS di conferma da Account Kit di Facebook. %2$@ usa questa tecnologia per consentirti di effettuare l'accesso, ma non è necessario avere un account Facebook. Potrebbero essere applicati i costi per l'invio di messaggi e la trasmissione di dati. Scopri di più."; 58 | "com_accountkit_phone_login_title" = "Inserisci il tuo numero di telefono"; 59 | "com_accountkit_resend_email_text" = "Invia nuova e-mail"; 60 | "com_accountkit_resend_title" = "Spiacenti. Prova queste opzioni per continuare."; 61 | "com_accountkit_return_title" = "Reindirizzamento a %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Invio riuscito!"; 63 | "com_accountkit_success_title" = "Operazione completata!"; 64 | "com_accountkit_toolbar_title" = "Accedi a %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Non ci è stato possibile verificare il tuo codice.\nRiprova:"; 66 | "com_accountkit_verify_title" = "Verifica del tuo codice\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/ja.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "戻る"; 23 | "com_accountkit_button_begin" = "開始"; 24 | "com_accountkit_button_cancel" = "キャンセル"; 25 | "com_accountkit_button_confirm" = "確認"; 26 | "com_accountkit_button_continue" = "続行"; 27 | "com_accountkit_button_log_in" = "ログイン"; 28 | "com_accountkit_button_next" = "次へ"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "新しいコードの送信"; 31 | "com_accountkit_button_resend_sms" = "SMSを再送信"; 32 | "com_accountkit_button_send" = "送信"; 33 | "com_accountkit_button_send_code_in_fb" = "Facebookにコードを送信"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Facebookにコードを送信をタップすると、入力した電話番号に関連付けられているFacebookアカウントにお知らせが送信されます。"; 35 | "com_accountkit_button_start" = "開始"; 36 | "com_accountkit_button_start_over" = "もう一度試す"; 37 | "com_accountkit_button_submit" = "送信"; 38 | "com_accountkit_check_email" = "メールを開く"; 39 | "com_accountkit_confirmation_code_agreement" = "Facebookの利用規約データに関するポリシーCookieの使用に同意する場合は[%1$@]をタップしてください。"; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Facebookの利用規約データに関するポリシーCookieの使用、%6$@のプライバシーポリシーに同意する場合は[%1$@]をタップしてください。"; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Facebookの利用規約データに関するポリシーCookieの使用、%7$@のプライバシーポリシー利用規約に同意する場合は[%1$@]をタップしてください。"; 42 | "com_accountkit_confirmation_code_text" = "コードを再送信"; 43 | "com_accountkit_confirmation_code_title" = "コードを入力してください"; 44 | "com_accountkit_country_code_title" = "国を選択"; 45 | "com_accountkit_email_invalid" = "メールに誤りがあります。もう一度お試しください。"; 46 | "com_accountkit_email_loading_title" = "メールを送信中\U2026"; 47 | "com_accountkit_email_login_retry_title" = "メールアドレスを確認"; 48 | "com_accountkit_email_login_text" = "%1$@をタップすると、FacebookのAccount Kitから確認メールが送信されます。%2$@にサインインする際にこのメールを使用しますが、Facebookアカウントは不要です。詳しくはこちらをご覧ください。"; 49 | "com_accountkit_email_login_title" = "メールアドレスを入力"; 50 | "com_accountkit_email_not_received" = "メールを再送信"; 51 | "com_accountkit_email_verify_title" = "Facebookから届いたメールを開き、メールアドレスを確認してください。"; 52 | "com_accountkit_error_title" = "エラーが発生しました。"; 53 | "com_accountkit_facebook_code_entry_title" = "Facebookから送信されたコードを入力してください"; 54 | "com_accountkit_phone_loading_title" = "コードを送信しています\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "電話番号"; 56 | "com_accountkit_phone_login_retry_title" = "電話番号を認証してください"; 57 | "com_accountkit_phone_login_text" = "%1$@をタップすると、FacebookのAccount KitからSMSによる確認メッセージが送信されます。%2$@にサインインする際にこのメッセージを使用しますが、Facebookアカウントは不要です。メッセージとデータの通信料がかかることがあります。詳しくはこちらをご覧ください。"; 58 | "com_accountkit_phone_login_title" = "電話番号を入力してください"; 59 | "com_accountkit_resend_email_text" = "新しいメールを送信"; 60 | "com_accountkit_resend_title" = "申し訳ありません。続行するには、以下の方法を試してください。"; 61 | "com_accountkit_return_title" = "%1$@に戻ります\U2026"; 62 | "com_accountkit_sent_title" = "送信されました"; 63 | "com_accountkit_success_title" = "完了しました"; 64 | "com_accountkit_toolbar_title" = "%1$@にログイン"; 65 | "com_accountkit_verify_confirmation_code_title" = "コードを確認できませんでした。\nもう一度実行してください。"; 66 | "com_accountkit_verify_title" = "コードを認証しています\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/ko.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "뒤로"; 23 | "com_accountkit_button_begin" = "시작"; 24 | "com_accountkit_button_cancel" = "취소"; 25 | "com_accountkit_button_confirm" = "확인"; 26 | "com_accountkit_button_continue" = "계속"; 27 | "com_accountkit_button_log_in" = "로그인"; 28 | "com_accountkit_button_next" = "다음"; 29 | "com_accountkit_button_ok" = "확인"; 30 | "com_accountkit_button_resend" = "새 코드 보내기"; 31 | "com_accountkit_button_resend_sms" = "SMS 다시 보내기"; 32 | "com_accountkit_button_send" = "보내기"; 33 | "com_accountkit_button_send_code_in_fb" = "Facebook 코드 보내기"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Facebook 코드 보내기 버튼을 누르면 입력하신 전화번호와 연결된 Facebook 계정으로 알림을 보내드립니다."; 35 | "com_accountkit_button_start" = "시작"; 36 | "com_accountkit_button_start_over" = "다시 시도"; 37 | "com_accountkit_button_submit" = "제출"; 38 | "com_accountkit_check_email" = "이메일 열기"; 39 | "com_accountkit_confirmation_code_agreement" = "%1$@ 버튼을 눌러 Facebook의 약관, 데이터 정책, 쿠키 사용에 동의합니다."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "%1$@ 버튼을 눌러 Facebook의 약관, 데이터 정책, 쿠키 사용 및 %6$@의 개인정보취급방침에 동의합니다."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "%1$@ 버튼을 눌러 Facebook의 약관, 데이터 정책, 쿠키 사용 및 %7$@의 개인정보취급방침, 서비스 약관에 동의합니다."; 42 | "com_accountkit_confirmation_code_text" = "코드 재전송"; 43 | "com_accountkit_confirmation_code_title" = "코드 입력"; 44 | "com_accountkit_country_code_title" = "국가 선택"; 45 | "com_accountkit_email_invalid" = "올바른 이메일이 아닙니다. 다시 시도해보세요."; 46 | "com_accountkit_email_loading_title" = "이메일 보내는 중\U2026"; 47 | "com_accountkit_email_login_retry_title" = "이메일을 확인하세요"; 48 | "com_accountkit_email_login_text" = "%1$@ 버튼을 눌러 Facebook Account Kit에서 보내는 확인 이메일을 받으세요. %2$@ 앱에서 이 기능을 사용하면 Facebook 계정 없이도 앱에 로그인할 수 있습니다. 더 알아보기."; 49 | "com_accountkit_email_login_title" = "이메일 주소 입력"; 50 | "com_accountkit_email_not_received" = "이메일 다시 보내기"; 51 | "com_accountkit_email_verify_title" = "Facebook에서 보낸 이메일을 열고 주소를 확인하세요"; 52 | "com_accountkit_error_title" = "죄송합니다. 문제가 발생했습니다."; 53 | "com_accountkit_facebook_code_entry_title" = "Facebook에서 전송한 코드를 입력하세요"; 54 | "com_accountkit_phone_loading_title" = "코드를 전송하는 중\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "번호"; 56 | "com_accountkit_phone_login_retry_title" = "휴대폰 번호 확인"; 57 | "com_accountkit_phone_login_text" = "%1$@ 버튼을 눌러 Facebook Account Kit에서 보내는 확인 이메일을 받으세요. %2$@ 앱에서 이 기능을 사용하면 Facebook 계정 없이도 앱에 로그인할 수 있습니다. 메시지 및 데이터 요금이 부과될 수 있습니다. 더 알아보기."; 58 | "com_accountkit_phone_login_title" = "휴대폰 번호 입력"; 59 | "com_accountkit_resend_email_text" = "새 이메일 보내기"; 60 | "com_accountkit_resend_title" = "죄송합니다. 계속하려면 다른 방법으로 코드를 요청하세요."; 61 | "com_accountkit_return_title" = "%1$@에 이동하는 중\U2026"; 62 | "com_accountkit_sent_title" = "보냈습니다!"; 63 | "com_accountkit_success_title" = "완료!"; 64 | "com_accountkit_toolbar_title" = "%1$@에 로그인"; 65 | "com_accountkit_verify_confirmation_code_title" = "코드를 확인할 수 없습니다.\n다시 시도:"; 66 | "com_accountkit_verify_title" = "코드를 인증하는 중\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/mr.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "मागे"; 23 | "com_accountkit_button_begin" = "आरंभ करा"; 24 | "com_accountkit_button_cancel" = "रद्द करा"; 25 | "com_accountkit_button_confirm" = "पुष्टी करा"; 26 | "com_accountkit_button_continue" = "सुरू ठेवा"; 27 | "com_accountkit_button_log_in" = "लॉग इन करा"; 28 | "com_accountkit_button_next" = "पुढील"; 29 | "com_accountkit_button_ok" = "ठीक"; 30 | "com_accountkit_button_resend" = "नवीन कोड पाठवा"; 31 | "com_accountkit_button_resend_sms" = "SMS परत पाठवा"; 32 | "com_accountkit_button_send" = "पाठवा"; 33 | "com_accountkit_button_send_code_in_fb" = "Facebook मध्ये कोड पाठवा"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "आपण प्रविष्‍ट केलेल्‍या फोन नंबरशी लिंक असलेल्‍या Facebook खात्‍यावर सूचना पाठवण्‍यासाठी Facebook मध्‍ये कोड पाठवा टॅप करा."; 35 | "com_accountkit_button_start" = "सुरू करा"; 36 | "com_accountkit_button_start_over" = "पुन्‍हा प्रयत्‍न करा"; 37 | "com_accountkit_button_submit" = "सादर करा"; 38 | "com_accountkit_check_email" = "आपला ईमेल उघडा"; 39 | "com_accountkit_confirmation_code_agreement" = "Facebook च्या अटी, डेटा धोरण आणि कुकी वापर स्वीकारण्यासाठी %1$@ वर टॅप करा."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Facebook च्या अटी, डेटा धोरण, कुकी वापर आणि %6$@ चे गोपनीयता धोरण स्वीकारण्यासाठी %1$@ वर टॅप करा."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Facebook च्या अटी, डेटा धोरण, कुकी वापर, गोपनीयता धोरण स्वीकारण्यासाठी आणि %7$@ च्या सेवेच्या अटीं साठी %1$@ वर टॅप करा."; 42 | "com_accountkit_confirmation_code_text" = "नवीन कोड पाठवा"; 43 | "com_accountkit_confirmation_code_title" = "आपला कोड प्रविष्‍ट करा"; 44 | "com_accountkit_country_code_title" = "आपला देश निवड"; 45 | "com_accountkit_email_invalid" = "हा ईमेल चुकीचा आहे. कृपया पुन्हा प्रयत्न करा."; 46 | "com_accountkit_email_loading_title" = "ईमेल पाठवित आहे"; 47 | "com_accountkit_email_login_retry_title" = "आपल्या ईमेलची पुष्टी करा"; 48 | "com_accountkit_email_login_text" = "Facebook द्वारे समर्थित खाते किटकडून पुष्‍टी ईमेल मिळवण्‍यासाठी %1$@ टॅप करा. आपल्‍याला साइन इन करण्‍यात मदतीसाठी हे %2$@ वापरते, परंतु आपल्‍याला Facebook खात्‍याची गरज नाही. अधिक जाणून घ्या."; 49 | "com_accountkit_email_login_title" = "आपला ईमेल पत्‍ता प्रविष्‍ट करा"; 50 | "com_accountkit_email_not_received" = "ईमेल पुन्‍हा पाठवा"; 51 | "com_accountkit_email_verify_title" = "आम्‍ही पाठवलेला ईमेल उघडा आणि आपल्‍या पत्‍त्‍याची पुष्‍टी करा"; 52 | "com_accountkit_error_title" = "आम्‍ही क्षमस्‍व आहोत, काहीतरी चूक झाली."; 53 | "com_accountkit_facebook_code_entry_title" = "आपला कोड Facebook वरून प्रविष्‍ट करा"; 54 | "com_accountkit_phone_loading_title" = "आपला कोड पाठवत आहे\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "नंबर"; 56 | "com_accountkit_phone_login_retry_title" = "आपल्‍या फोन नंबरची पुष्‍टी करा"; 57 | "com_accountkit_phone_login_text" = "Facebook द्वारे समर्थित खाते किटकडून SMS पुष्‍टी मिळवण्‍यासाठी %1$@ टॅप करा. आपल्‍याला साइन इन करण्‍यात मदतीसाठी हे %2$@ वापरते, परंतु आपल्‍याला Facebook खात्‍याची गरज नाही. संदेश आणि डेटा शुल्‍क लागू होण्‍याची शक्‍यता आहे. अधिक जाणून घ्या."; 58 | "com_accountkit_phone_login_title" = "आपला फोन नंबर प्रविष्‍ट करा"; 59 | "com_accountkit_resend_email_text" = "नवीन ईमेल पाठवा"; 60 | "com_accountkit_resend_title" = "आम्‍ही क्षमस्‍व आहोत. पुढे सुरू ठेवण्‍यासाठी हे पर्याय वापरून पहा."; 61 | "com_accountkit_return_title" = "आपल्‍याला पुन्‍हा %1$@ येथे नेत आहे\U2026"; 62 | "com_accountkit_sent_title" = "पाठविले!"; 63 | "com_accountkit_success_title" = "पूर्ण झाले!"; 64 | "com_accountkit_toolbar_title" = "%1$@ मध्‍ये लॉग इन करा"; 65 | "com_accountkit_verify_confirmation_code_title" = "आपल्‍या कोडची आम्‍ही पडताळणी करू शकलो नाही. कृपया पुन्हा प्रयत्न करा:"; 66 | "com_accountkit_verify_title" = "आपल्‍या कोडची पडताळणी करत आहे\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/ms.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Undur"; 23 | "com_accountkit_button_begin" = "Mula"; 24 | "com_accountkit_button_cancel" = "Batal"; 25 | "com_accountkit_button_confirm" = "Sahkan"; 26 | "com_accountkit_button_continue" = "Teruskan"; 27 | "com_accountkit_button_log_in" = "Log Masuk"; 28 | "com_accountkit_button_next" = "Seterusnya"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Hantar Kod Baharu"; 31 | "com_accountkit_button_resend_sms" = "Hantar semula SMS"; 32 | "com_accountkit_button_send" = "Hantar"; 33 | "com_accountkit_button_send_code_in_fb" = "Handar Kod dalam Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Ketik Hantar Kod di Facebook untuk menghantar pemberitahuan ke akaun Facebook yang dikaitkan dengan nombor telefon yang anda masukkan."; 35 | "com_accountkit_button_start" = "Mula"; 36 | "com_accountkit_button_start_over" = "Cuba Lagi"; 37 | "com_accountkit_button_submit" = "Hantar"; 38 | "com_accountkit_check_email" = "Buka e-mel anda"; 39 | "com_accountkit_confirmation_code_agreement" = "Ketik %1$@ untuk menerima Terma, Dasar Data dan penggunaan kukiFacebook."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Ketik %1$@ untuk menerima Terma, Dasar Data, penggunaan kuki dan Dasar Privasi Facebook untuk %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Ketik %1$@ untuk menerima Terma, Dasar Data, penggunaan kuki dan Dasar Privasi serta Terma Perkhidmatan Facebook untuk %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Hantar Kod Baharu"; 43 | "com_accountkit_confirmation_code_title" = "Masukkan kod anda"; 44 | "com_accountkit_country_code_title" = "Pilih Negara Anda"; 45 | "com_accountkit_email_invalid" = "E-mel ini tidak betul. Sila cuba lagi."; 46 | "com_accountkit_email_loading_title" = "Menghantar e-mel\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Sahkan e-mel anda"; 48 | "com_accountkit_email_login_text" = "Ketik %1$@ untuk mendapatkan e-mel pengesahan daripada Kit Akaun yang dikuasakan oleh Facebook. %2$@ menggunakan ini untuk membantu anda mendaftar masuk, tetapi anda tidak memerlukan akaun Facebook. Ketahui lebih lanjut."; 49 | "com_accountkit_email_login_title" = "Masukkan alamat e-mel anda"; 50 | "com_accountkit_email_not_received" = "Hantar Semula E-mel"; 51 | "com_accountkit_email_verify_title" = "Buka e-mel yang kami hantar dan sahkan alamat e-mel anda"; 52 | "com_accountkit_error_title" = "Kami mohon maaf, ada kesilapan berlaku."; 53 | "com_accountkit_facebook_code_entry_title" = "Masukkan kod anda dari Facebook"; 54 | "com_accountkit_phone_loading_title" = "Menghantar kod anda\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Nombor"; 56 | "com_accountkit_phone_login_retry_title" = "Sahkan nombor telefon anda"; 57 | "com_accountkit_phone_login_text" = "Ketik %1$@ untuk mendapatkan pengesahan SMS daripada Kit Akaun yang dikuasakan oleh Facebook. %2$@ menggunakan ini untuk membantu anda mendaftar masuk, tetapi anda tidak memerlukan akaun Facebook. Kadar mesej dan data boleh dikenakan. Ketahui lebih lanjut."; 58 | "com_accountkit_phone_login_title" = "Masukkan nombor telefon anda"; 59 | "com_accountkit_resend_email_text" = "Hantar E-mel Baharu"; 60 | "com_accountkit_resend_title" = "Kami meminta maaf. Cuba pilihan ini untuk meneruskan."; 61 | "com_accountkit_return_title" = "Mengembalikan anda ke %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Sudah dihantar!"; 63 | "com_accountkit_success_title" = "Selesai!"; 64 | "com_accountkit_toolbar_title" = "Log Masuk Ke %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Kami tidak dapat mengesahkan kod anda. Sila cuba lagi:"; 66 | "com_accountkit_verify_title" = "Mengesahkan kod anda\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/nb.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Tilbake"; 23 | "com_accountkit_button_begin" = "Begynn"; 24 | "com_accountkit_button_cancel" = "Avbryt"; 25 | "com_accountkit_button_confirm" = "Bekreft"; 26 | "com_accountkit_button_continue" = "Fortsett"; 27 | "com_accountkit_button_log_in" = "Logg inn"; 28 | "com_accountkit_button_next" = "Neste"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Send ny kode"; 31 | "com_accountkit_button_resend_sms" = "Send SMS på nytt"; 32 | "com_accountkit_button_send" = "Send"; 33 | "com_accountkit_button_send_code_in_fb" = "Send kode i Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Trykk på Send kode i Facebook for å sende et varsel til Facebook-kontoen som er knyttet til telefonnummeret du har oppgitt."; 35 | "com_accountkit_button_start" = "Start"; 36 | "com_accountkit_button_start_over" = "Prøv på nytt"; 37 | "com_accountkit_button_submit" = "Send inn"; 38 | "com_accountkit_check_email" = "Åpne e-posten din"; 39 | "com_accountkit_confirmation_code_agreement" = "Trykk på %1$@ for å godta Facebooks betingelser, retningslinjer for data og bruk av informasjonskapsler."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Trykk på %1$@ for å godta Facebooks betingelser, retningslinjer for data, bruk av informasjonskapsler og retningslinjer for personvern for %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Trykk på %1$@ for å godta Facebooks betingelser, retningslinjer for data, bruk av informasjonskapsler samt retningslinjer for personvern og betingelsene for %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Send koden på nytt"; 43 | "com_accountkit_confirmation_code_title" = "Oppgi koden din"; 44 | "com_accountkit_country_code_title" = "Velg landet ditt"; 45 | "com_accountkit_email_invalid" = "Denne e-posten er feil. Prøv på nytt."; 46 | "com_accountkit_email_loading_title" = "Sender e-post \U2026"; 47 | "com_accountkit_email_login_retry_title" = "Bekreft e-postadressen din"; 48 | "com_accountkit_email_login_text" = "Trykk på %1$@ for å få e-postbekreftelse fra Account Kit levert av Facebook. %2$@ bruker denne teknologien for å hjelpe deg med innlogging, men du trenger ikke en Facebook-konto. Finn ut mer."; 49 | "com_accountkit_email_login_title" = "Skriv inn e-postadressen din"; 50 | "com_accountkit_email_not_received" = "Send e-post på nytt"; 51 | "com_accountkit_email_verify_title" = "Åpne e-posten vi har sendt, og bekreft adressen din"; 52 | "com_accountkit_error_title" = "Beklager, men det oppstod en feil."; 53 | "com_accountkit_facebook_code_entry_title" = "Oppgi koden din fra Facebook"; 54 | "com_accountkit_phone_loading_title" = "Sender koden\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Nummer"; 56 | "com_accountkit_phone_login_retry_title" = "Bekreft telefonnummeret ditt"; 57 | "com_accountkit_phone_login_text" = "Trykk på %1$@ for å få SMS-bekreftelse fra Account Kit levert av Facebook. %2$@ bruker denne teknologien for å hjelpe deg med innlogging, men du trenger ikke en Facebook-konto. Meldings- og datakostnader kan påløpe. Finn ut mer."; 58 | "com_accountkit_phone_login_title" = "Skriv inn telefonnummeret ditt"; 59 | "com_accountkit_resend_email_text" = "Send ny e-post"; 60 | "com_accountkit_resend_title" = "Vi beklager. Prøv disse alternativene for å fortsette."; 61 | "com_accountkit_return_title" = "Sender deg tilbake til %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Sendt."; 63 | "com_accountkit_success_title" = "Ferdig!"; 64 | "com_accountkit_toolbar_title" = "Logg inn på %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Vi kunne ikke bekrefte koden din.\nPrøv på nytt:"; 66 | "com_accountkit_verify_title" = "Bekrefter koden\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/nl.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Terug"; 23 | "com_accountkit_button_begin" = "Beginnen"; 24 | "com_accountkit_button_cancel" = "Annuleren"; 25 | "com_accountkit_button_confirm" = "Bevestigen"; 26 | "com_accountkit_button_continue" = "Doorgaan"; 27 | "com_accountkit_button_log_in" = "Aanmelden"; 28 | "com_accountkit_button_next" = "Volgende"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Nieuwe code versturen"; 31 | "com_accountkit_button_resend_sms" = "Sms-bericht opnieuw verzenden"; 32 | "com_accountkit_button_send" = "Verzenden"; 33 | "com_accountkit_button_send_code_in_fb" = "Code verzenden op Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Tik op Code verzenden in Facebook om een melding te verzenden naar het Facebook-account dat is gekoppeld aan het telefoonnummer dat je hebt ingevoerd."; 35 | "com_accountkit_button_start" = "Starten"; 36 | "com_accountkit_button_start_over" = "Probeer het opnieuw"; 37 | "com_accountkit_button_submit" = "Verzenden"; 38 | "com_accountkit_check_email" = "Open je e-mail"; 39 | "com_accountkit_confirmation_code_agreement" = "Tik op %1$@ om de voorwaarden, het gegevensbeleid en het cookiebeleid van Facebook te accepteren."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Tik op %1$@ om de voorwaarden, het gegevensbeleid, het cookiebeleid van Facebook en het privacybeleid van %6$@ te accepteren."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Tik op %1$@ om de voorwaarden, het gegevensbeleid, het cookiebeleid van Facebook en het privacybeleid en de gebruiksvoorwaarden van %7$@ te accepteren."; 42 | "com_accountkit_confirmation_code_text" = "Code opnieuw versturen"; 43 | "com_accountkit_confirmation_code_title" = "Voer je code in"; 44 | "com_accountkit_country_code_title" = "Selecteer je land"; 45 | "com_accountkit_email_invalid" = "Dit e-mailadres is onjuist. Probeer het opnieuw."; 46 | "com_accountkit_email_loading_title" = "E-mail verzenden\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Bevestig je e-mailadres"; 48 | "com_accountkit_email_login_text" = "Tik op %1$@ om een bevestigingsmail te ontvangen van Account Kit mogelijk gemaakt door Facebook. %2$@ gebruikt deze methode om je aan te melden, maar je hebt geen Facebook-account nodig. Meer informatie."; 49 | "com_accountkit_email_login_title" = "Voer je e-mailadres in"; 50 | "com_accountkit_email_not_received" = "E-mail opnieuw verzenden"; 51 | "com_accountkit_email_verify_title" = "Open de e-mail die we hebben gestuurd en bevestig je e-mailadres"; 52 | "com_accountkit_error_title" = "Er is een fout opgetreden."; 53 | "com_accountkit_facebook_code_entry_title" = "Voer je code van Facebook in"; 54 | "com_accountkit_phone_loading_title" = "Je code wordt verzenden\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Nummer"; 56 | "com_accountkit_phone_login_retry_title" = "Bevestig je telefoonnummer"; 57 | "com_accountkit_phone_login_text" = "Tik op %1$@ om een sms-bevestiging te ontvangen van Account Kit mogelijk gemaakt door Facebook. %2$@ gebruikt deze methode om je aan te melden, maar je hebt geen Facebook-account nodig. Mogelijk zijn bericht- en datatarieven van toepassing. Meer informatie."; 58 | "com_accountkit_phone_login_title" = "Voer je telefoonnummer in"; 59 | "com_accountkit_resend_email_text" = "Nieuwe e-mail sturen"; 60 | "com_accountkit_resend_title" = "Helaas. Probeer deze opties om door te gaan."; 61 | "com_accountkit_return_title" = "Je wordt teruggeleid naar %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Verzonden!"; 63 | "com_accountkit_success_title" = "Klaar!"; 64 | "com_accountkit_toolbar_title" = "Meld je aan bij %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "We hebben je code niet kunnen verifiëren.\nProbeer het opnieuw:"; 66 | "com_accountkit_verify_title" = "Je code wordt geverifieerd\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/pa.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "ਪਿਛਲ"; 23 | "com_accountkit_button_begin" = "ਸ਼ੁਰੂ ਕਰੋ"; 24 | "com_accountkit_button_cancel" = "ਰੱਦ ਕਰੋ"; 25 | "com_accountkit_button_confirm" = "ਪੁਸ਼ਟੀ ਕਰੋ"; 26 | "com_accountkit_button_continue" = "ਜਾਰੀ ਰੱਖੋ"; 27 | "com_accountkit_button_log_in" = "ਲੌਗ ਇਨ ਕਰੋ"; 28 | "com_accountkit_button_next" = "ਅਗਲਾ"; 29 | "com_accountkit_button_ok" = "ਠੀਕ"; 30 | "com_accountkit_button_resend" = "ਨਵਾਂ ਕੋਡ ਭੇਜੋ"; 31 | "com_accountkit_button_resend_sms" = "SMS ਦੁਬਾਰਾ ਭੇਜੋ"; 32 | "com_accountkit_button_send" = "ਭੇਜੋ"; 33 | "com_accountkit_button_send_code_in_fb" = "Facebook ਵਿੱਚ ਕੋਡ ਭੇਜੋ"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "ਤੁਹਾਡੇ ਦੁਆਰਾ ਦਾਖ਼ਲ ਕੀਤੇ ਗਏ ਫ਼ੋਨ ਨੰਬਰ ਨਾਲ ਲਿੰਕ ਕੀਤੇ Facebook ਖਾਤੇ ਵਿੱਚ ਕੋਈ ਸੂਚਨਾ ਭੇਜਣ ਲਈ Facebook ਵਿੱਚ ਕੋਡ ਭੇਜੋ ਟੈਪ ਕਰੋ।"; 35 | "com_accountkit_button_start" = "ਅਰੰਭ ਕਰੋ"; 36 | "com_accountkit_button_start_over" = "ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ"; 37 | "com_accountkit_button_submit" = "ਜਮਾ ਕਰੋ"; 38 | "com_accountkit_check_email" = "ਆਪਣੀ ਈਮੇਲ ਖੋਲ੍ਹੋ"; 39 | "com_accountkit_confirmation_code_agreement" = "Facebook ਦੀਆਂ ਸ਼ਰਤਾਂ, ਡੇਟਾ ਨੀਤੀ ਅਤੇ ਕੂਕੀ ਦੀ ਵਰਤੋਂ ਨੂੰ ਸਵੀਕਾਰ ਕਰਨ ਲਈ %1$@ ਨੂੰ ਟੈਪ ਕਰੋ।"; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Facebook ਦੀਆਂ ਸ਼ਰਤਾਂ, ਡੇਟਾ ਨੀਤੀ, ਕੂਕੀ ਦੀ ਵਰਤੋਂ ਅਤੇ %6$@ ਦੀ ਗੋਪਨੀਤਯਾ ਨੀਤੀ ਨੂੰ ਸਵੀਕਾਰ ਕਰਨ ਲਈ %1$@ ਨੂੰ ਟੈਪ ਕਰੋ।"; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Facebook's ਸ਼ਰਤਾਂ, ਡੇਟਾ ਨੀਤੀ, ਕੂਕੀ ਦੀ ਵਰਤੋਂ ਅਤੇ %7$@ ਦੀ ਗੋਪਨੀਤਯਾ ਨੀਤੀ ਅਤੇ ਗੋਪਨੀਤਯਾ ਨੀਤੀ ਨੂੰ ਸਵੀਕਾਰ ਕਰਨ ਲਈ %1$@ ਨੂੰ ਟੈਪ ਕਰੋ।"; 42 | "com_accountkit_confirmation_code_text" = "ਨਵਾਂ ਕੋਡ ਭੇਜੋ"; 43 | "com_accountkit_confirmation_code_title" = "ਆਪਣਾ ਕੋਡ ਦਾਖ਼ਲ ਕਰੋ"; 44 | "com_accountkit_country_code_title" = "ਆਪਣਾ ਦੇਸ਼ ਚੁਣੋ"; 45 | "com_accountkit_email_invalid" = "ਇਹ ਈਮੇਲ ਗਲਤ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।"; 46 | "com_accountkit_email_loading_title" = "ਈਮੇਲ ਭੇਜ ਰਿਹਾ ਹੈ\U2026"; 47 | "com_accountkit_email_login_retry_title" = "ਆਪਣੀ ਈਮੇਲ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ"; 48 | "com_accountkit_email_login_text" = "Facebook ਰਾਹੀਂ Account Kit ਤੋਂ ਪੁਸ਼ਟੀਕਰਨ ਈਮੇਲ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ %1$@ ਨੂੰ ਟੈਪ ਕਰੋ। %2$@ ਤੁਹਾਨੂੰ ਸਾਈਨ ਇਨ ਕਰਵਾਉਣ ਲਈ ਇਸਦੀ ਵਰਤੋਂ ਕਰਦਾ ਹੈ, ਲੇਕਿਨ ਤੁਹਾਨੂੰ Facebook ਖਾਤੇ ਦੀ ਲੋੜ ਨਹੀਂ ਹੈ। ਹੋਰ ਜਾਣੋ"; 49 | "com_accountkit_email_login_title" = "ਆਪਣਾ ਈਮੇਲ ਪਤਾ ਦਾਖ਼ਲ ਕਰੋ"; 50 | "com_accountkit_email_not_received" = "ਈਮੇਲ ਨੂੰ ਦੁਬਾਰਾ ਭੇਜੋ"; 51 | "com_accountkit_email_verify_title" = "ਸਾਡੇ ਦੁਆਰਾ ਭੇਜੀ ਗਈ ਈਮੇਲ ਖੋਲ੍ਹੋ ਅਤੇ ਆਪਣੇ ਪਤੇ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ"; 52 | "com_accountkit_error_title" = "'ਅਸੀਂ ਮੁਆਫ਼ੀ ਚਾਹੁੰਦੇ ਹਾਂ, ਕੁਝ ਗਲਤ ਹੋ ਗਿਆ।"; 53 | "com_accountkit_facebook_code_entry_title" = "Facebook ਤੋਂ ਆਪਣਾ ਕੋਡ ਦਾਖ਼ਲ ਕਰੋ"; 54 | "com_accountkit_phone_loading_title" = "ਤੁਹਾਡਾ ਕੋਡ ਭੇਜ ਰਿਹਾ ਹੈ\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "ਨੰਬਰ"; 56 | "com_accountkit_phone_login_retry_title" = "ਆਪਣੇ ਫ਼ੋਨ ਨੰਬਰ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ"; 57 | "com_accountkit_phone_login_text" = "Facebook ਦੁਆਰਾ ਸੰਚਾਲਿਤ Account Kit ਤੋਂ SMS ਪੁਸ਼ਟੀਕਰਨ ਪ੍ਰਾਪਤ ਕਰਨ ਲਈ %1$@ ਨੂੰ ਟੈਪ ਕਰੋ। %2$@ ਤੁਹਾਨੂੰ ਸਾਈਨ ਇਨ ਕਰਵਾਉਣ ਲਈ ਇਸਦੀ ਵਰਤੋਂ ਕਰਦਾ ਹੈ, ਲੇਕਿਨ ਤੁਹਾਨੂੰ Facebook ਖਾਤੇ ਦੀ ਲੋੜ ਨਹੀਂ ਹੈ। ਸੁਨੇਹਾ ਅਤੇ ਡੇਟਾ ਦਰਾਂ ਲਾਗੂ ਹੋ ਸਕਦੀਆਂ ਹਨ। ਹੋਰ ਜਾਣੋ"; 58 | "com_accountkit_phone_login_title" = "ਆਪਣਾ ਫ਼ੋਨ ਨੰਬਰ ਦਾਖ਼ਲ ਕਰੋ"; 59 | "com_accountkit_resend_email_text" = "ਨਵੀਂ ਈਮੇਲ ਭੇਜੋ"; 60 | "com_accountkit_resend_title" = "ਅਸੀਂ ਮੁਆਫ਼ੀ ਚਾਹੁੰਦੇ ਹਾਂ। ਜਾਰੀ ਰੱਖਣ ਲਈ ਇਹਨਾਂ ਵਿਕਲਪਾਂ ਨੂੰ ਅਜ਼ਮਾਓ।"; 61 | "com_accountkit_return_title" = "ਤੁਹਾਨੂੰ %1$@ ਵਿੱਚ ਵਾਪਸ ਲੈ ਜਾ ਰਿਹਾ ਹੈ\U2026"; 62 | "com_accountkit_sent_title" = "ਭੇਜਿਆ ਗਿਆ!"; 63 | "com_accountkit_success_title" = "ਮੁਕੰਮਲ!"; 64 | "com_accountkit_toolbar_title" = "%1$@ ਵਿੱਚ ਲੌਗ ਇਨ ਕਰੋ"; 65 | "com_accountkit_verify_confirmation_code_title" = "ਅਸੀਂ ਤੁਹਾਡੇ ਕੋਡ ਦੀ ਪੁਸ਼ਟੀ ਨਹੀਂ ਕਰ ਸਕੇ। ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ:"; 66 | "com_accountkit_verify_title" = "ਤੁਹਾਡੇ ਕੋਡ ਦੀ ਪੁਸ਼ਟੀ ਕਰ ਰਿਹਾ ਹੈ\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/pt.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Voltar"; 23 | "com_accountkit_button_begin" = "Começar"; 24 | "com_accountkit_button_cancel" = "Cancelar"; 25 | "com_accountkit_button_confirm" = "Confirmar"; 26 | "com_accountkit_button_continue" = "Continuar"; 27 | "com_accountkit_button_log_in" = "Entrar"; 28 | "com_accountkit_button_next" = "Avançar"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Enviar novo código"; 31 | "com_accountkit_button_resend_sms" = "Reenviar SMS"; 32 | "com_accountkit_button_send" = "Enviar"; 33 | "com_accountkit_button_send_code_in_fb" = "Enviar código no Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Toque em Enviar código no Facebook para enviar uma notificação para a conta do Facebook vinculada ao número de telefone que você inseriu."; 35 | "com_accountkit_button_start" = "Iniciar"; 36 | "com_accountkit_button_start_over" = "Tente novamente"; 37 | "com_accountkit_button_submit" = "Enviar"; 38 | "com_accountkit_check_email" = "Abra o seu email"; 39 | "com_accountkit_confirmation_code_agreement" = "Toque em %1$@ para aceitar os Termos, a Política de Dados e o uso de cookies do Facebook."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Toque em %1$@ para aceitar os Termos, a Política de Dados, o uso de cookies do Facebook e a Política de Privacidade do %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Toque em %1$@ para aceitar os Termos, a Política de Dados, o uso de cookies do Facebook e a Política de Privacidade e os Termos de Serviço do %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Reenviar código"; 43 | "com_accountkit_confirmation_code_title" = "Insira seu código"; 44 | "com_accountkit_country_code_title" = "Selecione seu país"; 45 | "com_accountkit_email_invalid" = "Este email está incorreto. Tente novamente."; 46 | "com_accountkit_email_loading_title" = "Enviando email\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Confirme seu email"; 48 | "com_accountkit_email_login_text" = "Toque em %1$@ para receber um email de confirmação do Account Kit desenvolvido pelo Facebook. O aplicativo %2$@ usa esse recurso para ajudar você a se conectar, mas você não precisa de uma conta do Facebook. Saiba mais."; 49 | "com_accountkit_email_login_title" = "Digite o seu endereço de email"; 50 | "com_accountkit_email_not_received" = "Reenviar email"; 51 | "com_accountkit_email_verify_title" = "Abra o email que enviamos e confirme o seu endereço"; 52 | "com_accountkit_error_title" = "Ocorreu um erro."; 53 | "com_accountkit_facebook_code_entry_title" = "Insira o seu código do Facebook"; 54 | "com_accountkit_phone_loading_title" = "Enviando seu código\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Número"; 56 | "com_accountkit_phone_login_retry_title" = "Confirme seu número de telefone"; 57 | "com_accountkit_phone_login_text" = "Toque em %1$@ para receber um SMS de confirmação do Account Kit desenvolvido pelo Facebook. O aplicativo %2$@ usa esse recurso para ajudar você a se conectar, mas você não precisa de uma conta do Facebook. Sujeito a taxas de mensagem e dados. Saiba mais."; 58 | "com_accountkit_phone_login_title" = "Digite seu número de telefone"; 59 | "com_accountkit_resend_email_text" = "Enviar novo email"; 60 | "com_accountkit_resend_title" = "Lamentamos. Experimente estas opções para continuar."; 61 | "com_accountkit_return_title" = "Levando você de volta para %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Enviado!"; 63 | "com_accountkit_success_title" = "Concluído!"; 64 | "com_accountkit_toolbar_title" = "Entrar em %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Não foi possível verificar seu código.\nTente novamente:"; 66 | "com_accountkit_verify_title" = "Verificando seu código\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/pt_PT.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Retroceder"; 23 | "com_accountkit_button_begin" = "Começar"; 24 | "com_accountkit_button_cancel" = "Cancelar"; 25 | "com_accountkit_button_confirm" = "Confirmar"; 26 | "com_accountkit_button_continue" = "Continuar"; 27 | "com_accountkit_button_log_in" = "Iniciar Sessão"; 28 | "com_accountkit_button_next" = "Seguinte"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Enviar Código Novo"; 31 | "com_accountkit_button_resend_sms" = "Reenviar SMS"; 32 | "com_accountkit_button_send" = "Enviar"; 33 | "com_accountkit_button_send_code_in_fb" = "Enviar Código no Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Toca em Enviar Código no Facebook para enviares uma notificação para a conta do Facebook associada ao número de telemóvel que introduziste."; 35 | "com_accountkit_button_start" = "Começar"; 36 | "com_accountkit_button_start_over" = "Tentar Novamente"; 37 | "com_accountkit_button_submit" = "Enviar"; 38 | "com_accountkit_check_email" = "Abre o teu e-mail"; 39 | "com_accountkit_confirmation_code_agreement" = "Toca em %1$@ para aceitares os Termos, a Política de Dados e a Utilização de Cookies do Facebook."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Toca em %1$@ para aceitares os Termos, a Política de Dados e a Utilização de Cookies do Facebook, bem como a Política de Privacidade de %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Toca em %1$@ para aceitares os Termos, a Política de Dados e a Utilização de Cookies do Facebook, bem como a Política de Privacidade e os Termos de Serviço de %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Reenviar código"; 43 | "com_accountkit_confirmation_code_title" = "Introduz o teu código"; 44 | "com_accountkit_country_code_title" = "Seleciona o teu país"; 45 | "com_accountkit_email_invalid" = "Este e-mail está incorreto. Tenta novamente."; 46 | "com_accountkit_email_loading_title" = "A enviar e-mail\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Confirma o teu endereço de e-mail"; 48 | "com_accountkit_email_login_text" = "Toca em %1$@ para receberes um e-mail de confirmação do Account Kit com a tecnologia do Facebook. A app %2$@ utiliza esta funcionalidade para te ajudar a iniciar sessão, mas não precisas de uma conta do Facebook. Sabe mais."; 49 | "com_accountkit_email_login_title" = "Introduz o teu endereço de e-mail"; 50 | "com_accountkit_email_not_received" = "Reenviar e-mail"; 51 | "com_accountkit_email_verify_title" = "Abre o e-mail que enviámos e confirma o teu endereço"; 52 | "com_accountkit_error_title" = "Lamentamos, ocorreu um erro."; 53 | "com_accountkit_facebook_code_entry_title" = "Introduz o teu código do Facebook"; 54 | "com_accountkit_phone_loading_title" = "A enviar o teu código\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Número"; 56 | "com_accountkit_phone_login_retry_title" = "Confirma o teu número de telemóvel"; 57 | "com_accountkit_phone_login_text" = "Toca em %1$@ para receberes uma mensagem SMS de confirmação do Account Kit com a tecnologia do Facebook. A app %2$@ utiliza esta funcionalidade para te ajudar a iniciar sessão, mas não precisas de uma conta do Facebook. Podem aplicar-se tarifas de dados e de mensagens. Sabe mais."; 58 | "com_accountkit_phone_login_title" = "Introduz o teu número de telemóvel"; 59 | "com_accountkit_resend_email_text" = "Enviar Novo E-mail"; 60 | "com_accountkit_resend_title" = "Pedimos desculpa. Experimenta estas opções para continuares."; 61 | "com_accountkit_return_title" = "A regressar ao %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Enviado!"; 63 | "com_accountkit_success_title" = "Concluído!"; 64 | "com_accountkit_toolbar_title" = "Inicia sessão em %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Não conseguimos verificar o teu código.\nTenta novamente:"; 66 | "com_accountkit_verify_title" = "A verificar o teu código"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/ru.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Назад"; 23 | "com_accountkit_button_begin" = "Начать"; 24 | "com_accountkit_button_cancel" = "Отмена"; 25 | "com_accountkit_button_confirm" = "Подтвердить"; 26 | "com_accountkit_button_continue" = "Продолжить"; 27 | "com_accountkit_button_log_in" = "Вход"; 28 | "com_accountkit_button_next" = "Далее"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Отправить новый код"; 31 | "com_accountkit_button_resend_sms" = "Еще раз отправить SMS"; 32 | "com_accountkit_button_send" = "Отправить"; 33 | "com_accountkit_button_send_code_in_fb" = "Отправить код Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Коснитесь Отправить код на Facebook, чтобы отправить уведомление в аккаунт на Facebook, привязанный к номеру телефона, который вы указали."; 35 | "com_accountkit_button_start" = "Старт"; 36 | "com_accountkit_button_start_over" = "Попробуйте еще раз"; 37 | "com_accountkit_button_submit" = "Отправить"; 38 | "com_accountkit_check_email" = "Откройте эл. письмо"; 39 | "com_accountkit_confirmation_code_agreement" = "Коснитесь %1$@, чтобы принять Условия, Политику использования данных и файлов «cookie» Facebook."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Коснитесь %1$@, чтобы принять Условия, Политику использования данных и файлов «cookie» Facebook, а также Политику конфиденциальности %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Коснитесь %1$@, чтобы принять Условия, Политику использования данных и файлов «cookie» Facebook, а также Политику конфиденциальности и Пользовательское соглашение %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Отправить код повторно"; 43 | "com_accountkit_confirmation_code_title" = "Введите код"; 44 | "com_accountkit_country_code_title" = "Выберите свою страну"; 45 | "com_accountkit_email_invalid" = "Неверный эл. адрес. Попробуйте еще раз."; 46 | "com_accountkit_email_loading_title" = "Отправка\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Подтвердите правильность своего эл. адреса"; 48 | "com_accountkit_email_login_text" = "Коснитесь %1$@, чтобы получить эл. письмо с подтверждением, отправляемое Account Kit от Facebook. %2$@ использует эту технологию для процедуры входа, но вам не обязательно иметь аккаунт на Facebook. Подробнее."; 49 | "com_accountkit_email_login_title" = "Введите свой эл. адрес"; 50 | "com_accountkit_email_not_received" = "Повторная отправка эл. письма"; 51 | "com_accountkit_email_verify_title" = "Откройте эл. письмо, которое мы вам отправили, и подтвердите свой эл. адрес"; 52 | "com_accountkit_error_title" = "Извините, что-то пошло не так."; 53 | "com_accountkit_facebook_code_entry_title" = "Введите код, полученный от Facebook"; 54 | "com_accountkit_phone_loading_title" = "Выполняется отправка кода\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Номер"; 56 | "com_accountkit_phone_login_retry_title" = "Подтвердите свой номер телефона"; 57 | "com_accountkit_phone_login_text" = "Коснитесь %1$@, чтобы получить SMS с подтверждением, отправляемое Account Kit от Facebook. %2$@ использует эту технологию для процедуры входа, но вам не обязательно иметь аккаунт на Facebook. Может взиматься плата за передачу сообщений и данных. Подробнее."; 58 | "com_accountkit_phone_login_title" = "Введите свой номер телефона"; 59 | "com_accountkit_resend_email_text" = "Отправить письмо заново"; 60 | "com_accountkit_resend_title" = "Приносим извинения. Попробуйте сделать следующее."; 61 | "com_accountkit_return_title" = "Возврат к %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Отправлено!"; 63 | "com_accountkit_success_title" = "Готово!"; 64 | "com_accountkit_toolbar_title" = "Выполните вход в %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Нам не удалось проверить ваш код.\nПопробуйте еще раз:"; 66 | "com_accountkit_verify_title" = "Выполняется проверка вашего кода\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/sk.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Späť"; 23 | "com_accountkit_button_begin" = "Začať"; 24 | "com_accountkit_button_cancel" = "Zrušiť"; 25 | "com_accountkit_button_confirm" = "Potvrdiť"; 26 | "com_accountkit_button_continue" = "Pokračovať"; 27 | "com_accountkit_button_log_in" = "Prihlásiť sa"; 28 | "com_accountkit_button_next" = "Ďalej"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Poslať nový kód"; 31 | "com_accountkit_button_resend_sms" = "Poslať SMS znova"; 32 | "com_accountkit_button_send" = "Poslať"; 33 | "com_accountkit_button_send_code_in_fb" = "Poslať kód vo Facebooku"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Ťuknite na Poslať kód na Facebooku, ak chcete, aby sa poslalo upozornenie na účet na Facebooku prepojený s telefónnym číslom, ktoré ste zadali."; 35 | "com_accountkit_button_start" = "Štart"; 36 | "com_accountkit_button_start_over" = "Skúsiť znova"; 37 | "com_accountkit_button_submit" = "Odoslať"; 38 | "com_accountkit_check_email" = "Otvorte svoj e-mail"; 39 | "com_accountkit_confirmation_code_agreement" = "Ťuknutím na %1$@ vyjadríte súhlas s Podmienkami Facebooku a jeho Zásadami využívania údajov vrátane používania cookies."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Ťuknutím na %1$@ vyjadríte súhlas s Podmienkami Facebooku a jeho Zásadami využívania údajov vrátane používania cookies, a tiež so Zásadami ochrany súkromia služby %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Ťuknutím na %1$@ vyjadríte súhlas s Podmienkami Facebooku a jeho Zásadami využívania údajov vrátane používania cookies, a tiež so Zásadami ochrany súkromia a Zmluvnými podmienkami služby %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Poslať nový kód"; 43 | "com_accountkit_confirmation_code_title" = "Zadajte svoj kód"; 44 | "com_accountkit_country_code_title" = "Vyberte svoju krajinu"; 45 | "com_accountkit_email_invalid" = "Táto e-mailová adresa je nesprávna. Skúste znova."; 46 | "com_accountkit_email_loading_title" = "Posiela sa e-mail\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Potvrďte svoju e-mailovú adresu"; 48 | "com_accountkit_email_login_text" = "Ťuknite na %1$@, aby ste dostali potvrdzujúci e-mail od služby Account Kit s technológiou Facebooku. %2$@ to používa na vašu registráciu, nepotrebujete však mať účet na Facebooku. Prečítajte si viac."; 49 | "com_accountkit_email_login_title" = "Zadajte svoju e-mailovú adresu"; 50 | "com_accountkit_email_not_received" = "Poslať e-mail znova"; 51 | "com_accountkit_email_verify_title" = "Otvorte e-mail, ktorý sme vám poslali, a potvrďte svoju adresu"; 52 | "com_accountkit_error_title" = "Ľutujeme, vyskytol sa nejaký problém."; 53 | "com_accountkit_facebook_code_entry_title" = "Zadajte svoj kód od Facebooku"; 54 | "com_accountkit_phone_loading_title" = "Posiela sa vám kód\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Číslo"; 56 | "com_accountkit_phone_login_retry_title" = "Potvrďte svoje telefónne číslo"; 57 | "com_accountkit_phone_login_text" = "Ťuknite na %1$@, aby ste dostali potvrdzujúcu SMS od služby Account Kit s technológiou Facebooku. %2$@ to používa na vašu registráciu, nepotrebujete však mať účet na Facebooku. Môžu sa účtovať poplatky za SMS a dáta. Prečítajte si viac."; 58 | "com_accountkit_phone_login_title" = "Zadajte svoje telefónne číslo"; 59 | "com_accountkit_resend_email_text" = "Poslať nový e-mail"; 60 | "com_accountkit_resend_title" = "Ľutujeme. Na pokračovanie vyskúšajte tieto možnosti."; 61 | "com_accountkit_return_title" = "Prechádzate späť na %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Odoslané!"; 63 | "com_accountkit_success_title" = "Hotovo!"; 64 | "com_accountkit_toolbar_title" = "Prihlásiť sa do účtu %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Váš kód sa nepodarilo overiť. Skúste to znova:"; 66 | "com_accountkit_verify_title" = "Overuje sa váš potvrdzovací kód\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/sv.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Tillbaka"; 23 | "com_accountkit_button_begin" = "Börja"; 24 | "com_accountkit_button_cancel" = "Avbryt"; 25 | "com_accountkit_button_confirm" = "Bekräfta"; 26 | "com_accountkit_button_continue" = "Fortsätt"; 27 | "com_accountkit_button_log_in" = "Logga in"; 28 | "com_accountkit_button_next" = "Nästa"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Skicka ny kod"; 31 | "com_accountkit_button_resend_sms" = "Skicka om sms:et"; 32 | "com_accountkit_button_send" = "Skicka"; 33 | "com_accountkit_button_send_code_in_fb" = "Skicka kod på Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Tryck på Skicka kod på Facebook om du vill skicka en avisering till Facebook-kontot som är kopplat till det telefonnummer du angett."; 35 | "com_accountkit_button_start" = "Start"; 36 | "com_accountkit_button_start_over" = "Försök igen"; 37 | "com_accountkit_button_submit" = "Skicka"; 38 | "com_accountkit_check_email" = "Öppna din e-post"; 39 | "com_accountkit_confirmation_code_agreement" = "Tryck på %1$@ för att godkänna Facebooks villkor, datapolicy och cookiesanvändning."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Tryck på %1$@ för att godkänna Facebooks villkor, datapolicy, cookiesanvändning och sekretesspolicyn för %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Tryck på %1$@ för att godkänna Facebooks villkor, datapolicy, cookiesanvändning samt sekretesspolicyn och användarvillkoren för %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Skicka koden igen"; 43 | "com_accountkit_confirmation_code_title" = "Skriv in din kod"; 44 | "com_accountkit_country_code_title" = "Välj land"; 45 | "com_accountkit_email_invalid" = "Den här e-postadressen är fel. Försök igen."; 46 | "com_accountkit_email_loading_title" = "Skickar e-post \U2026"; 47 | "com_accountkit_email_login_retry_title" = "Bekräfta e-postadressen"; 48 | "com_accountkit_email_login_text" = "Tryck på %1$@ och få ett bekräftelsemeddelande via e-post av Account Kit från Facebook. %2$@ använder detta för att hjälpa dig logga in, men du behöver inget Facebook-konto. Läs mer."; 49 | "com_accountkit_email_login_title" = "Ange din e-postadress"; 50 | "com_accountkit_email_not_received" = "Skicka meddelandet igen"; 51 | "com_accountkit_email_verify_title" = "Öppna e-postmeddelandet som vi skickade och bekräfta din adress"; 52 | "com_accountkit_error_title" = "Ett fel har uppstått."; 53 | "com_accountkit_facebook_code_entry_title" = "Ange din kod från Facebook"; 54 | "com_accountkit_phone_loading_title" = "Skickar din kod\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Nummer"; 56 | "com_accountkit_phone_login_retry_title" = "Bekräfta ditt telefonnummer"; 57 | "com_accountkit_phone_login_text" = "Tryck på %1$@ och få en sms-bekräftelse av Account Kit från Facebook. %2$@ använder detta för att hjälpa dig logga in, men du behöver inget Facebook-konto. Meddelande- och dataavgifter kan tillkomma. Läs mer."; 58 | "com_accountkit_phone_login_title" = "Ange ditt telefonnummer"; 59 | "com_accountkit_resend_email_text" = "Skicka ny e-post"; 60 | "com_accountkit_resend_title" = "Vi ber om ursäkt. Testa de här alternativen om du vill fortsätta."; 61 | "com_accountkit_return_title" = "Tar dig tillbaka till %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Skickat!"; 63 | "com_accountkit_success_title" = "Klart!"; 64 | "com_accountkit_toolbar_title" = "Logga in på %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Det gick inte att verifiera din kod.\nFörsök igen:"; 66 | "com_accountkit_verify_title" = "Verifierar din kod\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/te.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "వెనుకకు"; 23 | "com_accountkit_button_begin" = "ప్రారంభించు"; 24 | "com_accountkit_button_cancel" = "రద్దు చేయి"; 25 | "com_accountkit_button_confirm" = "నిర్ధారించు"; 26 | "com_accountkit_button_continue" = "కొనసాగించు"; 27 | "com_accountkit_button_log_in" = "లాగిన్ చేయి"; 28 | "com_accountkit_button_next" = "తదుపరి"; 29 | "com_accountkit_button_ok" = "సరే"; 30 | "com_accountkit_button_resend" = "కొత్త కోడ్‌ను పంపు"; 31 | "com_accountkit_button_resend_sms" = "SMSను మళ్లీ పంపు"; 32 | "com_accountkit_button_send" = "పంపు"; 33 | "com_accountkit_button_send_code_in_fb" = "కోడ్‌ను Facebookలో పంపండి"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "మీరు నమోదు చేసిన ఫోన్ నంబర్‌కు అనుబంధించిన Facebook ఖాతాకు నోటిఫికేషన్ పంపడానికి Facebookలో కోడ్‌ను పంపు నొక్కండి."; 35 | "com_accountkit_button_start" = "ప్రారంభించు"; 36 | "com_accountkit_button_start_over" = "మళ్లీ ప్రయత్నించండి"; 37 | "com_accountkit_button_submit" = "సమర్పించు"; 38 | "com_accountkit_check_email" = "మీ ఇమెయిల్‌ను తెరవండి"; 39 | "com_accountkit_confirmation_code_agreement" = "Facebook నిబంధనలు, డేటా విధానం మరియు కుక్కీ వినియోగం ఆమోదించడానికి %1$@ నొక్కండి."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Facebook నిబంధనలు, డేటా విధానం, కుక్కీ వినియోగం మరియు %6$@ గోప్యతా విధానం ఆమోదించడానికి %1$@ నొక్కండి."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Facebook నిబంధనలు, డేటా విధానం, కుక్కీ వినియోగం మరియు %7$@ గోప్యతా విధానం మరియు సేవా నిబంధనలు ఆమోదించడానికి %1$@ నొక్కండి."; 42 | "com_accountkit_confirmation_code_text" = "కొత్త కోడ్‌ను పంపు"; 43 | "com_accountkit_confirmation_code_title" = "మీ కోడ్‌ను నమోదు చేయండి"; 44 | "com_accountkit_country_code_title" = "మీ దేశాన్ని ఎంచుకోండి"; 45 | "com_accountkit_email_invalid" = "ఈ ఇమెయిల్ తప్పు. దయచేసి మళ్లీ ప్రయత్నించండి."; 46 | "com_accountkit_email_loading_title" = "ఇమెయిల్ పంపుతోంది\U2026"; 47 | "com_accountkit_email_login_retry_title" = "మీ ఇమెయిల్‌ను నిర్ధారించండి"; 48 | "com_accountkit_email_login_text" = "Facebook ద్వారా Account Kit నుండి నిర్ధారణ ఇమెయిల్‌ను పొందడానికి %1$@ నొక్కండి. సైన్ ఇన్ చేయడంలో మీకు సహాయం చేయడానికి %2$@ దీన్ని ఉపయోగిస్తుంది, కానీ మీకు Facebook ఖాతా అవసరం లేదు. మరింత తెలుసుకోండి."; 49 | "com_accountkit_email_login_title" = "మీ ఇమెయిల్ చిరునామాను నమోదు చేయండి"; 50 | "com_accountkit_email_not_received" = "ఇమెయిల్‌ను మళ్లీ పంపు"; 51 | "com_accountkit_email_verify_title" = "మేము పంపిన ఇమెయిల్‌ను తెరిచి, మీ చిరునామాను నిర్ధారించండి"; 52 | "com_accountkit_error_title" = "మమ్మల్ని క్షమించండి, ఏదో తప్పు జరిగింది."; 53 | "com_accountkit_facebook_code_entry_title" = "Facebook నుండి మీ కోడ్‌ను నమోదు చేయండి"; 54 | "com_accountkit_phone_loading_title" = "మీ కోడ్‌ను పంపుతోంది\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "నంబర్"; 56 | "com_accountkit_phone_login_retry_title" = "మీ ఫోన్ నంబర్‌ను నిర్ధారించండి"; 57 | "com_accountkit_phone_login_text" = "Facebook ద్వారా Account Kit నుండి నిర్ధారణ SMS పొందడానికి %1$@ నొక్కండి. సైన్ ఇన్ చేయడంలో మీకు సహాయం చేయడానికి %2$@ దీన్ని ఉపయోగిస్తుంది, కానీ మీకు Facebook ఖాతా అవసరం లేదు. సందేశ మరియు డేటా ఛార్జీలు వర్తించవచ్చు. మరింత తెలుసుకోండి."; 58 | "com_accountkit_phone_login_title" = "మీ ఫోన్ నంబర్‌ను నమోదు చేయండి"; 59 | "com_accountkit_resend_email_text" = "కొత్త ఇమెయిల్ పంపు"; 60 | "com_accountkit_resend_title" = "మమ్మల్ని క్షమించండి. కొనసాగించడానికి ఈ ఎంపికలను ప్రయత్నించండి."; 61 | "com_accountkit_return_title" = "మిమ్మల్ని తిరిగి %1$@కి మళ్లిస్తోంది\U2026"; 62 | "com_accountkit_sent_title" = "పంపబడింది!"; 63 | "com_accountkit_success_title" = "పూర్తయింది!"; 64 | "com_accountkit_toolbar_title" = "%1$@కి లాగిన్ చేయండి"; 65 | "com_accountkit_verify_confirmation_code_title" = "మేము మీ కోడ్‌ను ధృవీకరించలేకపోయాము. దయచేసి మళ్లీ ప్రయత్నించండి:"; 66 | "com_accountkit_verify_title" = "మీ కోడ్‌ను ధృవీకరిస్తోంది\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/th.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "ย้อนกลับ"; 23 | "com_accountkit_button_begin" = "เริ่มต้น"; 24 | "com_accountkit_button_cancel" = "ยกเลิก"; 25 | "com_accountkit_button_confirm" = "ยืนยัน"; 26 | "com_accountkit_button_continue" = "ดำเนินต่อ"; 27 | "com_accountkit_button_log_in" = "เข้าสู่ระบบ"; 28 | "com_accountkit_button_next" = "ถัดไป"; 29 | "com_accountkit_button_ok" = "ตกลง"; 30 | "com_accountkit_button_resend" = "ส่งรหัสใหม่"; 31 | "com_accountkit_button_resend_sms" = "ส่ง SMS อีกครั้ง"; 32 | "com_accountkit_button_send" = "ส่ง"; 33 | "com_accountkit_button_send_code_in_fb" = "ส่งรหัสใน Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "แตะ ส่งรหัส ใน Facebook เพื่อส่งการแจ้งเตือนไปยังบัญชีผู้ใช้ Facebook ที่เชื่อมโยงกับหมายเลขโทรศัพท์ที่คุณป้อน"; 35 | "com_accountkit_button_start" = "เริ่ม"; 36 | "com_accountkit_button_start_over" = "ลองอีกครั้ง"; 37 | "com_accountkit_button_submit" = "ส่ง"; 38 | "com_accountkit_check_email" = "เปิดอีเมลของคุณ"; 39 | "com_accountkit_confirmation_code_agreement" = "แตะ %1$@ เพื่อยอมรับข้อกำหนด นโยบายข้อมูล และ การใช้งานคุกกี้ ของ Facebook"; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "แตะ %1$@ เพื่อยอมรับข้อกำหนด นโยบายข้อมูล การใช้งานคุกกี้ และ นโยบายความปลอดภัย ของ %6$@ ของ Facebook"; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "แตะ %1$@ เพื่อยอมรับข้อกำหนด นโยบายข้อมูล การใช้งานคุกกี้ และ นโยบายความปลอดภัย และ ข้อกำหนดการให้บริการ ของ %7$@ ของ Facebook"; 42 | "com_accountkit_confirmation_code_text" = "ส่งรหัสอีกครั้ง"; 43 | "com_accountkit_confirmation_code_title" = "ป้อนรหัสของคุณ"; 44 | "com_accountkit_country_code_title" = "เลือกประเทศของคุณ"; 45 | "com_accountkit_email_invalid" = "อีเมลนี้ไม่ถูกต้อง โปรดลองใหม่อีกครั้ง"; 46 | "com_accountkit_email_loading_title" = "กำลังส่งอีเมล"; 47 | "com_accountkit_email_login_retry_title" = "ยืนยันอีเมลของคุณ"; 48 | "com_accountkit_email_login_text" = "แตะ %1$@ เพื่อรับการยืนยันทางอีเมล จากชุดเครื่องมือบัญชีผู้ใช้ของ Facebook %2$S ใช้เพื่อช่วยคุณในการเข้าสู่ระบบ แต่คุณไม่จำเป็นต้องมีบัญชีผู้ใช้ Facebook เรียนรู้เพิ่มเติม"; 49 | "com_accountkit_email_login_title" = "ป้อนที่อยู่อีเมลของคุณ"; 50 | "com_accountkit_email_not_received" = "ส่งอีเมลอีกครั้ง"; 51 | "com_accountkit_email_verify_title" = "เปิดอีเมลที่เราส่งถึงคุณและยืนยันที่อยู่ของคุณ"; 52 | "com_accountkit_error_title" = "ขออภัย มีบางสิ่งผิดพลาด"; 53 | "com_accountkit_facebook_code_entry_title" = "ป้อนรหัสของคุณจาก Facebook"; 54 | "com_accountkit_phone_loading_title" = "กำลังส่งรหัสถึงคุณ\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "หมายเลข"; 56 | "com_accountkit_phone_login_retry_title" = "ยืนยันหมายเลขโทรศัพท์ของคุณ"; 57 | "com_accountkit_phone_login_text" = "แตะ %1$@ เพื่อรับการยืนยันทาง SMS จากชุดเครื่องมือบัญชีผู้ใช้ของ Facebook %2$S ใช้สิ่งนี้เพื่อช่วยคุณในการเข้าสู่ระบบ แต่คุณไม่จำเป็นต้องมีบัญชีผู้ใช้ Facebook อาจมีค่าบริการข้อความและข้อมูล เรียนรู้เพิ่มเติม"; 58 | "com_accountkit_phone_login_title" = "ป้อนหมายเลขโทรศัพท์ของคุณ"; 59 | "com_accountkit_resend_email_text" = "ส่งอีเมลใหม่"; 60 | "com_accountkit_resend_title" = "ขออภัย ลองตัวเลือกเหล่านี้เพื่อดำเนินการต่อ"; 61 | "com_accountkit_return_title" = "กำลังนำคุณกลับไปที่ %1$@\U2026"; 62 | "com_accountkit_sent_title" = "ส่งแล้ว!"; 63 | "com_accountkit_success_title" = "เรียบร้อย!"; 64 | "com_accountkit_toolbar_title" = "เข้าสู่ระบบ %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "เราไม่สามารถยืนยันรหัสของคุณ\nโปรดลองอีกครั้ง:"; 66 | "com_accountkit_verify_title" = "กำลังยืนยันรหัสของคุณ"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/tr.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Geri"; 23 | "com_accountkit_button_begin" = "Başla"; 24 | "com_accountkit_button_cancel" = "İptal"; 25 | "com_accountkit_button_confirm" = "Onayla"; 26 | "com_accountkit_button_continue" = "Devam"; 27 | "com_accountkit_button_log_in" = "Giriş Yap"; 28 | "com_accountkit_button_next" = "İleri"; 29 | "com_accountkit_button_ok" = "Tamam"; 30 | "com_accountkit_button_resend" = "Yeni Kod Gönder"; 31 | "com_accountkit_button_resend_sms" = "SMS'i Yeniden Gönder"; 32 | "com_accountkit_button_send" = "Gönder"; 33 | "com_accountkit_button_send_code_in_fb" = "Kodu Facebook'ta Gönder"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Girdiğiniz telefon numarasıyla bağlantılı Facebook hesabına bildirim göndermek için Facebook'ta Kodu Gönder'e dokunun."; 35 | "com_accountkit_button_start" = "Başlangıç"; 36 | "com_accountkit_button_start_over" = "Tekrar Dene"; 37 | "com_accountkit_button_submit" = "Gönder"; 38 | "com_accountkit_check_email" = "E-postanı aç"; 39 | "com_accountkit_confirmation_code_agreement" = "Facebook Koşulları, Veri İlkesi ve çerez kullanımını kabul etmek için %1$@ düğmesine dokunun."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Facebook Koşulları, Veri İlkesi ve çerez kullanımı ile %6$@ Gizlilik İlkesi'ni kabul etmek için %1$@ düğmesine dokunun."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Facebook Koşulları, Veri İlkesi ve çerez kullanımını ile %7$@ Gizlilik İlkesi ve Hizmet Koşulları'nı kabul etmek için %1$@ düğmesine dokunun."; 42 | "com_accountkit_confirmation_code_text" = "Kodu Tekrar Gönder"; 43 | "com_accountkit_confirmation_code_title" = "Kodunuzu girin"; 44 | "com_accountkit_country_code_title" = "Ülkeni Seç"; 45 | "com_accountkit_email_invalid" = "Bu e-posta hatalı. Lütfen tekrar dene."; 46 | "com_accountkit_email_loading_title" = "E-posta gönderiliyor\U2026"; 47 | "com_accountkit_email_login_retry_title" = "E-posta adresinizi onaylayın"; 48 | "com_accountkit_email_login_text" = "Facebook'un desteğiyle Account Kit'ten onay e-postası almak için %1$@ düğmesine dokunun. %2$@, giriş yapmanıza yardımcı olmak için bundan yararlanmaktadır, ancak Facebook hesabı zorunlu değildir. Daha fazla bilgi alın."; 49 | "com_accountkit_email_login_title" = "E-posta adresini gir"; 50 | "com_accountkit_email_not_received" = "E-postayı Tekrar Gönder"; 51 | "com_accountkit_email_verify_title" = "Gönderdiğimiz e-postayı aç ve adresini onayla"; 52 | "com_accountkit_error_title" = "Üzgünüz, bir sorun oluştu."; 53 | "com_accountkit_facebook_code_entry_title" = "Facebook'tan gelen kodu girin"; 54 | "com_accountkit_phone_loading_title" = "Kodun gönderiliyor\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Numara"; 56 | "com_accountkit_phone_login_retry_title" = "Telefon numaranı onayla"; 57 | "com_accountkit_phone_login_text" = "Facebook'un desteğiyle Account Kit'ten SMS onayı almak için %1$@ düğmesine dokunun. %2$@, giriş yapmanıza yardımcı olmak için bundan yararlanmaktadır, ancak Facebook hesabı zorunlu değildir. Mesaj ve veri ücretleri geçerli olabilir. Daha fazla bilgi alın."; 58 | "com_accountkit_phone_login_title" = "Telefon numaranı gir"; 59 | "com_accountkit_resend_email_text" = "Yeni E-posta Gönder"; 60 | "com_accountkit_resend_title" = "Üzgünüz. Devam etmek için bu seçenekleri deneyin."; 61 | "com_accountkit_return_title" = "Tekrar %1$@ uygulamasına yönlendiriliyorsunuz\U2026"; 62 | "com_accountkit_sent_title" = "Gönderildi!"; 63 | "com_accountkit_success_title" = "Bitti!"; 64 | "com_accountkit_toolbar_title" = "%1$@ Uygulamasına Giriş Yap"; 65 | "com_accountkit_verify_confirmation_code_title" = "Kodunuzu doğrulayamadık.\nLütfen tekrar deneyin:"; 66 | "com_accountkit_verify_title" = "Kodun doğrulanıyor\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/vi.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "Quay lại"; 23 | "com_accountkit_button_begin" = "Bắt đầu"; 24 | "com_accountkit_button_cancel" = "Hủy"; 25 | "com_accountkit_button_confirm" = "Xác nhận"; 26 | "com_accountkit_button_continue" = "Tiếp tục"; 27 | "com_accountkit_button_log_in" = "Đăng nhập"; 28 | "com_accountkit_button_next" = "Tiếp"; 29 | "com_accountkit_button_ok" = "OK"; 30 | "com_accountkit_button_resend" = "Gửi mã mới"; 31 | "com_accountkit_button_resend_sms" = "Gửi lại SMS"; 32 | "com_accountkit_button_send" = "Gửi"; 33 | "com_accountkit_button_send_code_in_fb" = "Gửi mã trong Facebook"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "Nhấn vào Gửi mã trong Facebook để gửi thông báo đến tài khoản Facebook được liên kết với số điện thoại bạn đã nhập."; 35 | "com_accountkit_button_start" = "Bắt đầu"; 36 | "com_accountkit_button_start_over" = "Thử lại"; 37 | "com_accountkit_button_submit" = "Gửi"; 38 | "com_accountkit_check_email" = "Mở email của bạn"; 39 | "com_accountkit_confirmation_code_agreement" = "Nhấn %1$@ để chấp nhận Điều khoản, Chính sách dữ liệusử dụng cookie của Facebook."; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "Nhấn %1$@ để chấp nhận Điều khoản, Chính sách dữ liệu, sử dụng cookie của Facebook và Chính sách quyền riêng tư của %6$@."; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "Nhấn %1$@ để chấp nhận Điều khoản, Chính sách dữ liệu, sử dụng cookie của Facebook và Chính sách quyền riêng tư, Điều khoản dịch vụ của %7$@."; 42 | "com_accountkit_confirmation_code_text" = "Gửi lại mã"; 43 | "com_accountkit_confirmation_code_title" = "Nhập mã của bạn"; 44 | "com_accountkit_country_code_title" = "Chọn quốc gia của bạn"; 45 | "com_accountkit_email_invalid" = "Email này không chính xác. Vui lòng thử lại."; 46 | "com_accountkit_email_loading_title" = "Đang gửi email\U2026"; 47 | "com_accountkit_email_login_retry_title" = "Xác nhận email của bạn"; 48 | "com_accountkit_email_login_text" = "Nhấn vào %1$@ để nhận email xác nhận từ Account Kit của Facebook. %2$@ dùng cách này để giúp bạn đăng nhập, nhưng bạn không cần tài khoản Facebook. Tìm hiểu thêm."; 49 | "com_accountkit_email_login_title" = "Nhập địa chỉ email của bạn"; 50 | "com_accountkit_email_not_received" = "Gửi lại email"; 51 | "com_accountkit_email_verify_title" = "Hãy mở email mà chúng tôi đã gửi và xác nhận địa chỉ của bạn"; 52 | "com_accountkit_error_title" = "Rất tiếc, đã xảy ra lỗi."; 53 | "com_accountkit_facebook_code_entry_title" = "Nhập mã của bạn từ Facebook"; 54 | "com_accountkit_phone_loading_title" = "Đang gửi mã của bạn\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "Số"; 56 | "com_accountkit_phone_login_retry_title" = "Xác nhận số điện thoại của bạn"; 57 | "com_accountkit_phone_login_text" = "Nhấn vào %1$@ để nhận xác nhận bằng SMS từ Account Kit của Facebook. %2$@ dùng cách này để giúp bạn đăng nhập, nhưng bạn không cần tài khoản Facebook. Bạn có thể bị tính cước tin nhắn và dữ liệu. Tìm hiểu thêm."; 58 | "com_accountkit_phone_login_title" = "Nhập số điện thoại của bạn"; 59 | "com_accountkit_resend_email_text" = "Gửi email mới"; 60 | "com_accountkit_resend_title" = "Chúng tôi rất tiếc. Hãy thử những tùy chọn này để tiếp tục."; 61 | "com_accountkit_return_title" = "Đưa bạn quay lại %1$@\U2026"; 62 | "com_accountkit_sent_title" = "Đã gửi!"; 63 | "com_accountkit_success_title" = "Xong!"; 64 | "com_accountkit_toolbar_title" = "Đăng nhập vào %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "Chúng tôi không thể xác minh mã của bạn.\nVui lòng thử lại:"; 66 | "com_accountkit_verify_title" = "Đang xác minh mã của bạn\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/zh.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "返回"; 23 | "com_accountkit_button_begin" = "开始"; 24 | "com_accountkit_button_cancel" = "取消"; 25 | "com_accountkit_button_confirm" = "确认"; 26 | "com_accountkit_button_continue" = "继续"; 27 | "com_accountkit_button_log_in" = "登录"; 28 | "com_accountkit_button_next" = "下一页"; 29 | "com_accountkit_button_ok" = "确定"; 30 | "com_accountkit_button_resend" = "发送新代码"; 31 | "com_accountkit_button_resend_sms" = "重新发送短信"; 32 | "com_accountkit_button_send" = "发送"; 33 | "com_accountkit_button_send_code_in_fb" = "通过 Facebook 发送代码"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "轻触 Facebook 中的“发送验证码”,向与您输入的手机号码相关联的 Facebook 帐户发送通知。"; 35 | "com_accountkit_button_start" = "开始"; 36 | "com_accountkit_button_start_over" = "重试"; 37 | "com_accountkit_button_submit" = "提交"; 38 | "com_accountkit_check_email" = "打开邮件"; 39 | "com_accountkit_confirmation_code_agreement" = "轻触 %1$@ 接受 Facebook 的条款数据使用政策和允许使用cookie。"; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "轻触 %1$@ 接受 Facebook 的条款数据使用政策和 %6$@ 的隐私权政策,并允许使用 cookie。"; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "轻触 %1$@ 接受 Facebook 的条款数据使用政策和 %7$@ 的隐私权政策服务条款,并允许使用 cookie。"; 42 | "com_accountkit_confirmation_code_text" = "重新发送代码"; 43 | "com_accountkit_confirmation_code_title" = "输入你的代码"; 44 | "com_accountkit_country_code_title" = "选择国家/地区"; 45 | "com_accountkit_email_invalid" = "电子邮件不正确。请重试。"; 46 | "com_accountkit_email_loading_title" = "正在发送电子邮件\U2026"; 47 | "com_accountkit_email_login_retry_title" = "确认您的邮箱"; 48 | "com_accountkit_email_login_text" = "轻触 %1$@,接收来自 Facebook Account Kit 的确认邮件。%2$@ 利用它帮助您登录,您在这一步不需要 Facebook 帐户。详细了解。"; 49 | "com_accountkit_email_login_title" = "输入你的电子邮箱"; 50 | "com_accountkit_email_not_received" = "重新发送邮件"; 51 | "com_accountkit_email_verify_title" = "打开我们发送的邮件并确认你的地址"; 52 | "com_accountkit_error_title" = "抱歉,出错了。"; 53 | "com_accountkit_facebook_code_entry_title" = "输入从 Facebook 获取的验证码"; 54 | "com_accountkit_phone_loading_title" = "发送代码\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "编号"; 56 | "com_accountkit_phone_login_retry_title" = "确认电话号码"; 57 | "com_accountkit_phone_login_text" = "轻触 %1$@,接收来自 Facebook Account Kit 的确认短信。%2$@ 利用它帮助您登录,您在这一步不需要 Facebook 帐户。可能需支付信息费和流量费。详细了解。"; 58 | "com_accountkit_phone_login_title" = "输入电话号码"; 59 | "com_accountkit_resend_email_text" = "发送新邮件"; 60 | "com_accountkit_resend_title" = "很抱歉。请尝试以下方法继续操作。"; 61 | "com_accountkit_return_title" = "即将回到 %1$@\U2026"; 62 | "com_accountkit_sent_title" = "已发送!"; 63 | "com_accountkit_success_title" = "完成!"; 64 | "com_accountkit_toolbar_title" = "登录 %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "我们无法验证你的代码。\n请重试:"; 66 | "com_accountkit_verify_title" = "正在验证你的代码\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/zh_Hant_HK.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "返回"; 23 | "com_accountkit_button_begin" = "開始"; 24 | "com_accountkit_button_cancel" = "取消"; 25 | "com_accountkit_button_confirm" = "確認"; 26 | "com_accountkit_button_continue" = "繼續"; 27 | "com_accountkit_button_log_in" = "登入"; 28 | "com_accountkit_button_next" = "下一步"; 29 | "com_accountkit_button_ok" = "確定"; 30 | "com_accountkit_button_resend" = "傳送新代碼"; 31 | "com_accountkit_button_resend_sms" = "重新傳送短訊"; 32 | "com_accountkit_button_send" = "傳送"; 33 | "com_accountkit_button_send_code_in_fb" = "在 Facebook 內傳送代碼"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "在 Facebook 內點按「傳送代碼」,以便將通知傳送至與您輸入的手機號碼連結的 Facebook 帳戶。"; 35 | "com_accountkit_button_start" = "開始"; 36 | "com_accountkit_button_start_over" = "再試一次"; 37 | "com_accountkit_button_submit" = "送出"; 38 | "com_accountkit_check_email" = "開啟您的電郵"; 39 | "com_accountkit_confirmation_code_agreement" = "點按 %1$@ 以接受 Facebook 的條款數據使用政策以及 Cookie 使用。"; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "點按 %1$@ 以接受 Facebook 的條款數據使用政策Cookie 使用以及 %6$@ 的私隱政策。"; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "點按 %1$@ 以接受 Facebook 的條款數據使用政策Cookie 使用以及 %7$@ 的私隱政策服務條款。"; 42 | "com_accountkit_confirmation_code_text" = "重新傳送代碼"; 43 | "com_accountkit_confirmation_code_title" = "輸入您的代碼"; 44 | "com_accountkit_country_code_title" = "選擇您的國家/地區"; 45 | "com_accountkit_email_invalid" = "此電郵有誤。請稍後再試。"; 46 | "com_accountkit_email_loading_title" = "電郵傳送中\U2026"; 47 | "com_accountkit_email_login_retry_title" = "確認您的電郵"; 48 | "com_accountkit_email_login_text" = "點按 %1$@ 以便從 Facebook 提供的 Account Kit 取得確認電郵。%2$@ 能使用此方式協助您登入,且您不需擁有 Facebook 帳戶。瞭解詳情。"; 49 | "com_accountkit_email_login_title" = "輸入您的電郵地址"; 50 | "com_accountkit_email_not_received" = "重新傳送電郵"; 51 | "com_accountkit_email_verify_title" = "請開啟我們傳送給您的電郵以確認您的電郵地址"; 52 | "com_accountkit_error_title" = "抱歉,發生問題。"; 53 | "com_accountkit_facebook_code_entry_title" = "輸入您的 Facebook 代碼"; 54 | "com_accountkit_phone_loading_title" = "正在傳送您的代碼\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "電話"; 56 | "com_accountkit_phone_login_retry_title" = "確認您的手機號碼"; 57 | "com_accountkit_phone_login_text" = "點按 %1$@ 以便從 Facebook 提供的 Account Kit 取得確認短訊。%2$@ 能使用此方式協助您登入,且您不需擁有 Facebook 帳戶。可能會產生短訊及數據傳輸費用。瞭解詳情。"; 58 | "com_accountkit_phone_login_title" = "輸入您的手機號碼"; 59 | "com_accountkit_resend_email_text" = "傳送新電郵"; 60 | "com_accountkit_resend_title" = "很抱歉,請嘗試這些選項以便繼續操作。"; 61 | "com_accountkit_return_title" = "正在返回 %1$@\U2026"; 62 | "com_accountkit_sent_title" = "已傳送!"; 63 | "com_accountkit_success_title" = "完成!"; 64 | "com_accountkit_toolbar_title" = "登入 %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "我們無法驗證您的代碼,請重新輸入一次:"; 66 | "com_accountkit_verify_title" = "正在驗證您的代碼\U2026"; 67 | -------------------------------------------------------------------------------- /ios/AccountKit/AccountKitStrings.bundle/Resources/zh_Hant_TW.lproj/AccountKit.strings: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2014-present, Facebook, Inc. All rights reserved. 2 | // 3 | // You are hereby granted a non-exclusive, worldwide, royalty-free license to use, 4 | // copy, modify, and distribute this software in source code or binary form for use 5 | // in connection with the web services and APIs provided by Facebook. 6 | // 7 | // As with any software that integrates with the Facebook platform, your use of 8 | // this software is subject to the Facebook Developer Principles and Policies 9 | // [http://developers.facebook.com/policy/]. This copyright notice shall be 10 | // included in all copies or substantial portions of the software. 11 | // 12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 13 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 14 | // FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 15 | // COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 16 | // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 17 | // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 18 | // 19 | // @generated 20 | // 21 | 22 | "com_accountkit_button_back" = "返回"; 23 | "com_accountkit_button_begin" = "開始"; 24 | "com_accountkit_button_cancel" = "取消"; 25 | "com_accountkit_button_confirm" = "確認"; 26 | "com_accountkit_button_continue" = "繼續"; 27 | "com_accountkit_button_log_in" = "登入"; 28 | "com_accountkit_button_next" = "繼續"; 29 | "com_accountkit_button_ok" = "確定"; 30 | "com_accountkit_button_resend" = "發送新驗證碼"; 31 | "com_accountkit_button_resend_sms" = "重發簡訊"; 32 | "com_accountkit_button_send" = "發送"; 33 | "com_accountkit_button_send_code_in_fb" = "透過 Facebook 傳送驗證碼"; 34 | "com_accountkit_button_send_code_in_fb_disclosure" = "在 Facebook 中點按「傳送代碼」,以傳送通知到與您電話號碼連結的 Facebook 帳號。"; 35 | "com_accountkit_button_start" = "開始"; 36 | "com_accountkit_button_start_over" = "再試一次"; 37 | "com_accountkit_button_submit" = "提交"; 38 | "com_accountkit_check_email" = "開啟電子郵件"; 39 | "com_accountkit_confirmation_code_agreement" = "如接受 Facebook 的使用條款資料政策Cookie 的使用,請點按 %1$@。"; 40 | "com_accountkit_confirmation_code_agreement_app_privacy_policy" = "如接受 Facebook 的使用條款資料政策Cookie 的使用和 %6$@ 的隱私政策,請點按 %1$@。"; 41 | "com_accountkit_confirmation_code_agreement_app_privacy_policy_and_terms" = "如接受 Facebook 的使用條款資料政策Cookie 的使用和 %7$@ 的隱私政策服務條款,請點按 %1$@。"; 42 | "com_accountkit_confirmation_code_text" = "重新傳送代碼"; 43 | "com_accountkit_confirmation_code_title" = "輸入代碼"; 44 | "com_accountkit_country_code_title" = "選擇國家/地區"; 45 | "com_accountkit_email_invalid" = "電子郵件地址有誤。請再試一次。"; 46 | "com_accountkit_email_loading_title" = "正在傳送電子郵件\U2026\U2026"; 47 | "com_accountkit_email_login_retry_title" = "確認電子郵件"; 48 | "com_accountkit_email_login_text" = "點按 %1$@ 即可收到由 Facebook Account Kit 發出的確認函。%2$@ 以此協助您登入,不過您不需要 Facebook 帳號。瞭解詳情。"; 49 | "com_accountkit_email_login_title" = "輸入電子郵件地址"; 50 | "com_accountkit_email_not_received" = "重寄電子郵件"; 51 | "com_accountkit_email_verify_title" = "開啟我們發送的電子郵件並確認地址"; 52 | "com_accountkit_error_title" = "抱歉,有些地方出錯了。"; 53 | "com_accountkit_facebook_code_entry_title" = "輸入 Facebook 代碼"; 54 | "com_accountkit_phone_loading_title" = "正在發送確認碼\U2026"; 55 | "com_accountkit_phone_login_phone_number_placeholder" = "號碼"; 56 | "com_accountkit_phone_login_retry_title" = "確認手機電話號碼"; 57 | "com_accountkit_phone_login_text" = "點按 %1$@ 即可收到由 Facebook Account Kit 發出的確認簡訊。%2$@ 以此協助您登入,不過您不需要 Facebook 帳號。您可能需要支付簡訊及數據傳輸費用。瞭解詳情。"; 58 | "com_accountkit_phone_login_title" = "輸入手機電話號碼"; 59 | "com_accountkit_resend_email_text" = "發送新電子郵件"; 60 | "com_accountkit_resend_title" = "非常抱歉!請嘗試以下選項以繼續。"; 61 | "com_accountkit_return_title" = "正在將您帶回 %1$@\U2026"; 62 | "com_accountkit_sent_title" = "已傳送!"; 63 | "com_accountkit_success_title" = "完成!"; 64 | "com_accountkit_toolbar_title" = "登入 %1$@"; 65 | "com_accountkit_verify_confirmation_code_title" = "無法驗證代碼。請再試一次:"; 66 | "com_accountkit_verify_title" = "正在驗證確認碼\U2026"; 67 | -------------------------------------------------------------------------------- /ios/RNAccountKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/RNAccountKit.xcodeproj/project.xcworkspace/xcuserdata/erick.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoericK/react-native-account-kit/f778a49a3ad376e7e99d04ba500972a95371a2b6/ios/RNAccountKit.xcodeproj/project.xcworkspace/xcuserdata/erick.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ios/RNAccountKit.xcodeproj/xcuserdata/erick.xcuserdatad/xcschemes/RNAccountKit.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 32 | 33 | 34 | 35 | 45 | 46 | 52 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 70 | 71 | 72 | 73 | 75 | 76 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /ios/RNAccountKit.xcodeproj/xcuserdata/erick.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | RNAccountKit.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | A7A223BE1CC8A89100C2BC58 16 | 17 | primary 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /ios/RNAccountKit/RNAccountKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // RNAccountKit.h 3 | // RNAccountKit 4 | // 5 | // Created by Erick on 4/21/16. 6 | // Copyright © 2016 erickarroyo. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "RCTBridgeModule.h" 12 | 13 | @interface RNAccountKit : NSObject 14 | //@interface RNAccountKit : NSObject 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /ios/RNAccountKit/RNAccountKit.m: -------------------------------------------------------------------------------- 1 | // 2 | // RNAccountKit.m 3 | // RNAccountKit 4 | // 5 | // Created by Erick on 4/21/16. 6 | // Copyright © 2016 erickarroyo. All rights reserved. 7 | // 8 | 9 | #import "RNAccountKit.h" 10 | #import "RCTLog.h" 11 | #import 12 | 13 | @implementation RNAccountKit 14 | 15 | RCT_EXPORT_MODULE(); 16 | 17 | RCT_EXPORT_METHOD(addEvent:(NSString *)name location:(NSString *)location) 18 | { 19 | RCTLogInfo(@"Pretending to create an event %@ at %@", name, location); 20 | } 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-account-kit", 3 | "author": { 4 | "name": "Erick Arroyo", 5 | "email": "erick@erickarroyo.com", 6 | "url": "http://twitter.com/coerick" 7 | }, 8 | "version": "0.1.0", 9 | "private": false, 10 | "scripts": { 11 | "test": "echo \"Error: no test specified\" && exit 1" 12 | }, 13 | "main": "index.js", 14 | "repository": { 15 | "type": "git", 16 | "url": "https://github.com/CoericK/react-native-account-kit.git" 17 | }, 18 | "keywords": [ 19 | "react", 20 | "react-component", 21 | "react-native", 22 | "account-kit", 23 | "native", 24 | "ios", 25 | "android", 26 | "login", 27 | "sdk" 28 | ], 29 | "license": "MIT", 30 | "dependencies": { 31 | }, 32 | "peerDependencies": { 33 | "react-native": "^0.23.1", 34 | "q": "^1.4.1" 35 | } 36 | } 37 | --------------------------------------------------------------------------------