Channel/IOS/gtios/Plugins/The2thWorldSDK/UniversalSDK.mm
@@ -13,7 +13,7 @@ #endif #import "SystemConfiguration/CaptiveNetwork.h" #import <YYJPlatform/YYJPlatform.h> #import <AppTrackingTransparency/AppTrackingTransparency.h> @implementation UniversalSDK @@ -245,8 +245,18 @@ [[YYJPlatform yyj_defaultPlatform] yyj_fb_Init:application launchOptions:launchOptions]; //升级iOS SDK V6 介绍 ++++++++ [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(sendAppsFlyerLaunch:) name:UIApplicationDidBecomeActiveNotification object:nil]; //升级iOS SDK V6 介绍 ++++++++ } -(void)sendAppsFlyerLaunch:(UIApplication *)application { [[YYJPlatform yyj_defaultPlatform] yyj_AppFlysStart]; } -(void) initYYJSdk{ NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; NSString *app_Version = [infoDictionary objectForKey:@"CFBundleShortVersionString"]; @@ -260,7 +270,7 @@ initedState=1; NSMutableDictionary *_dict = [NSMutableDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithInt:S2U_SdkInitComplete], @"code", @"sanxia", @"channelPlatform", nil]; @"sanxiaios", @"channelPlatform", nil]; [self SendMessageToUnity:_dict]; } @@ -292,6 +302,13 @@ [self SendMessageToUnity:_dict]; } [[YYJPlatform yyj_defaultPlatform]yyj_showFloatWindow]; //显示悬浮窗 //升级iOS SDK V6 介绍 ++++++++ if (@available(iOS 14, *)) { [ATTrackingManager requestTrackingAuthorizationWithCompletionHandler:^(ATTrackingManagerAuthorizationStatus status){ NSLog(@"attracking .. status: %ld",status); }]; } } - (void)YYJPlatformLogout { Channel/IOS/gtios/Plugins/sanxia/AppTrackingTransparency.framework/AppTrackingTransparency.tbd
New file @@ -0,0 +1,18 @@ --- !tapi-tbd tbd-version: 4 targets: [ armv7-ios, armv7s-ios, arm64-ios, arm64e-ios ] uuids: - target: armv7-ios value: 00000000-0000-0000-0000-000000000000 - target: armv7s-ios value: 00000000-0000-0000-0000-000000000000 - target: arm64-ios value: 789EB004-02AC-3327-9C49-C26FBF5DA05B - target: arm64e-ios value: A83D088C-1FCC-37C6-B37A-4B6F3C912A89 install-name: '/System/Library/Frameworks/AppTrackingTransparency.framework/AppTrackingTransparency' exports: - targets: [ arm64-ios, arm64e-ios, armv7-ios, armv7s-ios ] symbols: [ _AppTrackingTransparencyVersionNumber, _AppTrackingTransparencyVersionString ] objc-classes: [ ATTrackingManager ] ... Channel/IOS/gtios/Plugins/sanxia/AppTrackingTransparency.framework/Headers/ATTrackingManager.h
New file @@ -0,0 +1,59 @@ // // ATTrackingManager.h // AppTrackingTransparency // // Copyright © 2020 Apple Inc. All rights reserved. // #import <Foundation/Foundation.h> #import <os/availability.h> NS_ASSUME_NONNULL_BEGIN typedef NS_ENUM(NSUInteger, ATTrackingManagerAuthorizationStatus) { ATTrackingManagerAuthorizationStatusNotDetermined = 0, ATTrackingManagerAuthorizationStatusRestricted, ATTrackingManagerAuthorizationStatusDenied, ATTrackingManagerAuthorizationStatusAuthorized } NS_SWIFT_NAME(ATTrackingManager.AuthorizationStatus) API_AVAILABLE(ios(14), macosx(11.0), tvos(14)); API_AVAILABLE(ios(14), macosx(11.0), tvos(14)) @interface ATTrackingManager : NSObject /*! * @property trackingAuthorizationStatus * * @abstract * Returns information about your application’s tracking authorization status. * Users are able to grant or deny developers tracking privileges on a per-app basis. * Application developers must call `requestTrackingAuthorizationWithCompletionHandler:` for the ability to track users. * * @result * The current authorization status. If the user has not yet been prompted to approve access, the return value will either be * ATTrackingManagerAuthorizationStatusNotDetermined, or ATTrackingManagerAuthorizationStatusRestricted if this value is managed. * Once the user has been prompted, the return value will be either ATTrackingManagerAuthorizationStatusDenied or ATTrackingManagerAuthorizationStatusAuthorized. */ @property (class, nonatomic, readonly, assign) ATTrackingManagerAuthorizationStatus trackingAuthorizationStatus; /*! * @method requestTrackingAuthorizationWithCompletionHandler:completion: * * @abstract * Request user tracking authorization with a completion handler returning the user's authorization status. * Users are able to grant or deny developers tracking privileges on a per-app basis. * This method allows developers to determine if access has been granted. On first use, this method will prompt the user to grant or deny access. * * The completion handler will be called with the result of the user's decision for granting or denying permission to use application tracking. * The completion handler will be called immediately if access to request authorization is restricted. */ + (void)requestTrackingAuthorizationWithCompletionHandler:(void(^)(ATTrackingManagerAuthorizationStatus status))completion; // This class, at this time, should not be instantiated. + (instancetype)new NS_UNAVAILABLE; // This class, at this time, should not be instantiated. - (instancetype)init NS_UNAVAILABLE; @end NS_ASSUME_NONNULL_END Channel/IOS/gtios/Plugins/sanxia/AppTrackingTransparency.framework/Headers/AppTrackingTransparency.h
New file @@ -0,0 +1,12 @@ // // AppTrackingTransparency.h // AppTrackingTransparency // // Copyright © 2020 Apple Inc. All rights reserved. // #import <Foundation/Foundation.h> #import <AppTrackingTransparency/ATTrackingManager.h> FOUNDATION_EXPORT double AppTrackingTransparencyVersionNumber; FOUNDATION_EXPORT const unsigned char AppTrackingTransparencyVersionString[]; Channel/IOS/gtios/Plugins/sanxia/AppTrackingTransparency.framework/Modules/module.modulemap
New file @@ -0,0 +1,4 @@ framework module AppTrackingTransparency { umbrella header "AppTrackingTransparency.h" export * } Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/Info.plistold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/Info.plist.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 61f23c61d89024df2a24b3dd6bd056d5 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/Roboto-Bold.ttfold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/Roboto-Bold.ttf.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: dc1e2f614608f41c08328c480f509458 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ar.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 17bca05e9e13645ba8412850ceadc169 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ar.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ar.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 1fd536673bcd94db19d16fe7ed14455d DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ca.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: e02d7a699e3bf485f9fec6335e1c4859 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ca.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ca.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 00b3cdcc176a7420cad7830f13604dab DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/cs.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 0a53794120ada4485ab8da50189ebec3 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/cs.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/cs.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 9b87688bad72c4cbcb4ab29ccc121181 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/da.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 5a769e74660604fdebdcb65e68ad33d7 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/da.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/da.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: f04ccd829cd644a4c95a9055ddf333c4 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/de.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: c101c1f7b1221451ba31ff6909b4b181 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/de.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/de.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 76d9b3f3c6bff4bf1b7a0bd17caaa725 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/el.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 4bc4e815000ad469ebc44474495bb76d folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/el.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/el.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 654a2baee1ff04808bbcd3a84541ff4f DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/en.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: e86b5fb72091b49ca9935c502d1804df folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/en.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/en.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: b51504bf4c9e44d75a23b76b730ddb21 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/en_GB.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 8cdddef57432345e1b09cbb680beda72 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/en_GB.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/en_GB.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 6c2e2166ac238471597ae4ba45a7aea0 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/es.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 5cd3bc130208349e9a1727ba0b27163e folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/es.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/es.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 13803d37ee6d14cccbb681438ed84bd3 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/es_MX.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: cd6a2212b38264435a0c9be278c56a12 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/es_MX.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/es_MX.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 27cdf3988efc446fdad193e3a6dad06c DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/fi.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 75028362e09b849708287d4972e8adbc folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/fi.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/fi.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 192b007e8d16a4101b68e8d5b0524275 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/fr.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 5b836bfb7247d43c68f1a75f331b8969 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/fr.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/fr.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: c7dac157d541b42b788c46dcf971bdf4 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/google.pngChannel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/google.png.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 7b288e3d611464d9496170cd17d60aa3 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/google@2x.pngChannel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/google@2x.png.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 2a6feb601d833444a97f7cefae3abe61 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/google@3x.pngChannel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/google@3x.png.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: d7d895e9cdd054459b6933fcf2217947 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/gplus.pngChannel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/gplus.png.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 1cce5d61b2f794d4ebb7478c74362897 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/gplus@2x.pngChannel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/gplus@2x.png.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 4fefbf9cc141d4b88b490628628175f7 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/gplus@3x.pngChannel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/gplus@3x.png.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 3e935fa8a39394041a343d00e2207576 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/he.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: f05af028e42574be19cd6e2a9d66055a folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/he.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/he.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: fdf6cf4f0f1c1432c96c058e188fce36 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/hr.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 853599e00cf4b428fbbb28bc50488342 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/hr.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/hr.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 6e7f88fcd853f4abc8158bdc3f5fc2a5 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/hu.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 43832b277c3c042e7a8f65d57c2be6fb folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/hu.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/hu.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 2895a3f92ce7b43dcb2d4a33db8f1cc1 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/id.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 3dde5956559674fe4be68a34eae3034a folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/id.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/id.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 783ba4c9005cf4ed59dbe9f9cad8e36d DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/it.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 51f752018f2fd46bcac8433dcbd2b20c folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/it.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/it.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 738e2071a055747499d7c3e332721fcb DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ja.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: f45af251d589b46f3b7c31191b38e62b folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ja.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ja.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: ef4d127114e88432b819f2edd26e26e6 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ko.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 37779e077719b4c43bb23420515be773 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ko.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ko.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 78132d5cd53d846a384baf7421f5f107 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ms.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 0e99eb45501c2492bbfe351bc05a940a folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ms.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ms.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: fa81d771ecddb447e9a44e32c6e4b0b1 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/nb.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: f374928abf9d64a38aeaf5eb3cf5a7a3 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/nb.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/nb.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 174992b8482544027937e1b12bd7cf0c DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/nl.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: a26666ff20e2d42d0b466e95a82701e2 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/nl.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/nl.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: e2fc0047f07944e6a820f353e5bcefeb DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/pl.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 9b5d1100bc20b4214bd22797eeed9de5 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/pl.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/pl.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 57226ceafdde045d1a5089adc3ab87aa DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/pt.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 950a6a86c5c7f41fa81b30d70c3dc8b0 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/pt.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/pt.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 903b9171b5ea345c79c90096a69604bd DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/pt_BR.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 0c033419ef44e430fa7d06fc9594e39b folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/pt_BR.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/pt_BR.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 93db0929f0a5f425394a342c735d0043 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/pt_PT.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: f60067cb382264f80af5b5cf60be033a folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/pt_PT.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/pt_PT.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 68db5e5cb88ea40e787585f94fea28bf DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ro.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: d87749a930b794fc08e59af940f2048a folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ro.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ro.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 71ceef078cad34a6da145733a59fc177 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ru.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 6d37124a22be44742a1d654452554ff7 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ru.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/ru.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: b490284683a5f4b9fa80a9d00daeaa0a DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/sk.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 6c73d0d2f0cd14aa588fae0d91e1e68a folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/sk.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/sk.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 4913ca6773a254ee5814df7e1c2b0e77 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/sv.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 3774a18b6284f433b9a748b779a3aedc folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/sv.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/sv.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 935b0d7c610504c378f7a32c894788c1 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/th.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 45e86deeaf476420e84f762d0aa3cc29 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/th.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/th.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 6680b385ff18b439f88fedc7be41c01f DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/tr.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 1b6078687b9124f18922a266e4d52915 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/tr.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/tr.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: f2a43d981a817429c91933cb2ccf5b1c DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/uk.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 7b1271e2c34784beaa2de5588ba4b852 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/uk.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/uk.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: d0c14c214784b4717884ac047e8a7fad DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/vi.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 6dcb9ab8e74e847f1b706694e6acdddf folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/vi.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/vi.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 86a82f84ace454249a1b188bd22eb21f DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/zh_CN.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: b1588fd1501334b37ad391012260d6cb folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/zh_CN.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/zh_CN.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: a761e5c9217834a4f8faaa61499758de DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/zh_TW.lproj.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 48cec411216634848901e8944df95407 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/zh_TW.lproj/GoogleSignIn.stringsold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/GoogleSignIn.bundle/zh_TW.lproj/GoogleSignIn.strings.meta
New file @@ -0,0 +1,7 @@ fileFormatVersion: 2 guid: 20a2f86a3667b44ada4ea949e4690cab DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant: Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJAboutAccountViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJAccountViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJChangPwdViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJComRegisterViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJEditAccountViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJFindPswViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJLoginViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJMinAccountTableViewCell.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJMinAccountViewController.nib/objects-11.0+.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJMinAccountViewController.nib/runtime.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJPhoneRegisterViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJPhoneSettingPswViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJQuickRegisterViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJRealNameViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJResetPswViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJSafetySettingViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/ViewControllerNib/YYJSafetyWarmViewController.nibold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_aq_.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_aq_@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_aq_@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_back.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_back@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_back@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_back_press.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_back_press@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_back_press@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_close_press.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_close_press@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_close_press@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_close_rightbtn.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_close_rightbtn@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_close_rightbtn@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_account.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_account@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_account@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_account_press.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_account_press@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_account_press@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_code.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_code@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_code@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_code_press.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_code_press@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_code_press@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_email.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_email@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_email@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_id.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_id@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_id@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_id_press.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_id_press@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_id_press@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_mobile.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_mobile@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_mobile@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_mobile_press.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_mobile_press@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_mobile_press@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_realname.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_realname@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_realname@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_realname_press.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_realname_press@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_realname_press@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_secret.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_secret@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_secret@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_secret_press.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_secret_press@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_secret_press@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_validati.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_validati@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_validati@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_validation_press.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_validation_press@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_icon_validation_press@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_logo.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_check.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_check@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_check@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_dropdown.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_dropdown@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_dropdown@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_dropdown_click.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_dropdown_press.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_dropdown_press@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_dropdown_press@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_hide_password.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_hide_password@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_hide_password@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_ic_add.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_ic_apple@2x.png
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_ic_apple@3x.png
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_ic_explain.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_ic_facebook@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_ic_facebook@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_ic_google@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_ic_google@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_phone.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_phone@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_phone@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_phone_press.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_phone_press@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_phone_press@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_q@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_q@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_quick.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_quick@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_quick@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_quick_press.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_quick_press@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_quick_press@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_show_password.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_show_password@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_show_password@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_si@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_si@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_toolbaricon_ service.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_toolbaricon_BMailog.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_toolbaricon_bbs.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_toolbaricon_click.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_toolbaricon_end.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_toolbaricon_left.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_toolbaricon_manage.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_toolbaricon_moreapp.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_toolbaricon_pack.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_toolbaricon_paylog.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_toolbaricon_right.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_toolbaricon_rightend.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_uncheck.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_uncheck@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_uncheck@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_yk@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/cy_sdk_yk@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/facebook.png
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/google.png
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/google@2x.png
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/google@3x.png
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_account.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_account_switch.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_account_switch@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_account_switch@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_customer_service.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_fb.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_game_zone.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_gift.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_logout.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_message.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_more_game.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_news.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_passwd_change.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_passwd_change@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_passwd_change@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_safe_icon.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_safe_icon@2x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.bundle/images/yyj_sdk_float_view_safe_icon@3x.pngChannel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/Info.plist
New file @@ -0,0 +1,24 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleIconFile</key> <string></string> <key>CFBundleIdentifier</key> <string>com.google.${PRODUCT_NAME:rfc1034identifier}</string> <key>CFBundleInfoDictionaryVersion</key> <string>6.0</string> <key>CFBundleName</key> <string>${PRODUCT_NAME}</string> <key>CFBundlePackageType</key> <string>BNDL</string> <key>CFBundleShortVersionString</key> <string>1.0</string> <key>CFBundleVersion</key> <string>1</string> <key>NSPrincipalClass</key> <string></string> </dict> </plist> Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/Roboto-Bold.ttfBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/ar.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "تسجيل الدخول"; /* Long form sign-in button text */ "Sign in with Google" = "تسجيل الدخول باستخدام Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "تسجيل الدخول باستخدام Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "احصل على تطبيق Google المجاني وسجل الدخول إلى التطبيقات من خلال حساب Google. لا توجد حاجة لتذكر كلمات المرور."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "إلغاء"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "جلب"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "موافق"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "إلغاء"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "إعدادات"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "يتعذَّر تسجيل الدخول إلى الحساب"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "يطلب منك المشرف تعيين رمز مرور على هذا الجهاز للدخول إلى هذا الحساب. يُرجى تعيين رمز المرور وإعادة المحاولة."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "لا يتوافق هذا الجهاز مع سياسة الأمان التي أعدها مشرفك"; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "هل تريد الربط بتطبيق Device Policy؟"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "يجب الربط مع تطبيق Device Policy قبل تسجيل الدخول لحماية بيانات مؤسستك."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "ربط"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/ca.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Inicia la sessió"; /* Long form sign-in button text */ "Sign in with Google" = "Inicia la sessió amb Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Inicia la sessió amb Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Obteniu l'aplicació Google gratuïta i inicieu la sessió a les aplicacions amb el vostre compte de Google. D'aquesta manera, ja no haureu de recordar cap més contrasenya."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Cancel·la"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Obtén"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "D’acord"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Cancel·la"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Configuració"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "No es pot iniciar la sessió al compte"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "L'administrador requereix que estableixis una contrasenya en aquest dispositiu per accedir al compte. Estableix una contrasenya i torna-ho a provar."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "El dispositiu no compleix la política de seguretat establerta pel teu administrador."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Vols connectar-te amb l'aplicació Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Per protegir les dades de la teva organització, t'has de connectar amb l'aplicació Device Policy abans d'iniciar la sessió."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Vull connectar-me"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/cs.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Přihlásit se"; /* Long form sign-in button text */ "Sign in with Google" = "Přihlásit se účtem Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Přihlašujte se účtem Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Nainstalujte si zdarma aplikaci Google a přihlašujte se do aplikací pomocí účtu Google. Nebudete si už muset pamatovat spoustu hesel."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Zrušit"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Instalovat"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Zrušit"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Nastavení"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Nelze se přihlásit k účtu"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Administrátor vyžaduje, abyste v tomto zařízení nastavili heslo pro přístup k tomuto účtu. Nastavte prosím heslo a zkuste to znovu."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Zařízení nevyhovuje bezpečnostním zásadám nastaveným administrátorem."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Propojit s aplikací Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Aby bylo možné chránit data vaší organizace, před přihlášením je nutné aktivovat propojení s aplikací Device Policy."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Propojit"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/da.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Log ind"; /* Long form sign-in button text */ "Sign in with Google" = "Log ind med Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Log ind med Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Hent den gratis Google-app, og log ind på apps med din Google-konto. Du slipper for at huske på adgangskoder."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Annuller"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Hent"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Annuller"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Indstillinger"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Der kunne ikke logges ind på kontoen"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Din administrator kræver, at du angiver en adgangskode på enheden for at få adgang til kontoen. Angiv en adgangskode, og prøv igen."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Enheden overholder ikke den sikkerhedspolitik, der er angivet af din administrator."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Vil du oprette forbindelse til appen Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Du skal oprette forbindelse til appen Device Policy, inden du logger ind, for at beskytte din organisations data."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Opret forbindelse"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/de.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Anmelden"; /* Long form sign-in button text */ "Sign in with Google" = "Über Google anmelden"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Über Google anmelden"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Installieren Sie die kostenlose Google App und melden Sie sich mit Ihrem Google-Konto in Apps an. So müssen Sie sich keine Passwörter mehr merken."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Abbrechen"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Installieren"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Abbrechen"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Einstellungen"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Anmelden im Konto nicht möglich"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Ihr Administrator hat festgelegt, dass auf diesem Gerät ein Sicherheitscode eingerichtet werden muss, um auf dieses Konto zuzugreifen. Bitte legen Sie einen Sicherheitscode fest und versuchen Sie es noch einmal."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Das Gerät ist nicht mit den von Ihrem Administrator festgelegten Sicherheitsrichtlinien konform."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Mit der Device Policy App verknüpfen?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Zum Schutz der Daten Ihrer Organisation müssen Sie Ihr Gerät zuerst mit der Device Policy App verknüpfen, bevor Sie sich anmelden."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Verknüpfen"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/el.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Σύνδεση"; /* Long form sign-in button text */ "Sign in with Google" = "Συνδεθείτε με το Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Συνδεθείτε με το Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Αποκτήστε τη δωρεάν εφαρμογή Google και συνδεθείτε σε εφαρμογές με το Λογαριασμό σας Google. Δεν χρειάζεται να απομνημονεύετε κωδικούς πρόσβασης."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Ακύρωση"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Λήψη"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "ΟΚ"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Άκυρο"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Ρυθμίσεις"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Δεν είναι δυνατή η σύνδεση στον λογαριασμό"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Ο διαχειριστής σας απαιτεί να ορίσετε έναν κωδικό πρόσβασης στη συσκευή, για να έχετε πρόσβαση σε αυτόν τον λογαριασμό. Ορίστε έναν κωδικό πρόσβασης και δοκιμάστε ξανά."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Η συσκευή δεν συμμορφώνεται με την πολιτική ασφαλείας που έχει ορίσει ο διαχειριστής σας."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Σύνδεση με την εφαρμογή Device Policy;"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Προκειμένου να προστατεύσετε τα δεδομένα του οργανισμού σας, θα πρέπει να συνδεθείτε με την εφαρμογή Device Policy προτού συνδεθείτε στον λογαριασμό σας."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Σύνδεση"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/en.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,32 @@ /* Sign-in button text */ "Sign in" = "Sign in"; /* Long form sign-in button text */ "Sign in with Google" = "Sign in with Google"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Cancel"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Settings"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Unable to sign in to account"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Your administrator requires you to set a passcode on this device to access this account. Please set a passcode and try again."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "The device is not compliant with the security policy set by your administrator."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Connect with Device Policy App?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "In order to protect your organization's data, you must connect with the Device Policy app before logging in."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Connect"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/en_GB.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Sign in"; /* Long form sign-in button text */ "Sign in with Google" = "Sign in with Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Sign in with Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Get the free Google app and sign in to apps with your Google Account. No need to remember passwords."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Cancel"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Get"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Cancel"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Settings"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Unable to sign in to account"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Your administrator requires you to set a passcode on this device to access this account. Please set a passcode and try again."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "The device is not compliant with the security policy set by your administrator."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Connect with Device Policy App?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "In order to protect your organisation's data, you must connect with the Device Policy app before logging in."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Connect"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/es.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Iniciar sesión"; /* Long form sign-in button text */ "Sign in with Google" = "Iniciar sesión con Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Iniciar sesión con Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Obtén la aplicación Google gratuita e inicia sesión en aplicaciones con tu cuenta de Google. No tendrás que recordar las contraseñas."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Cancelar"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Obtener"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "Aceptar"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Cancelar"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Configuración"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "No se ha podido iniciar sesión en la cuenta"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "El administrador requiere que configures una contraseña en este dispositivo para acceder a esta cuenta. Inténtalo de nuevo cuando lo hayas hecho."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "El dispositivo no cumple la política de privacidad que ha definido tu administrador."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "¿Has conectado tu dispositivo con la aplicación Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Para proteger los datos de tu organización, debes conectar tu dispositivo con la aplicación Device Policy antes de iniciar sesión."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Conectar"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/es_MX.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Acceder"; /* Long form sign-in button text */ "Sign in with Google" = "Acceder con Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Acceder con Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Obtén Google app y accede a aplicaciones con tu cuenta de Google. No hace falta recordar contraseñas."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Cancelar"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Obtener"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "Aceptar"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Cancelar"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Configuración"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "No es posible acceder a la cuenta"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Para acceder a esta cuenta, tu administrador requiere que establezcas una contraseña en el dispositivo. Configúrala y vuelve a intentarlo."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "El dispositivo no cumple con la política de seguridad que estableció el administrador."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "¿Deseas conectarte con la app de Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Para proteger los datos de tu organización, debes conectarte con la app de Device Policy antes de acceder."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Conectar"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/fi.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Kirjaudu sisään"; /* Long form sign-in button text */ "Sign in with Google" = "Kirjaudu Google-tilin tunnuksilla"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Kirjaudu Google-tilin tunnuksilla"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Hanki ilmainen Google-sovellus ja kirjaudu sovelluksiin Google-tililläsi. Sinun ei tarvitse muistaa salasanoja."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Peruuta"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Hae"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Peruuta"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Asetukset"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Kirjautuminen tilille ei onnistu"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Järjestelmänvalvoja edellyttää tunnuskoodin määrittämistä, ennen kuin voit käyttää tiliä tällä laitteella. Määritä tunnuskoodi ja yritä uudelleen."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Laite ei noudata järjestelmänvalvojan määrittämää verkkotunnuskäytäntöä."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Muodostetaanko yhteys Device Policy ‑sovellukseen?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Suojaa organisaatiosi dataa muodostamalla yhteys Device Policy ‑sovellukseen ennen kirjautumista."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Muodosta yhteys"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/fr.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Se connecter"; /* Long form sign-in button text */ "Sign in with Google" = "Se connecter avec Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Se connecter avec Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Installez l'appli Google gratuite et connectez-vous à des applications avec votre compte Google. Plus besoin de vous souvenir de vos mots de passe."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Annuler"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Installer"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Annuler"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Paramètres"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Impossible de se connecter au compte"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Votre administrateur exige que vous définissiez un mot de passe sur cet appareil pour accéder à ce compte. Veuillez définir un mot de passe, puis réessayer."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "L'appareil ne respecte pas les règles de sécurité définies par votre administrateur."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Se connecter à l'application Device Policy ?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Afin de protéger les données de votre organisation, vous devez vous connecter à l'application Device Policy avant de vous connecter à votre compte."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Connexion"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/fr_CA.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Se connecter"; /* Long form sign-in button text */ "Sign in with Google" = "Se connecter à Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Connectez-vous à Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Téléchargez gratuitement l'application Google et connectez-vous à des applications avec votre compte Google. Plus besoin de mémoriser vos mots de passe."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Annuler"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Télécharger"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Annuler"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Paramètres"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Impossible de se connecter au compte"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Pour que votre administrateur puisse accéder à ce compte, vous devez définir un mot de passe sur cet appareil. Veuillez définir un mot de passe et réessayer."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "L'appareil n'est pas conforme à la politique de sécurité définie par votre administrateur."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Connexion avec l'application Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Pour protéger les données de votre organisation, vous devez vous connecter à l'application Device Policy avant de vous connecter."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Connexion"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/google.png
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/google@2x.png
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/google@3x.png
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/he.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "היכנס"; /* Long form sign-in button text */ "Sign in with Google" = "היכנס באמצעות Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "כניסה באמצעות Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "התקן את Google app בחינם והיכנס אל אפליקציות באמצעות חשבון Google. לא תצטרך עוד לזכור סיסמאות."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "בטל"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "התקן"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "אישור"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "ביטול"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "הגדרות"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "לא ניתן להיכנס לחשבון"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "מנהל המערכת דורש ממך להגדיר קוד סיסמה במכשיר זה כדי לגשת לחשבון זה. יש להגדיר קוד סיסמה ולנסות שוב."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "המכשיר אינו פועל בהתאם למדיניות האבטחה שנקבעה על-ידי מנהל המערכת."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "האם להתחבר באמצעות האפליקציית Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "על מנת להגן על נתוני הארגון שלך, יש להתחבר באמצעות אפליקציית Device Policy לפני הכניסה לחשבון."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "התחברות"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/hi.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "साइन इन करें"; /* Long form sign-in button text */ "Sign in with Google" = "Google के साथ साइन इन करें"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Google के साथ साइन इन करें"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "मुफ़्त Google ऐप्लिकेशन पाएं और अपने Google खाते से ऐप्लिकेशन में साइन इन करें. पासवर्ड याद रखने की ज़रूरत नहीं."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "अभी नहीं"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "पाएं"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "ठीक"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "अभी नहीं"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "सेटिंग"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "खाते में साइन इन नहीं किया जा सका"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "आपके एडमिन के लिए ज़रूरी है कि आप यह खाता एक्सेस करने के लिए इस डिवाइस पर एक पासकोड सेट करें. कृपया पासकोड सेट करें और दोबारा कोशिश करें."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "डिवाइस आपके एडमिन के ज़रिए सेट की गई सुरक्षा नीति का अनुपालन नहीं करता है."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "क्या Device Policy ऐप्लिकेशन से कनेक्ट करना चाहते हैं?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "अपने संगठन डेटा की सुरक्षा के लिए, आपको लॉग-इन करने से पहले Device Policy ऐप्लिकेशन से कनेक्ट करना होगा."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "कनेक्ट करें"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/hr.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Prijava"; /* Long form sign-in button text */ "Sign in with Google" = "Prijavite se putem Googlea"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Prijavite se putem Googlea"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Preuzmite besplatnu aplikaciju Google i prijavljujte se na aplikacije svojim Google računom. Ne morate pamtiti zaporke."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Odustani"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Nabavi"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "U redu"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Odbaci"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Postavke"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Prijava na račun nije moguća"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Vaš administrator zahtijeva da postavite šifru zaporke na ovom uređaju da biste pristupili računu. Postavite šifru zaporke i pokušajte ponovo."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Uređaj nije usklađen sa sigurnosnim pravilima koja je postavio vaš administrator."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Želite li se povezati s aplikacijom Pravila za uređaje?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Da biste zaštitili podatke svoje organizacije, morate se povezati s aplikacijom Pravila za uređaje prije prijave."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Poveži"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/hu.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Bejelentkezés"; /* Long form sign-in button text */ "Sign in with Google" = "Bejelentkezés Google-fiókkal"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Bejelentkezés Google-fiókkal"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Telepítse az ingyenes Google alkalmazást, és jelentkezzen be az egyes termékekbe Google-fiókjával. Nem kell különböző jelszavakat megjegyeznie."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Mégse"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Telepítés"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Mégse"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Beállítások"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Nem sikerült bejelentkezni a fiókba"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Adminisztrátora biztonsági kód beállítását kéri ezen az eszközön a fiókhoz való hozzáféréshez. Kérjük, állítson be biztonsági kódot, majd próbálja újra."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Az eszköz nem felel meg a rendszergazda által beállított biztonsági házirendnek."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Csatlakozik a Device Policy alkalmazáshoz?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "A szervezet adatainak védelme érdekében a bejelentkezés előtt csatlakoznia kell a Device Policy alkalmazáshoz."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Csatlakozás"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/id.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Masuk"; /* Long form sign-in button text */ "Sign in with Google" = "Masuk dengan Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Masuk dengan Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Dapatkan Google app gratis dan masuk ke aplikasi dengan Akun Google. Tidak perlu mengingat sandi."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Batal"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Ambil"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "Oke"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Batal"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Setelan"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Tidak dapat login ke akun"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Administrator mengharuskan Anda menyetel kode sandi di perangkat ini untuk mengakses akun ini. Setel kode sandi dan coba lagi."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Perangkat ini tidak sesuai dengan kebijakan keamanan yang disetel oleh administrator."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Sambungkan dengan Aplikasi Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Untuk melindungi data organisasi, Anda harus tersambung dengan aplikasi Device Policy sebelum login."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Sambungkan"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/it.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Accedi"; /* Long form sign-in button text */ "Sign in with Google" = "Accedi con Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Accedi con Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Scarica gratis l'app Google app e accedi alle app con il tuo account Google: liberati dai vincoli delle password."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Annulla"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Scarica"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Annulla"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Impostazioni"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Impossibile accedere all'account"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "L'amministratore richiede l'impostazione di un passcode sul dispositivo per accedere a questo account. Imposta un passcode e riprova."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Il dispositivo non è conforme alle norme di sicurezza stabilite dall'amministratore."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Vuoi collegarti all'app Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Per proteggere i dati della tua organizzazione, devi collegarti all'app Device Policy prima di accedere."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Collega"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/ja.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "ログイン"; /* Long form sign-in button text */ "Sign in with Google" = "Googleでログイン"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Googleでログイン"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "無料のGoogleアプリをインストールして、Googleアカウントでアプリにログインしよう。パスワードを覚えておく必要はありません。"; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "キャンセル"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "インストール"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "キャンセル"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "設定"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "アカウントにログインできません"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "このアカウントにアクセスするには、この端末でパスコードを設定する必要があります。パスコードを設定してから、もう一度お試しください。"; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "この端末は、管理者が設定したセキュリティ ポリシーに準拠していません。"; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Device Policy アプリと接続しますか?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "組織のデータを保護するために、ログインする前に Device Policy アプリと接続する必要があります。"; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "接続"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/ko.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "로그인"; /* Long form sign-in button text */ "Sign in with Google" = "Google 계정으로 로그인"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Google 계정으로 로그인"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "무료 Google 앱을 다운로드하여 Google 계정으로 앱에 로그인하세요. 비밀번호를 기억할 필요가 없습니다."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "취소"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "설치"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "확인"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "취소"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "설정"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "계정에 로그인할 수 없음"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "관리자의 설정에 따라 이 계정에 액세스하려면 사용 중인 기기에 비밀번호를 설정해야 합니다. 비밀번호를 설정한 후 다시 시도해 주세요."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "관리자가 설정한 보안 정책을 준수하지 않는 기기입니다."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Device Policy 앱과 연결하시겠습니까?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "조직의 데이터를 보호하려면 로그인하기 전에 Device Policy 앱과 연결해야 합니다."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "연결"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/ms.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Log masuk"; /* Long form sign-in button text */ "Sign in with Google" = "Log masuk dengan Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Log masuk dengan Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Dapatkan apl Google percuma dan log masuk ke apl menggunakan Akaun Google anda. Tidak perlu mengingati kata laluan."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Batal"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Dapatkan"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Batal"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Tetapan"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Tidak dapat log masuk ke akaun"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Pentadbir menghendaki anda menetapkan kod laluan pada peranti ini untuk mengakses akaun ini. Sila tetapkan kod laluan, kemudian cuba lagi."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Peranti tidak mematuhi dasar keselamatan yang ditetapkan oleh pentadbir anda."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Berhubung dengan Apl Dasar Peranti?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Untuk melindungi data organisasi anda, anda mesti berhubung dengan apl Dasar Peranti sebelum log masuk."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Hubungkan"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/nb.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Logg på"; /* Long form sign-in button text */ "Sign in with Google" = "Logg på med Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Logg på med Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Skaff deg den gratis Google-appen, og logg på apper med Google-kontoen din. Du trenger ikke å huske passord."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Avbryt"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Hent"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Avbryt"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Innstillinger"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Kan ikke logge på kontoen"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Administratoren din krever at du angir en adgangskode på denne enheten for å få tilgang til kontoen. Angi en adgangskode, og prøv på nytt."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Enheten overholder ikke retningslinjene for sikkerhet som ble angitt av administratoren din."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Vil du koble til med Device Policy-appen?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "For å beskytte dataene til organisasjonen din må du koble til med Device Policy-appen før du logger på."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Koble til"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/nl.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Inloggen"; /* Long form sign-in button text */ "Sign in with Google" = "Inloggen met Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Inloggen met Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Installeer de gratis Google-app en log in bij apps met uw Google-account. U hoeft geen wachtwoorden te onthouden."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Annuleren"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Installeren"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Annuleren"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Instellingen"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Kan niet inloggen op account"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Uw beheerder vereist dat u een toegangscode instelt op dit apparaat om toegang te krijgen tot dit account. Stel een toegangscode in en probeer het opnieuw."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Het apparaat voldoet niet aan het beveiligingsbeleid dat is ingesteld door uw beheerder."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Verbinden met Device Policy-app?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Ter bescherming van de gegevens van uw organisatie moet u verbinding maken met de Device Policy-app voordat u inlogt."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Verbinden"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/pl.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Zaloguj się"; /* Long form sign-in button text */ "Sign in with Google" = "Zaloguj się przez Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Zaloguj się przez Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Pobierz darmową aplikację Google i zaloguj się do aplikacji, używając konta Google. Nie musisz pamiętać haseł."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Anuluj"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Pobierz"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Anuluj"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Ustawienia"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Nie można zalogować się na konto"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Administrator wymaga ustawienia kodu dostępu do konta na tym urządzeniu. Ustaw kod dostępu i spróbuj ponownie."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Urządzenie nie jest zgodne z zasadami bezpieczeństwa ustanowionymi przez Twojego administratora."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Połączyć z aplikacją Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Aby chronić dane organizacji, przed zalogowaniem musisz się połączyć z aplikacją Device Policy."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Połącz"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/pt.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Fazer login"; /* Long form sign-in button text */ "Sign in with Google" = "Fazer login com o Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Fazer login com o Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Faça o download do Google app gratuitamente e faça login em aplicativos com sua Conta do Google. Não há necessidade de lembrar senhas."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Cancelar"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Instalar"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Cancelar"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Configurações"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Não foi possível fazer login na conta"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Seu administrador exige que você defina uma senha neste dispositivo para acessar esta conta. Defina uma senha e tente novamente."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "O dispositivo não está em conformidade com a política de segurança definida pelo administrador."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Conectar-se ao app Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Para proteger os dados da sua organização, você precisa se conectar ao app Device Policy antes de fazer login."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Conectar"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/pt_BR.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Fazer login"; /* Long form sign-in button text */ "Sign in with Google" = "Fazer login com o Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Fazer login com o Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Faça o download do Google app gratuitamente e faça login em aplicativos com sua Conta do Google. Não há necessidade de lembrar senhas."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Cancelar"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Instalar"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Cancelar"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Configurações"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Não foi possível fazer login na conta"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Seu administrador exige que você defina uma senha neste dispositivo para acessar esta conta. Defina uma senha e tente novamente."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "O dispositivo não está em conformidade com a política de segurança definida pelo administrador."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Conectar-se ao app Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Para proteger os dados da sua organização, você precisa se conectar ao app Device Policy antes de fazer login."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Conectar"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/pt_PT.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Iniciar sessão"; /* Long form sign-in button text */ "Sign in with Google" = "Iniciar sessão com o Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Iniciar sessão com o Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Obtenha a aplicação Google gratuita e inicie sessão nas aplicações com a sua Conta Google. Não precisa de memorizar palavras-passe."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Cancelar"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Obter"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Cancelar"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Definições"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Não é possível iniciar sessão na conta"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "O administrador requer a definição de um código secreto neste dispositivo para aceder a esta conta. Defina um código secreto e tente novamente."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "O dispositivo não está em conformidade com a política de segurança definida pelo seu administrador."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Pretende ligar-se à aplicação Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Para proteger os dados da sua entidade, tem de se ligar à aplicação Device Policy antes de iniciar sessão."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Ligar"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/ro.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Conectați-vă"; /* Long form sign-in button text */ "Sign in with Google" = "Conectați-vă cu Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Conectați-vă cu Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Instalați aplicația Google gratuită și conectați-vă la aplicații folosind Contul Google. Nu mai trebuie să rețineți parolele."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Anulați"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Instalați"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Anulați"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Setări"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Nu vă puteți conecta la cont"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Administratorul impune să setați o parolă pe acest dispozitiv ca să accesați contul. Setați o parolă și încercați din nou."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Dispozitivul nu respectă politica de securitate stabilită de administrator."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Vă conectați cu aplicația Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Pentru a vă proteja datele organizației, trebuie să vă conectați cu aplicația Device Policy înainte de a vă conecta."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Conectați"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/ru.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Войти"; /* Long form sign-in button text */ "Sign in with Google" = "Войти в аккаунт Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Надоело вводить пароль?"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Установите бесплатное приложение Google и входите в другие мобильные программы, используя учетные данные своего аккаунта."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Отмена"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Установить"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "ОК"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Отмена"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Настройки"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Не удалось войти в аккаунт"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "В соответствии с требованиями администратора для входа в аккаунт необходимо установить на устройстве код доступа. Сделайте это и повторите попытку."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Устройство не соответствует правилам безопасности, которые установлены администратором."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Подключить приложение Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "В целях защиты корпоративных данных перед входом в аккаунт необходимо подключить приложение Device Policy."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Подключить"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/sk.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Prihlásiť sa"; /* Long form sign-in button text */ "Sign in with Google" = "Prihlásiť sa pomocou účtu Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Prihlásenie pomocou účtu Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Nainštalujte si zdarma aplikáciu Google a prihlasujte sa do aplikácií pomocou účtu Google. Nebudete si už musieť pamätať rôzne heslá."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Zrušiť"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Inštalovať"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Zrušiť"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Nastavenia"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Nedá sa prihlásiť do účtu"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Správca vyžaduje, aby ste v tomto zariadení nastavili vstupný kód na prístup do príslušného účtu. Nastavte vstupný kód a skúste to znova."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Zariadenie nespĺňa pravidlá zabezpečenia nastavené vaším správcom."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Prepojiť s aplikáciou Pravidlá pre zariadenie?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Na to, aby bolo možné chrániť dáta vašej organizácie, je nutné pred prihlásením aktivovať prepojenie s aplikáciou Pravidlá pre zariadenie."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Prepojiť"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/sv.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Logga in"; /* Long form sign-in button text */ "Sign in with Google" = "Logga in med Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Logga in med Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Hämta Google-appen utan kostnad och logga in i appar med ditt Google-konto. Du behöver inte komma ihåg en massa lösenord."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Avbryt"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Hämta"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "Ok"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Avbryt"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Inställningar"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Det gick inte att logga in på kontot"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Administratören kräver att du anger ett lösenord på den här enheten för att få åtkomst till kontot. Ange ett lösenord och försök igen."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Säkerhetspolicyn som administratören har angett efterlevs inte på enheten."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Vill du ansluta med appen Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Du måste ansluta med appen Device Policy innan du loggar in för att skydda organisationens data."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Anslut"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/th.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "ลงชื่อเข้าใช้"; /* Long form sign-in button text */ "Sign in with Google" = "ลงชื่อเข้าใช้ด้วย Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "ลงชื่อเข้าใช้ด้วย Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "ติดตั้งแอป Google ฟรีและลงชื่อเข้าใช้แอปต่างๆ ด้วยบัญชี Google คุณไม่ต้องจำรหัสผ่านอีกแล้ว"; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "ยกเลิก"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "ติดตั้ง"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "ตกลง"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "ยกเลิก"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "การตั้งค่า"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "ลงชื่อเข้าใช้บัญชีไม่ได้"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "ผู้ดูแลระบบกำหนดให้คุณตั้งรหัสผ่านในอุปกรณ์นี้เพื่อเข้าถึงบัญชีนี้ โปรดตั้งรหัสผ่าน แล้วลองอีกครั้ง"; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "อุปกรณ์ไม่ตรงตามนโยบายความปลอดภัยที่กำหนดโดยผู้ดูแลระบบของคุณ"; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "เชื่อมต่อแอป Device Policy ไหม"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "เพื่อปกป้องข้อมูลขององค์กร คุณต้องเชื่อมต่อแอป Device Policy ก่อนลงชื่อเข้าสู่ระบบ"; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "เชื่อมต่อ"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/tr.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Oturum aç"; /* Long form sign-in button text */ "Sign in with Google" = "Google ile oturum aç"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Google ile oturum aç"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Ücretsiz Google uygulamasını edinin ve uygulamalarda Google Hesabınızla oturum açın. Şifrelerinizi hatırlamanız gerekmez."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "İptal"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Yükle"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "Tamam"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "İptal"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Ayarlar"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Hesapta oturum açılamıyor"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Yöneticiniz, bu hesaba erişmek için bu cihazda bir şifre kodu ayarlamanızı gerektiriyor. Lütfen şifre kodu ayarlayın ve tekrar deneyin."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Bu cihaz, yöneticinizin ayarladığı güvenlik politikasıyla uyumlu değil."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Cihaz Politika Uygulamasına bağlanılsın mı?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Kuruluşunuzun verilerini korumak için, giriş yapmadan önce Cihaz Politikası uygulamasına bağlanmalısınız."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Bağlan"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/uk.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Увійти"; /* Long form sign-in button text */ "Sign in with Google" = "Увійти в обліковий запис Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Входьте в обліковий запис Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Установіть безкоштовний додаток Google і входьте в обліковий запис Google у додатках. Не потрібно запам’ятовувати паролі."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Скасувати"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Установити"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Скасувати"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Налаштування"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Не вдається ввійти в обліковий запис"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Щоб увійти в обліковий запис, потрібно налаштувати код доступу на пристрої. Зробіть це й повторіть спробу."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Пристрій не відповідає правилу безпеки, яке налаштував адміністратор."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "З’єднатися з додатком Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Щоб захистити дані організації, потрібно з’єднатися з додатком Device Policy, перш ніж увійти."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "З’єднатися"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/vi.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "Đăng nhập"; /* Long form sign-in button text */ "Sign in with Google" = "Đăng nhập bằng Google"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "Đăng nhập bằng Google"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "Tải ứng dụng Google miễn phí và đăng nhập vào các ứng dụng bằng Tài khoản Google của bạn. Không cần phải nhớ mật khẩu."; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "Hủy"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "Tải"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "OK"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "Hủy"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "Cài đặt"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "Không thể đăng nhập vào tài khoản"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "Quản trị viên của bạn yêu cầu bạn phải đặt mật mã trên thiết bị này để truy cập vào tài khoản này. Hãy đặt mật mã và thử lại."; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "Thiết bị này không tuân thủ chính sách bảo mật do quản trị viên của bạn thiết lập."; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "Kết nối với ứng dụng Device Policy?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "Để bảo vệ dữ liệu của tổ chức của mình, bạn phải kết nối với ứng dụng Device Policy trước khi đăng nhập."; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "Kết nối"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/zh_CN.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "登录"; /* Long form sign-in button text */ "Sign in with Google" = "使用 Google 帐号登录"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "使用 Google 帐号登录"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "安装免费的“Google”应用后,您可以使用自己的 Google 帐号登录众多应用(无需记住众多密码)。"; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "取消"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "安装"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "确定"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "取消"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "设置"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "无法登录帐号"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "您的管理员要求您必须先在此设备上设置密码,然后才能访问此帐号。请设置密码并重试。"; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "该设备不符合管理员设置的安全政策。"; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "要关联 Device Policy 应用吗?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "要保护您组织的数据,您必须在登录前关联 Device Policy 应用。"; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "关联"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/GoogleSignIn.bundle/zh_TW.lproj/GoogleSignIn.strings
New file @@ -0,0 +1,44 @@ /* Sign-in button text */ "Sign in" = "登入"; /* Long form sign-in button text */ "Sign in with Google" = "登入 Google 帳戶"; /* The title of the promotional prompt to install the Google app. */ "PromoTitle" = "登入 Google 帳戶"; /* The body message of the promotional prompt to install the Google app. */ "PromoMessage" = "只要安裝免費的 Google app,即可使用 Google 帳戶登入應用程式,而不必費心記住密碼。"; /* The cancel button on the promotional prompt to install the Google app. */ "PromoActionCancel" = "取消"; /* The install button on the promotional prompt to install the Google app. */ "PromoActionInstall" = "安裝"; /* The text for the button for user to acknowledge and dismiss a dialog. */ "OK" = "確定"; /* The text for the button for user to dismiss a dialog without taking any action. */ "Cancel" = "取消"; /* The name of the iOS native "Settings" app. */ "SettingsAppName" = "設定"; /* The title for the error dialog for unable to sign in because of EMM policy. */ "EmmErrorTitle" = "無法登入帳戶"; /* The text in the error dialog asking user to set up a passcode for the device due to EMM policy. */ "EmmPasscodeRequired" = "管理員要求您必須為這個裝置設定通行碼,才能存取這個帳戶。請設定通行碼,然後再試一次。"; /* The text in the error dialog informing user that EMM policy prevented sign-in on the device. */ "EmmGeneralError" = "這部裝置不符合您的管理員所設定的安全性政策規定。"; /* The title in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectTitle" = "要連結 Device Policy 應用程式嗎?"; /* The text in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectText" = "為了保護貴機構的資料,您必須在登入前連結 Device Policy 應用程式。"; /* The action button label in the error dialog informing user that connecting with Device Policy app is required. */ "EmmConnectLabel" = "連結"; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/Headers/YYJPlatform.hold mode 100644 new mode 100755
@@ -232,6 +232,7 @@ /** for AppsFly */ -(void)yyj_AppFlysStart; -(void)yyj_AppFlysTraceEvent:(NSString *)eventName param:(NSDictionary *)param; Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/Headers/YYJPlatformDefines.hold mode 100644 new mode 100755
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/Info.plistold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/Modules/module.modulemapold mode 100644 new mode 100755
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJAboutAccountViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJAccountViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJChangPwdViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJComRegisterViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJEditAccountViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJFindPswViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJLoginViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJMinAccountTableViewCell.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJMinAccountViewController.nib/objects-11.0+.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJMinAccountViewController.nib/runtime.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJPhoneRegisterViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJPhoneSettingPswViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJPlatformold mode 100644 new mode 100755 Binary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJQuickRegisterViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJRealNameViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJResetPswViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJSafetySettingViewController.nibBinary files differ
Channel/IOS/gtios/Plugins/sanxia/YYJPlatform.framework/YYJSafetyWarmViewController.nibBinary files differ
Readme.txt
@@ -1,2 +1,2 @@ 思璞Unity编辑器打包提醒: 1. BuildSetting必须选择Gradle模式 Quick iOS 打包注意 1。targets 选择UnityFramework, signing&Capabilities. Uncheck Automatically manage signing