From 08579e9d2d986141f08d8fa80d033129568598e9 Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Sat, 2 Nov 2024 22:40:30 +0100 Subject: [PATCH 1/7] - OCCapabilities: add serverSideSearchSupported property - OCConnection: - add new method for -searchFilesWithPattern - expose internal method -_davItemAttributes for composition of WebDAV queries - add new OCConnectionEndpointIDWebDAVSpaces endpoint and MDM parameter needed for server-side search REPORT requests - OCConnection+Search: first implementation of support for server-side search - OCCore+Search: first implementation of support for server-side search, handling item resolution and composition in a data source - OCSearchResult: container for OCCore+Search search results and target to cancel ongoing resolutions - OCEvent: add new OCEventTypeSearch event type - OCHTTPDAVRequest: expand -responseItemsForBasePath: method with drives parameter to allow efficient parsing of ocis search responses - OCItem+OCXMLObjectCreation: add support for oc:fileid, oc:score and search result path -> driveID mapping - OCItem: add new searchScore property for server-side search results - OCTypes: add new KQL query string type --- ownCloudSDK.xcodeproj/project.pbxproj | 36 +++++ .../Connection/Capabilities/OCCapabilities.h | 3 + .../Connection/Capabilities/OCCapabilities.m | 9 ++ ownCloudSDK/Connection/OCConnection+Sharing.m | 4 +- ownCloudSDK/Connection/OCConnection.h | 9 ++ ownCloudSDK/Connection/OCConnection.m | 14 +- .../Connection/Search/OCConnection+Search.m | 129 ++++++++++++++++++ ownCloudSDK/Core/Search/OCCore+Search.h | 30 ++++ ownCloudSDK/Core/Search/OCCore+Search.m | 37 +++++ ownCloudSDK/Core/Search/OCSearchResult.h | 45 ++++++ ownCloudSDK/Core/Search/OCSearchResult.m | 104 ++++++++++++++ ownCloudSDK/Events/OCEvent.h | 5 +- ownCloudSDK/HTTP/Request/OCHTTPDAVRequest.h | 2 +- ownCloudSDK/HTTP/Request/OCHTTPDAVRequest.m | 27 +++- ownCloudSDK/Item/OCItem+OCXMLObjectCreation.m | 30 ++++ ownCloudSDK/Item/OCItem.h | 2 + ownCloudSDK/OCTypes.h | 2 + ownCloudSDK/ownCloudSDK.h | 2 + 18 files changed, 479 insertions(+), 11 deletions(-) create mode 100644 ownCloudSDK/Connection/Search/OCConnection+Search.m create mode 100644 ownCloudSDK/Core/Search/OCCore+Search.h create mode 100644 ownCloudSDK/Core/Search/OCCore+Search.m create mode 100644 ownCloudSDK/Core/Search/OCSearchResult.h create mode 100644 ownCloudSDK/Core/Search/OCSearchResult.m diff --git a/ownCloudSDK.xcodeproj/project.pbxproj b/ownCloudSDK.xcodeproj/project.pbxproj index 5067d0e3..3b5cac1d 100644 --- a/ownCloudSDK.xcodeproj/project.pbxproj +++ b/ownCloudSDK.xcodeproj/project.pbxproj @@ -434,6 +434,11 @@ DC6D38802C4E4ED300169BF5 /* OCWaitConditionAvailableOffline.m in Sources */ = {isa = PBXBuildFile; fileRef = DC6D387E2C4E4ED300169BF5 /* OCWaitConditionAvailableOffline.m */; }; DC6D51D924A8BC4D006B75E6 /* OCNetworkMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = DC6D51D724A8BC4C006B75E6 /* OCNetworkMonitor.h */; settings = {ATTRIBUTES = (Public, ); }; }; DC6D51DA24A8BC4D006B75E6 /* OCNetworkMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = DC6D51D824A8BC4C006B75E6 /* OCNetworkMonitor.m */; }; + DC6D937D2CD5762B00537645 /* OCConnection+Search.m in Sources */ = {isa = PBXBuildFile; fileRef = DC6D937B2CD5762B00537645 /* OCConnection+Search.m */; }; + DC6D93822CD6BEC900537645 /* OCCore+Search.h in Headers */ = {isa = PBXBuildFile; fileRef = DC6D93802CD6BEC900537645 /* OCCore+Search.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DC6D93832CD6BEC900537645 /* OCCore+Search.m in Sources */ = {isa = PBXBuildFile; fileRef = DC6D93812CD6BEC900537645 /* OCCore+Search.m */; }; + DC6D93862CD6BF3200537645 /* OCSearchResult.h in Headers */ = {isa = PBXBuildFile; fileRef = DC6D93842CD6BF3200537645 /* OCSearchResult.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DC6D93872CD6BF3200537645 /* OCSearchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = DC6D93852CD6BF3200537645 /* OCSearchResult.m */; }; DC6DB88221C26F4D00189B21 /* XCTestCase+Tagging.m in Sources */ = {isa = PBXBuildFile; fileRef = DC6DB88121C26F4D00189B21 /* XCTestCase+Tagging.m */; }; DC6DEEAD24C5978E00E3772E /* OCHTTPPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = DC6DEEAB24C5978E00E3772E /* OCHTTPPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; }; DC6DEEAE24C5978E00E3772E /* OCHTTPPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC6DEEAC24C5978E00E3772E /* OCHTTPPolicy.m */; }; @@ -1456,6 +1461,11 @@ DC6D387E2C4E4ED300169BF5 /* OCWaitConditionAvailableOffline.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OCWaitConditionAvailableOffline.m; sourceTree = ""; }; DC6D51D724A8BC4C006B75E6 /* OCNetworkMonitor.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OCNetworkMonitor.h; sourceTree = ""; }; DC6D51D824A8BC4C006B75E6 /* OCNetworkMonitor.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OCNetworkMonitor.m; sourceTree = ""; }; + DC6D937B2CD5762B00537645 /* OCConnection+Search.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "OCConnection+Search.m"; sourceTree = ""; }; + DC6D93802CD6BEC900537645 /* OCCore+Search.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "OCCore+Search.h"; sourceTree = ""; }; + DC6D93812CD6BEC900537645 /* OCCore+Search.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "OCCore+Search.m"; sourceTree = ""; }; + DC6D93842CD6BF3200537645 /* OCSearchResult.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OCSearchResult.h; sourceTree = ""; }; + DC6D93852CD6BF3200537645 /* OCSearchResult.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OCSearchResult.m; sourceTree = ""; }; DC6DB88021C26F4D00189B21 /* XCTestCase+Tagging.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "XCTestCase+Tagging.h"; sourceTree = ""; }; DC6DB88121C26F4D00189B21 /* XCTestCase+Tagging.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "XCTestCase+Tagging.m"; sourceTree = ""; }; DC6DEEAB24C5978E00E3772E /* OCHTTPPolicy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OCHTTPPolicy.h; sourceTree = ""; }; @@ -3031,6 +3041,25 @@ path = Update; sourceTree = ""; }; + DC6D937E2CD5879A00537645 /* Search */ = { + isa = PBXGroup; + children = ( + DC6D937B2CD5762B00537645 /* OCConnection+Search.m */, + ); + path = Search; + sourceTree = ""; + }; + DC6D937F2CD6BE9C00537645 /* Search */ = { + isa = PBXGroup; + children = ( + DC6D93812CD6BEC900537645 /* OCCore+Search.m */, + DC6D93802CD6BEC900537645 /* OCCore+Search.h */, + DC6D93852CD6BF3200537645 /* OCSearchResult.m */, + DC6D93842CD6BF3200537645 /* OCSearchResult.h */, + ); + path = Search; + sourceTree = ""; + }; DC6DEEAA24C5977500E3772E /* Policy */ = { isa = PBXGroup; children = ( @@ -3323,6 +3352,7 @@ DC19BFE221CB9FAC007C20D1 /* FileProvider */, DC2FED5D228D5577004FDEC6 /* Favorites */, DC19BFE121CB9F4F007C20D1 /* Sync */, + DC6D937F2CD6BE9C00537645 /* Search */, DC2F6377223A61A60063C2DA /* Core Query */, ); path = Core; @@ -3402,6 +3432,7 @@ DCCE49362684BBF5005961D8 /* DAVResponse */, DCD63279223BB1930090169E /* Capabilities */, DC85570A204FEA5E00189B9A /* Categories */, + DC6D937E2CD5879A00537645 /* Search */, DCDB760F2739D26100EE7A06 /* ServerLocator */, ); path = Connection; @@ -4480,6 +4511,7 @@ DC4B1171220830F20062BCDD /* OCHTTPPipelineBackend.h in Headers */, DC19BFD221CA6C15007C20D1 /* OCSyncIssueChoice.h in Headers */, DCDB761E2739D4A300EE7A06 /* OCServerLocatorWebFinger.h in Headers */, + DC6D93822CD6BEC900537645 /* OCCore+Search.h in Headers */, DCEE0B6F25E697AF006534B5 /* OCCoreManager+ItemResolution.h in Headers */, DCC8FA21202B218100EB6701 /* OCAppIdentity.h in Headers */, DCC3701324D4D134008B0DEB /* OCScanJobActivity.h in Headers */, @@ -4600,6 +4632,7 @@ DC41C79025EA5F7A0074F23B /* OCResourceSource.h in Headers */, DCF575DF27956D84003BEBBA /* OCViewProviderContext.h in Headers */, DC701477220AE696009D4FD9 /* OCHTTPPipelineTask.h in Headers */, + DC6D93862CD6BF3200537645 /* OCSearchResult.h in Headers */, DC47E4DD27A5820D0020E8EF /* GAODataError.h in Headers */, DC622C4E29019515001D73A0 /* OCLocale+SystemLanguage.h in Headers */, DC47E4D727A5820D0020E8EF /* GAQuota.h in Headers */, @@ -5246,6 +5279,7 @@ DCDD9B15222986D50052A001 /* OCShare+OCXMLObjectCreation.m in Sources */, DC54396520D50B8A002BF291 /* OCCore+CommandDelete.m in Sources */, DCF163F7274BA6C300E0182A /* OCSQLiteCollationLocalized.m in Sources */, + DC6D93872CD6BF3200537645 /* OCSearchResult.m in Sources */, DC4B116E2208306C0062BCDD /* OCHTTPPipeline.m in Sources */, DC8B7B3A22D88FFD00E63657 /* OCItemPolicyProcessor.m in Sources */, DC8266602818972200F91F7D /* OCVaultLocation.m in Sources */, @@ -5270,6 +5304,7 @@ DC7014262209CE7A009D4FD9 /* OCHTTPPipelineManager.m in Sources */, DC6ABF6C2534633E00689C7B /* OCHostSimulatorManager.m in Sources */, DCD2D40422F059190071FB8F /* OCClassSettingsUserPreferences.m in Sources */, + DC6D937D2CD5762B00537645 /* OCConnection+Search.m in Sources */, DC5D9E6924963DED00BFFE8E /* OCMessageChoice.m in Sources */, DCC26FBA2B722C8900904000 /* OCPasswordPolicyReport.m in Sources */, DC855700204F597800189B9A /* OCXMLParserNode.m in Sources */, @@ -5415,6 +5450,7 @@ DC85571D2050196000189B9A /* OCItem+OCXMLObjectCreation.m in Sources */, DC7E0A702036F28B006111FA /* OCKeychain.m in Sources */, DC826666281AC59D00F91F7D /* OCVFSCore.m in Sources */, + DC6D93832CD6BEC900537645 /* OCCore+Search.m in Sources */, DC49B55428339BE200DAF13B /* NSArray+OCMapping.m in Sources */, DC4AFAB1206A8C1D00189B9A /* OCSQLiteStatement.m in Sources */, DCEEB2F6204802CF00189B9A /* OCIssue.m in Sources */, diff --git a/ownCloudSDK/Connection/Capabilities/OCCapabilities.h b/ownCloudSDK/Connection/Capabilities/OCCapabilities.h index 67a92e0f..3f08b8d2 100644 --- a/ownCloudSDK/Connection/Capabilities/OCCapabilities.h +++ b/ownCloudSDK/Connection/Capabilities/OCCapabilities.h @@ -137,6 +137,9 @@ typedef NSNumber* OCCapabilityBool; @property(readonly,nonatomic) BOOL federatedSharingSupported; +#pragma mark - Search +@property(readonly,nonatomic) BOOL serverSideSearchSupported; + #pragma mark - Notifications @property(readonly,nullable,nonatomic) NSArray *notificationEndpoints; diff --git a/ownCloudSDK/Connection/Capabilities/OCCapabilities.m b/ownCloudSDK/Connection/Capabilities/OCCapabilities.m index 40dece2d..1d28fc58 100644 --- a/ownCloudSDK/Connection/Capabilities/OCCapabilities.m +++ b/ownCloudSDK/Connection/Capabilities/OCCapabilities.m @@ -122,6 +122,9 @@ @implementation OCCapabilities @dynamic federatedSharingIncoming; @dynamic federatedSharingOutgoing; +#pragma mark - Search +@dynamic serverSideSearchSupported; + #pragma mark - Notifications @dynamic notificationEndpoints; @@ -741,6 +744,12 @@ - (BOOL)federatedSharingSupported return (self.federatedSharingIncoming.boolValue || self.federatedSharingOutgoing.boolValue); } +#pragma mark - Search +- (BOOL)serverSideSearchSupported +{ + return (OCTypedCast(_capabilities[@"search"], NSDictionary) != nil); +} + #pragma mark - Notifications - (NSArray *)notificationEndpoints { diff --git a/ownCloudSDK/Connection/OCConnection+Sharing.m b/ownCloudSDK/Connection/OCConnection+Sharing.m index 4d653d63..e63a77c3 100644 --- a/ownCloudSDK/Connection/OCConnection+Sharing.m +++ b/ownCloudSDK/Connection/OCConnection+Sharing.m @@ -944,7 +944,7 @@ - (nullable NSProgress *)retrievePrivateLinkForItem:(OCItem *)item completionHan NSArray *errors = nil; NSArray *items = nil; - if ((items = [((OCHTTPDAVRequest *)request) responseItemsForBasePath:endpointURL.path reuseUsersByID:self->_usersByUserID driveID:nil withErrors:&errors]) != nil) + if ((items = [((OCHTTPDAVRequest *)request) responseItemsForBasePath:endpointURL.path drives:nil reuseUsersByID:self->_usersByUserID driveID:nil withErrors:&errors]) != nil) { NSURL *privateLink; @@ -1011,7 +1011,7 @@ - (nullable NSProgress *)retrievePathForPrivateLink:(NSURL *)privateLink complet NSArray *errors = nil; NSArray *items = nil; - if ((items = [((OCHTTPDAVRequest *)request) responseItemsForBasePath:endpointURL.path reuseUsersByID:self->_usersByUserID driveID:nil withErrors:&errors]) != nil) + if ((items = [((OCHTTPDAVRequest *)request) responseItemsForBasePath:endpointURL.path drives:nil reuseUsersByID:self->_usersByUserID driveID:nil withErrors:&errors]) != nil) { OCLocation *location; diff --git a/ownCloudSDK/Connection/OCConnection.h b/ownCloudSDK/Connection/OCConnection.h index 4c67b6db..f51d8522 100644 --- a/ownCloudSDK/Connection/OCConnection.h +++ b/ownCloudSDK/Connection/OCConnection.h @@ -216,6 +216,8 @@ NS_ASSUME_NONNULL_BEGIN - (nullable NSProgress *)retrieveItemListAtLocation:(OCLocation *)location depth:(NSUInteger)depth options:(nullable OCConnectionOptions)options completionHandler:(void(^)(NSError * _Nullable error, NSArray * _Nullable items))completionHandler; //!< Retrieves the items at the specified path with options - (nullable NSProgress *)retrieveItemListAtLocation:(OCLocation *)location depth:(NSUInteger)depth options:(nullable OCConnectionOptions)options resultTarget:(OCEventTarget *)eventTarget; //!< Retrieves the items at the specified path, with options to schedule on the background queue and with a "not before" date. +- (NSMutableArray *)_davItemAttributes; //!< Returns a newly created array of XML nodes that are requested by a PROPFIND by default + #pragma mark - Actions - (nullable OCProgress *)createFolder:(NSString *)folderName inside:(OCItem *)parentItem options:(nullable OCConnectionOptions)options resultTarget:(OCEventTarget *)eventTarget; @@ -439,11 +441,18 @@ typedef void(^OCConnectionRecipientsRetrievalCompletionHandler)(NSError * _Nulla - (nullable NSError *)supportsServerVersion:(NSString *)serverVersion product:(NSString *)product longVersion:(NSString *)longVersion allowHiddenVersion:(BOOL)allowHiddenVersion; @end +@interface OCConnection (Search) + +- (nullable OCProgress *)searchFilesWithPattern:(NSString *)pattern limit:(nullable NSNumber *)limit options:(nullable NSDictionary *)options resultTarget:(OCEventTarget *)eventTarget; + +@end + extern OCConnectionEndpointID OCConnectionEndpointIDWellKnown; extern OCConnectionEndpointID OCConnectionEndpointIDCapabilities; extern OCConnectionEndpointID OCConnectionEndpointIDUser; extern OCConnectionEndpointID OCConnectionEndpointIDWebDAV; extern OCConnectionEndpointID OCConnectionEndpointIDWebDAVMeta; +extern OCConnectionEndpointID OCConnectionEndpointIDWebDAVSpaces; //!< Spaces DAV endpoint, used for f.ex. search (see ocis#9367) extern OCConnectionEndpointID OCConnectionEndpointIDWebDAVRoot; //!< Virtual, non-configurable endpoint, builds the root URL based on OCConnectionEndpointIDWebDAV and the username found in connection.loggedInUser extern OCConnectionEndpointID OCConnectionEndpointIDPreview; //!< Virtual, non-configurable endpoint, builds the root URL for requesting previews based on OCConnectionEndpointIDWebDAV, the username found in connection.loggedInUser and the drive ID extern OCConnectionEndpointID OCConnectionEndpointIDStatus; diff --git a/ownCloudSDK/Connection/OCConnection.m b/ownCloudSDK/Connection/OCConnection.m index b99c3f4a..fd59f2cd 100644 --- a/ownCloudSDK/Connection/OCConnection.m +++ b/ownCloudSDK/Connection/OCConnection.m @@ -123,6 +123,7 @@ + (OCClassSettingsIdentifier)classSettingsIdentifier OCConnectionEndpointIDUser : @"ocs/v2.php/cloud/user", // Requested once on login OCConnectionEndpointIDWebDAV : @"remote.php/dav/files", // Polled in intervals to detect changes to the root directory ETag OCConnectionEndpointIDWebDAVMeta : @"remote.php/dav/meta", // Metadata DAV endpoint, used for private link resolution + OCConnectionEndpointIDWebDAVSpaces : @"remote.php/dav/spaces", // Spaces DAV endpoint, used for f.ex. search (see ocis#9367) OCConnectionEndpointIDStatus : @"status.php", // Requested during login and polled in intervals during maintenance mode OCConnectionEndpointIDShares : @"ocs/v2.php/apps/files_sharing/api/v1/shares", // Polled in intervals to detect changes if OCShareQuery is used with the interval option OCConnectionEndpointIDRemoteShares : @"ocs/v2.php/apps/files_sharing/api/v1/remote_shares",// Polled in intervals to detect changes if OCShareQuery is used with the interval option @@ -265,6 +266,14 @@ + (OCClassSettingsMetadataCollection)classSettingsMetadata OCClassSettingsMetadataKeyFlags : @(OCClassSettingsFlagDenyUserPreferences) }, + OCConnectionEndpointIDWebDAVSpaces : @{ + OCClassSettingsMetadataKeyType : OCClassSettingsMetadataTypeString, + OCClassSettingsMetadataKeyDescription : @"Endpoint to as for WebDAV spaces.", + OCClassSettingsMetadataKeyStatus : OCClassSettingsKeyStatusAdvanced, + OCClassSettingsMetadataKeyCategory : @"Endpoints", + OCClassSettingsMetadataKeyFlags : @(OCClassSettingsFlagDenyUserPreferences) + }, + OCConnectionEndpointIDStatus : @{ OCClassSettingsMetadataKeyType : OCClassSettingsMetadataTypeString, OCClassSettingsMetadataKeyDescription : @"Endpoint to retrieve basic status information and detect an ownCloud installation.", @@ -2028,7 +2037,7 @@ - (void)_handleRetrieveItemListAtPathResult:(OCHTTPRequest *)request error:(NSEr // OCLogDebug(@"Error: %@ - Response: %@", OCLogPrivate(error), ((request.downloadRequest && (request.downloadedFileURL != nil)) ? OCLogPrivate([NSString stringWithContentsOfURL:request.downloadedFileURL encoding:NSUTF8StringEncoding error:NULL]) : nil)); - items = [((OCHTTPDAVRequest *)request) responseItemsForBasePath:endpointURL.path reuseUsersByID:_usersByUserID driveID:driveID withErrors:&errors]; + items = [((OCHTTPDAVRequest *)request) responseItemsForBasePath:endpointURL.path drives:nil reuseUsersByID:_usersByUserID driveID:driveID withErrors:&errors]; if ((items.count == 0) && (errors.count > 0) && (event.error == nil)) { @@ -3289,7 +3298,7 @@ - (void)_handleFilterFilesResult:(OCHTTPRequest *)request error:(NSError *)error if (endpointURL != nil) { - if ((items = [((OCHTTPDAVRequest *)request) responseItemsForBasePath:endpointURL.path reuseUsersByID:self->_usersByUserID driveID:nil withErrors:&errors]) != nil) + if ((items = [((OCHTTPDAVRequest *)request) responseItemsForBasePath:endpointURL.path drives:nil reuseUsersByID:self->_usersByUserID driveID:nil withErrors:&errors]) != nil) { event.result = items; } @@ -3371,6 +3380,7 @@ - (NSError *)sendSynchronousRequest:(OCHTTPRequest *)request OCConnectionEndpointID OCConnectionEndpointIDWebDAV = @"endpoint-webdav"; OCConnectionEndpointID OCConnectionEndpointIDWebDAVMeta = @"endpoint-webdav-meta"; OCConnectionEndpointID OCConnectionEndpointIDWebDAVRoot = @"endpoint-webdav-root"; +OCConnectionEndpointID OCConnectionEndpointIDWebDAVSpaces = @"endpoint-webdav-spaces"; OCConnectionEndpointID OCConnectionEndpointIDPreview = @"endpoint-preview"; OCConnectionEndpointID OCConnectionEndpointIDStatus = @"endpoint-status"; OCConnectionEndpointID OCConnectionEndpointIDShares = @"endpoint-shares"; diff --git a/ownCloudSDK/Connection/Search/OCConnection+Search.m b/ownCloudSDK/Connection/Search/OCConnection+Search.m new file mode 100644 index 00000000..e423117a --- /dev/null +++ b/ownCloudSDK/Connection/Search/OCConnection+Search.m @@ -0,0 +1,129 @@ +// +// OCConnection+Search.m +// ownCloudSDK +// +// Created by Felix Schwarz on 31.10.24. +// Copyright © 2024 ownCloud GmbH. All rights reserved. +// + +/* + * Copyright (C) 2024, ownCloud GmbH. + * + * This code is covered by the GNU Public License Version 3. + * + * For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ + * You should have received a copy of this license along with this program. If not, see . + * + */ + +#import "OCConnection.h" +#import "OCXMLNode.h" +#import "OCHTTPDAVRequest.h" +#import "NSError+OCError.h" +#import "OCMacros.h" + +@implementation OCConnection (Search) + +- (nullable OCProgress *)searchFilesWithPattern:(NSString *)pattern limit:(nullable NSNumber *)limit options:(nullable NSDictionary *)options resultTarget:(OCEventTarget *)eventTarget +{ + NSURL *endpointURL = [self URLForEndpoint:OCConnectionEndpointIDWebDAVSpaces options:nil]; + NSMutableArray *searchNodes = [NSMutableArray new]; + NSMutableArray *propertyNodes = [self _davItemAttributes]; + OCHTTPDAVRequest *request; + + if (endpointURL == nil) + { + // WebDAV root could not be generated (likely due to lack of username) + [eventTarget handleError:OCError(OCErrorInternal) type:OCEventTypeSearch uuid:nil sender:self]; + + return (nil); + } + + if (pattern != nil) + { + [searchNodes addObject:[OCXMLNode elementWithName:@"oc:pattern" stringValue:pattern]]; + } + + if (limit != nil) + { + [searchNodes addObject:[OCXMLNode elementWithName:@"oc:limit" stringValue:limit.stringValue]]; + } + + if (searchNodes.count == 0) + { + [eventTarget handleError:OCError(OCErrorInsufficientParameters) type:OCEventTypeSearch uuid:nil sender:self]; + return(nil); + } + + request = [OCHTTPDAVRequest reportRequestWithURL:endpointURL rootElementName:@"oc:search-files" content:[[NSArray alloc] initWithObjects: + [OCXMLNode elementWithName:@"D:prop" children:propertyNodes], + [OCXMLNode elementWithName:@"oc:search" children:searchNodes], + nil]]; + request.eventTarget = eventTarget; + request.resultHandlerAction = @selector(_handleSearchResult:error:); + request.requiredSignals = self.propFindSignals; + + // Attach to pipelines + [self attachToPipelines]; + + // Enqueue request + [self.ephermalPipeline enqueueRequest:request forPartitionID:self.partitionID]; + + return (request.progress); +} + +- (void)_handleSearchResult:(OCHTTPRequest *)request error:(NSError *)error +{ + OCEvent *event; + + if ((event = [OCEvent eventForEventTarget:request.eventTarget type:OCEventTypeSearch uuid:request.identifier attributes:nil]) != nil) + { + if (error != nil) + { + event.error = error; + } + else if (request.error != nil) + { + event.error = request.error; + } + else + { + if (request.httpResponse.status.isSuccess) + { + NSArray *items = nil; + NSArray *errors = nil; + NSURL *endpointURL = [self URLForEndpoint:OCConnectionEndpointIDWebDAVSpaces options:nil]; + + if (endpointURL != nil) + { + if ((items = [((OCHTTPDAVRequest *)request) responseItemsForBasePath:endpointURL.path drives:_drives reuseUsersByID:self->_usersByUserID driveID:nil withErrors:&errors]) != nil) + { + event.result = items; + } + else + { + event.error = errors.firstObject; + } + } + else + { + // WebDAV root could not be generated (likely due to lack of username) + event.error = OCError(OCErrorInternal); + } + } + else + { + event.error = request.httpResponse.status.error; + } + } + } + + if (event != nil) + { + OCErrorAddDateFromResponse(event.error, request.httpResponse); + [request.eventTarget handleEvent:event sender:self]; + } +} + + +@end diff --git a/ownCloudSDK/Core/Search/OCCore+Search.h b/ownCloudSDK/Core/Search/OCCore+Search.h new file mode 100644 index 00000000..eae6a376 --- /dev/null +++ b/ownCloudSDK/Core/Search/OCCore+Search.h @@ -0,0 +1,30 @@ +// +// OCCore+Search.h +// ownCloudSDK +// +// Created by Felix Schwarz on 31.10.24. +// Copyright © 2024 ownCloud GmbH. All rights reserved. +// + +/* + * Copyright (C) 2024, ownCloud GmbH. + * + * This code is covered by the GNU Public License Version 3. + * + * For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ + * You should have received a copy of this license along with this program. If not, see . + * + */ + +#import "OCCore.h" +#import "OCSearchResult.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface OCCore (Search) + +- (nullable OCSearchResult *)searchFilesWithPattern:(NSString *)pattern limit:(nullable NSNumber *)limit options:(nullable NSDictionary *)options; + +@end + +NS_ASSUME_NONNULL_END diff --git a/ownCloudSDK/Core/Search/OCCore+Search.m b/ownCloudSDK/Core/Search/OCCore+Search.m new file mode 100644 index 00000000..4f341f3b --- /dev/null +++ b/ownCloudSDK/Core/Search/OCCore+Search.m @@ -0,0 +1,37 @@ +// +// OCCore+Search.m +// ownCloudSDK +// +// Created by Felix Schwarz on 31.10.24. +// Copyright © 2024 ownCloud GmbH. All rights reserved. +// + +/* + * Copyright (C) 2024, ownCloud GmbH. + * + * This code is covered by the GNU Public License Version 3. + * + * For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ + * You should have received a copy of this license along with this program. If not, see . + * + */ + +#import "OCCore+Search.h" +#import "OCConnection.h" + +@implementation OCCore (Search) + +- (nullable OCSearchResult *)searchFilesWithPattern:(NSString *)pattern limit:(nullable NSNumber *)limit options:(nullable NSDictionary *)options +{ + OCSearchResult *searchResult = [[OCSearchResult alloc] initWithKQLQuery:pattern core:self]; + + OCProgress *progress = [self.connection searchFilesWithPattern:pattern limit:limit options:options resultTarget:[OCEventTarget eventTargetWithEphermalEventHandlerBlock:^(OCEvent * _Nonnull event, id _Nonnull sender) { + [searchResult _handleResultEvent:event]; + } userInfo:nil ephermalUserInfo:nil]]; + + searchResult.progress = progress; + + return (searchResult); +} + +@end diff --git a/ownCloudSDK/Core/Search/OCSearchResult.h b/ownCloudSDK/Core/Search/OCSearchResult.h new file mode 100644 index 00000000..07ff537a --- /dev/null +++ b/ownCloudSDK/Core/Search/OCSearchResult.h @@ -0,0 +1,45 @@ +// +// OCSearchResult.h +// ownCloudSDK +// +// Created by Felix Schwarz on 31.10.24. +// Copyright © 2024 ownCloud GmbH. All rights reserved. +// + +/* + * Copyright (C) 2024, ownCloud GmbH. + * + * This code is covered by the GNU Public License Version 3. + * + * For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ + * You should have received a copy of this license along with this program. If not, see . + * + */ + +#import +#import "OCDataSource.h" +#import "OCTypes.h" +#import "OCProgress.h" +#import "OCEvent.h" +#import "OCCore.h" + +NS_ASSUME_NONNULL_BEGIN + +@interface OCSearchResult : NSObject + +@property(weak,nullable) OCCore *core; + +@property(strong) OCKQLQuery kqlQuery; +@property(strong) OCDataSource *results; + +@property(strong,nullable) OCProgress *progress; +- (void)cancel; + +- (instancetype)initWithKQLQuery:(OCKQLQuery)kqlQuery core:(OCCore *)core; + +// MARK: - Internals +- (void)_handleResultEvent:(OCEvent *)event; + +@end + +NS_ASSUME_NONNULL_END diff --git a/ownCloudSDK/Core/Search/OCSearchResult.m b/ownCloudSDK/Core/Search/OCSearchResult.m new file mode 100644 index 00000000..1a06c21f --- /dev/null +++ b/ownCloudSDK/Core/Search/OCSearchResult.m @@ -0,0 +1,104 @@ +// +// OCSearchResult.m +// ownCloudSDK +// +// Created by Felix Schwarz on 31.10.24. +// Copyright © 2024 ownCloud GmbH. All rights reserved. +// + +/* + * Copyright (C) 2024, ownCloud GmbH. + * + * This code is covered by the GNU Public License Version 3. + * + * For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ + * You should have received a copy of this license along with this program. If not, see . + * + */ + +#import "OCSearchResult.h" +#import "OCDataSourceArray.h" +#import "OCMacros.h" +#import "OCLocation.h" +#import "OCItem+OCDataItem.h" + +@implementation OCSearchResult +{ + NSMapTable *_itemTrackingByLocation; + NSMutableArray *_resultItems; +} + +- (instancetype)initWithKQLQuery:(OCKQLQuery)kqlQuery core:(OCCore *)core +{ + if ((self = [super init]) != nil) + { + _itemTrackingByLocation = [NSMapTable strongToStrongObjectsMapTable]; + _resultItems = [NSMutableArray new]; + + self.core = core; + self.kqlQuery = kqlQuery; + self.results = [[OCDataSourceArray alloc] initWithItems:nil]; + [((OCDataSourceArray *)self.results) setVersionedItems:@[]]; + } + + return (self); +} + +- (void)dealloc +{ + if (!self.progress.cancelled) + { + [self.progress cancel]; + } +} + +- (void)cancel +{ + [self.progress cancel]; +} + +- (void)_handleResultEvent:(OCEvent *)event +{ + NSArray *searchResults = OCTypedCast(event.result, NSArray); + OCDataSourceArray *searchResultDatasource = (OCDataSourceArray *)self.results; + + if (searchResults != nil) + { + for (OCItem *item in searchResults) + { + OCDriveID itemDriveID = item.driveID; + OCPath itemPath = item.path; + + if ((itemDriveID != nil) && (itemPath != nil)) + { + OCLocation *location = [[OCLocation alloc] initWithDriveID:itemDriveID path:itemPath]; + OCCoreItemTracking itemTracker = [self.core trackItemAtLocation:location trackingHandler:^(NSError * _Nullable error, OCItem * _Nullable item, BOOL isInitial) { + if (item != nil) + { + @synchronized(self) { + [self->_resultItems addObject:item]; + [searchResultDatasource setVersionedItems:self->_resultItems]; + + OCLogDebug(@"Result Items: %@", self->_resultItems); + } + } + + if ((error != nil) || (item != nil)) + { + // Stop tracking item when there's an error or the item has been located + @synchronized(self) { + [self->_itemTrackingByLocation removeObjectForKey:location]; + } + } + }]; + + // Keep tracking alive until it delivers a result + @synchronized(self) { + [_itemTrackingByLocation setObject:itemTracker forKey:location]; + } + } + } + } +} + +@end diff --git a/ownCloudSDK/Events/OCEvent.h b/ownCloudSDK/Events/OCEvent.h index 4c36273a..f60c4435 100644 --- a/ownCloudSDK/Events/OCEvent.h +++ b/ownCloudSDK/Events/OCEvent.h @@ -58,7 +58,10 @@ typedef NS_ENUM(NSUInteger, OCEventType) OCEventTypeFilterFiles, // Wakeup - OCEventTypeWakeupSyncRecord + OCEventTypeWakeupSyncRecord, + + // Search + OCEventTypeSearch } __attribute__((enum_extensibility(closed))); @class OCEvent; diff --git a/ownCloudSDK/HTTP/Request/OCHTTPDAVRequest.h b/ownCloudSDK/HTTP/Request/OCHTTPDAVRequest.h index 0e73cebf..b309aa34 100644 --- a/ownCloudSDK/HTTP/Request/OCHTTPDAVRequest.h +++ b/ownCloudSDK/HTTP/Request/OCHTTPDAVRequest.h @@ -51,7 +51,7 @@ typedef NS_ENUM(NSInteger, OCPropfindDepth) { - (OCXMLNode *)xmlRequestPropAttribute; -- (NSArray *)responseItemsForBasePath:(NSString *)basePath reuseUsersByID:(NSMutableDictionary *)usersByUserID driveID:(OCDriveID)driveID withErrors:(NSArray **)errors; +- (NSArray *)responseItemsForBasePath:(NSString *)basePath drives:(NSArray *)drives reuseUsersByID:(NSMutableDictionary *)usersByUserID driveID:(OCDriveID)driveID withErrors:(NSArray **)errors; - (NSDictionary *)multistatusResponsesForBasePath:(NSString *)basePath; @end diff --git a/ownCloudSDK/HTTP/Request/OCHTTPDAVRequest.m b/ownCloudSDK/HTTP/Request/OCHTTPDAVRequest.m index c4c25e81..ac787e2f 100644 --- a/ownCloudSDK/HTTP/Request/OCHTTPDAVRequest.m +++ b/ownCloudSDK/HTTP/Request/OCHTTPDAVRequest.m @@ -91,7 +91,7 @@ - (NSData *)bodyData return (_bodyData); } -- (NSArray *)responseItemsForBasePath:(NSString *)basePath reuseUsersByID:(NSMutableDictionary *)usersByUserID driveID:(nullable OCDriveID)driveID withErrors:(NSArray **)errors +- (NSArray *)responseItemsForBasePath:(NSString *)basePath drives:(NSArray *)drives reuseUsersByID:(NSMutableDictionary *)usersByUserID driveID:(nullable OCDriveID)driveID withErrors:(NSArray **)errors { NSArray *responseItems = nil; NSData *responseData = self.httpResponse.bodyData; @@ -111,10 +111,27 @@ - (NSData *)bodyData { if (basePath != nil) { - parser.options = [NSMutableDictionary dictionaryWithObjectsAndKeys: - basePath, @"basePath", - usersByUserID, @"usersByUserID", - nil]; + NSMutableDictionary *options = [NSMutableDictionary new]; + NSMutableDictionary *drivePrefixMap = nil; + + if (drives != nil) + { + drivePrefixMap = [NSMutableDictionary new]; + for (OCDrive *drive in drives) + { + if (drive.specialType != nil) + { + NSString *drivePrefixPath = [[NSString alloc] initWithFormat:@"/%@/", drive.identifier]; + drivePrefixMap[drivePrefixPath] = drive.identifier; + } + } + } + + options[@"basePath"] = basePath; + options[@"usersByUserID"] = usersByUserID; + options[@"drivePrefixMap"] = drivePrefixMap; + + parser.options = options; } [parser addObjectCreationClasses:@[ [OCItem class], [NSError class] ]]; diff --git a/ownCloudSDK/Item/OCItem+OCXMLObjectCreation.m b/ownCloudSDK/Item/OCItem+OCXMLObjectCreation.m index 86cad821..0a08eb28 100644 --- a/ownCloudSDK/Item/OCItem+OCXMLObjectCreation.m +++ b/ownCloudSDK/Item/OCItem+OCXMLObjectCreation.m @@ -20,6 +20,7 @@ #import "OCItem+OCXMLObjectCreation.h" #import "OCHTTPStatus.h" #import "OCChecksum.h" +#import "OCDrive.h" @implementation OCItem (OCXMLObjectCreation) @@ -79,6 +80,13 @@ + (OCXMLParserNodeKeyValueEnumeratorDictionary)_sharedKeyValueEnumeratorDict } } copy], + @"oc:fileid" : [^(OCItem *item, NSString *key, id value) { // Returned in "oc:search-files" REPORT responses only (2024-10-31), identical to "oc:id" + if ([value isKindOfClass:[NSString class]]) + { + item.fileID = value; + } + } copy], + @"oc:permissions" : [^(OCItem *item, NSString *key, id value) { if ([value isKindOfClass:[NSString class]]) { @@ -219,6 +227,13 @@ + (OCXMLParserNodeKeyValueEnumeratorDictionary)_sharedKeyValueEnumeratorDict } } copy], + @"oc:score": [^(OCItem *item, NSString *key, id value) { + if ([value isKindOfClass:NSString.class]) + { + item.searchScore = @(((NSString *)value).doubleValue); + } + } copy], + @"d:quota-available-bytes" : [^(OCItem *item, NSString *key, id value) { if ([value isKindOfClass:[NSString class]]) { @@ -258,6 +273,7 @@ + (instancetype)instanceFromNode:(OCXMLParserNode *)responseNode xmlParser:(OCXM if ((item = [OCItem new]) != nil) { OCPath basePath; + NSDictionary *drivePrefixMap; // Remove base path (if applicable) if ((basePath = xmlParser.options[@"basePath"]) != nil) @@ -268,6 +284,20 @@ + (instancetype)instanceFromNode:(OCXMLParserNode *)responseNode xmlParser:(OCXM } } + if ((drivePrefixMap = xmlParser.options[@"drivePrefixMap"]) != nil) + { + // Remove drive base path (for PROPFINDs returning items from different drives) + // and pre-assign driveID (in case it's missing in the response) + for (NSString *drivePrefixPath in drivePrefixMap) + { + if ([itemPath hasPrefix:drivePrefixPath]) + { + itemPath = [itemPath substringFromIndex:drivePrefixPath.length-1]; + item.driveID = drivePrefixMap[drivePrefixPath]; + } + } + } + item.path = itemPath; // Extract Properties diff --git a/ownCloudSDK/Item/OCItem.h b/ownCloudSDK/Item/OCItem.h index 90109e17..79b158fe 100644 --- a/ownCloudSDK/Item/OCItem.h +++ b/ownCloudSDK/Item/OCItem.h @@ -188,6 +188,8 @@ NS_ASSUME_NONNULL_BEGIN @property(nullable,strong) NSNumber *quotaBytesRemaining; //!< Remaining space (if a quota is set) @property(nullable,strong) NSNumber *quotaBytesUsed; //!< Used space (if a quota is set) +@property(nullable,strong) NSNumber *searchScore; //!< Score returned by server-side search (for server-side searches only) (dynamic/ephermal) + @property(readonly,nonatomic) BOOL compactingAllowed; //!< YES if the local copy may be removed during compacting. @property(assign) OCItemVersionSeed versionSeed; //!< Version seed that changes whenever the item is updated diff --git a/ownCloudSDK/OCTypes.h b/ownCloudSDK/OCTypes.h index 3a7248b5..3832c78a 100644 --- a/ownCloudSDK/OCTypes.h +++ b/ownCloudSDK/OCTypes.h @@ -69,4 +69,6 @@ typedef NSMutableDictionary>* OCMutableCodableDict; typedef NSString* OCActionTrackingID; //!< Identifier used to track a triggered action's progress / state +typedef NSString *OCKQLQuery; //!< KQL query string + #endif /* OCTypes_h */ diff --git a/ownCloudSDK/ownCloudSDK.h b/ownCloudSDK/ownCloudSDK.h index 45c58c86..88c3fdbe 100644 --- a/ownCloudSDK/ownCloudSDK.h +++ b/ownCloudSDK/ownCloudSDK.h @@ -76,6 +76,8 @@ FOUNDATION_EXPORT const unsigned char ownCloudSDKVersionString[]; #import #import #import +#import +#import #import #import #import From b620e559781087c50acb423413b8b2b633eca85f Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Sat, 23 Nov 2024 21:12:29 +0100 Subject: [PATCH 2/7] - OCQueryCondition+KQLBuilder: builds a KQL string from a OCQueryCondition tree - OCItem+OCTypeAlias: add "application/x-bzip" and "application/x-tgz" to typealias "package/x-generic" to make it equivalent to the server's "archive" search criteria --- ownCloudSDK.xcodeproj/project.pbxproj | 8 + .../contents.xcworkspacedata | 2 +- ownCloudSDK/Item/OCItem+OCTypeAlias.m | 2 + .../Condition/OCQueryCondition+KQLBuilder.h | 36 + .../Condition/OCQueryCondition+KQLBuilder.m | 276 + ownCloudSDK/Resources/Localizable.xcstrings | 49337 ++++++++-------- ownCloudSDK/ownCloudSDK.h | 1 + 7 files changed, 24994 insertions(+), 24668 deletions(-) create mode 100644 ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.h create mode 100644 ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.m diff --git a/ownCloudSDK.xcodeproj/project.pbxproj b/ownCloudSDK.xcodeproj/project.pbxproj index 3b5cac1d..0b5134f8 100644 --- a/ownCloudSDK.xcodeproj/project.pbxproj +++ b/ownCloudSDK.xcodeproj/project.pbxproj @@ -884,6 +884,8 @@ DCF00BF527E28A77001F2AFC /* OCDataSourceSubscription+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF00BF327E28A77001F2AFC /* OCDataSourceSubscription+Internal.h */; }; DCF00BF627E28A77001F2AFC /* OCDataSourceSubscription+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = DCF00BF427E28A77001F2AFC /* OCDataSourceSubscription+Internal.m */; }; DCF00C1927E698A4001F2AFC /* DataSourceTests.m in Sources */ = {isa = PBXBuildFile; fileRef = DCF00C1827E698A4001F2AFC /* DataSourceTests.m */; }; + DCF06B662CED34AB00B95D79 /* OCQueryCondition+KQLBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF06B642CED34AB00B95D79 /* OCQueryCondition+KQLBuilder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DCF06B672CED34AB00B95D79 /* OCQueryCondition+KQLBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = DCF06B652CED34AB00B95D79 /* OCQueryCondition+KQLBuilder.m */; }; DCF072E42798630900E0B01D /* OCResourceTextPlaceholder.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF072E22798630900E0B01D /* OCResourceTextPlaceholder.h */; settings = {ATTRIBUTES = (Public, ); }; }; DCF072E52798630900E0B01D /* OCResourceTextPlaceholder.m in Sources */ = {isa = PBXBuildFile; fileRef = DCF072E32798630900E0B01D /* OCResourceTextPlaceholder.m */; }; DCF072E82798652500E0B01D /* OCResourceSourceAvatarPlaceholders.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF072E62798652500E0B01D /* OCResourceSourceAvatarPlaceholders.h */; settings = {ATTRIBUTES = (Public, ); }; }; @@ -1929,6 +1931,8 @@ DCF00BF327E28A77001F2AFC /* OCDataSourceSubscription+Internal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "OCDataSourceSubscription+Internal.h"; sourceTree = ""; }; DCF00BF427E28A77001F2AFC /* OCDataSourceSubscription+Internal.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "OCDataSourceSubscription+Internal.m"; sourceTree = ""; }; DCF00C1827E698A4001F2AFC /* DataSourceTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DataSourceTests.m; sourceTree = ""; }; + DCF06B642CED34AB00B95D79 /* OCQueryCondition+KQLBuilder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "OCQueryCondition+KQLBuilder.h"; sourceTree = ""; }; + DCF06B652CED34AB00B95D79 /* OCQueryCondition+KQLBuilder.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "OCQueryCondition+KQLBuilder.m"; sourceTree = ""; }; DCF072E22798630900E0B01D /* OCResourceTextPlaceholder.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OCResourceTextPlaceholder.h; sourceTree = ""; }; DCF072E32798630900E0B01D /* OCResourceTextPlaceholder.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OCResourceTextPlaceholder.m; sourceTree = ""; }; DCF072E62798652500E0B01D /* OCResourceSourceAvatarPlaceholders.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OCResourceSourceAvatarPlaceholders.h; sourceTree = ""; }; @@ -2599,6 +2603,8 @@ DC359690223FA7CC00C4D6E6 /* OCQueryCondition.h */, DC35969522403E5B00C4D6E6 /* OCQueryCondition+SQLBuilder.m */, DC35969422403E5B00C4D6E6 /* OCQueryCondition+SQLBuilder.h */, + DCF06B652CED34AB00B95D79 /* OCQueryCondition+KQLBuilder.m */, + DCF06B642CED34AB00B95D79 /* OCQueryCondition+KQLBuilder.h */, DC3596992240EC0A00C4D6E6 /* OCQueryCondition+Item.m */, DC3596982240EC0A00C4D6E6 /* OCQueryCondition+Item.h */, ); @@ -4814,6 +4820,7 @@ DCAEB06921FA617D0067E147 /* OCActivity.h in Headers */, DCFFF57E20D3A51C0096D2D3 /* OCSyncContext.h in Headers */, DC0283632090A3E8005B6334 /* OCItemThumbnail.h in Headers */, + DCF06B662CED34AB00B95D79 /* OCQueryCondition+KQLBuilder.h in Headers */, DCADC04D2072D54200DB8E83 /* OCSQLiteTableSchema.h in Headers */, DC73F3BF254BFE9900CE5FA9 /* NSArray+ObjCRuntime.h in Headers */, DCC4F3FF27D75BF700ABF4C9 /* OCDataConverterPipeline.h in Headers */, @@ -5404,6 +5411,7 @@ DC0BE5B228F80BBA00CE2101 /* OCShareRole.m in Sources */, DCC26FC02B7397D400904000 /* OCPasswordPolicyRule+StandardRules.m in Sources */, DCC6567520CA695600110A97 /* OCCoreManager.m in Sources */, + DCF06B672CED34AB00B95D79 /* OCQueryCondition+KQLBuilder.m in Sources */, DC2F66A12603FCF6001BFDB6 /* OCCancelAction.m in Sources */, DC6DEEBA24C5C82400E3772E /* OCHTTPPolicyBookmark.m in Sources */, DCEE0B7025E697AF006534B5 /* OCCoreManager+ItemResolution.m in Sources */, diff --git a/ownCloudSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ownCloudSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata index a1c8c07e..919434a6 100644 --- a/ownCloudSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ b/ownCloudSDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -2,6 +2,6 @@ + location = "self:"> diff --git a/ownCloudSDK/Item/OCItem+OCTypeAlias.m b/ownCloudSDK/Item/OCItem+OCTypeAlias.m index 5ee4db18..ae8f8332 100644 --- a/ownCloudSDK/Item/OCItem+OCTypeAlias.m +++ b/ownCloudSDK/Item/OCItem+OCTypeAlias.m @@ -82,6 +82,7 @@ @implementation OCItem (MIMETypeAliases) @"application/vnd.visio": @"x-office/document", @"application/vnd.wordperfect": @"x-office/document", @"application/x-7z-compressed": @"package/x-generic", + @"application/x-bzip": @"package/x-generic", @"application/x-bzip2": @"package/x-generic", @"application/x-cbr": @"text", @"application/x-compressed": @"package/x-generic", @@ -95,6 +96,7 @@ @implementation OCItem (MIMETypeAliases) @"application/x-php": @"text/code", @"application/x-rar-compressed": @"package/x-generic", @"application/x-tar": @"package/x-generic", + @"application/x-tgz": @"package/x-generic", @"application/x-tex": @"text", @"application/xml": @"text/html", @"application/yaml": @"text/code", diff --git a/ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.h b/ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.h new file mode 100644 index 00000000..2323f739 --- /dev/null +++ b/ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.h @@ -0,0 +1,36 @@ +// +// OCQueryCondition+KQLBuilder.h +// ownCloudSDK +// +// Created by Felix Schwarz on 19.11.24. +// Copyright © 2024 ownCloud GmbH. All rights reserved. +// + +/* + * Copyright (C) 2024, ownCloud GmbH. + * + * This code is covered by the GNU Public License Version 3. + * + * For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ + * You should have received a copy of this license along with this program. If not, see . + * + */ + +#import "OCQueryCondition.h" + +NS_ASSUME_NONNULL_BEGIN + +typedef NSString* OCKQLString; + +typedef NS_OPTIONS(NSInteger, OCKQLSearchedContent) { + OCKQLSearchedContentItemName = (1L << 0L), + OCKQLSearchedContentContents = (1L << 1L) +}; + +@interface OCQueryCondition (KQLBuilder) + +- (OCKQLString)kqlStringWithTypeAliasToKQLTypeMap:(NSDictionary *)typeAliasToKQLTypeMap targetContent:(OCKQLSearchedContent)targetContent; + +@end + +NS_ASSUME_NONNULL_END diff --git a/ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.m b/ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.m new file mode 100644 index 00000000..a32cf944 --- /dev/null +++ b/ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.m @@ -0,0 +1,276 @@ +// +// OCQueryCondition+KQLBuilder.m +// ownCloudSDK +// +// Created by Felix Schwarz on 19.11.24. +// Copyright © 2024 ownCloud GmbH. All rights reserved. +// + +/* + * Copyright (C) 2024, ownCloud GmbH. + * + * This code is covered by the GNU Public License Version 3. + * + * For distribution utilizing Apple mechanisms please see https://owncloud.org/contribute/iOS-license-exception/ + * You should have received a copy of this license along with this program. If not, see . + * + */ + +#import "OCQueryCondition+KQLBuilder.h" +#import "OCLogger.h" +#import "OCMacros.h" +#import "NSString+OCSQLTools.h" + +@interface NSString (KQLTools) +@end + +@implementation NSString (KQLTools) + +- (NSString *)stringByKQLEscaping +{ + return ([NSString stringWithFormat:@"\"%@\"", [self stringByReplacingOccurrencesOfString:@"\"" withString:@"\\\""]]); +} + +@end + +@interface NSDate (KQLTools) +@end + +@implementation NSDate (KQLTools) + +- (NSString *)kqlRFC3339DateString +{ + NSDateFormatter *rfc3339DateFormatter; + NSString *str; + + rfc3339DateFormatter = [[NSDateFormatter alloc] init]; + rfc3339DateFormatter.locale = [[NSLocale alloc] initWithLocaleIdentifier:@"en_US_POSIX"]; + rfc3339DateFormatter.timeZone = [NSTimeZone timeZoneForSecondsFromGMT:0]; + rfc3339DateFormatter.dateFormat = @"yyyy'-'MM'-'dd'T'HH':'mm':'ssZZZ"; + + str = [rfc3339DateFormatter stringFromDate:self]; + + /* + Unfortunately, NSDateFormatter produces "0000" instead of "00:00" for time zones, mismatching what is otherwise widely used + and failing conversion by golang's time.Parse(time.RFC3339, ..). We therefore have to account for this for as long as it is + that way and insert ":" in the timezone part *if needed* ("2024-11-17T23:00:00+0000" => "2024-11-17T23:00:00+00:00") + to be compatible with golang's time.RFC3339 + (as used in https://github.com/owncloud/ocis/blob/cff364c998355b1295793e9244e5efdfea064536/services/search/pkg/engine/bleve.go#L225) + + This can be verified with this golang snippet: + package main + + import ( + "fmt" + "time" + ) + + func main() { + tOk, err := time.Parse(time.RFC3339, "2024-11-17T23:00:00+01:00") + fmt.Printf("parsed as: %v (error: %v)\n", tOk, err) + + tFail, err := time.Parse(time.RFC3339, "2024-11-17T23:00:00+0100") + fmt.Printf("parsed as: %v (error: %v)\n", tFail, err) + } + + produces: + parsed as: 2024-11-17 23:00:00 +0100 +0100 (error: ) + parsed as: 0001-01-01 00:00:00 +0000 UTC (error: parsing time "2024-11-17T23:00:00+0100" as "2006-01-02T15:04:05Z07:00": cannot parse "+0100" as "Z07:00") + */ + NSRange timezoneDelimiterPosition = [str rangeOfString:@"+" options:NSBackwardsSearch]; + if (timezoneDelimiterPosition.location == (str.length-5)) { // No ":" separating the timezone hours and minutes => add it + str = [NSString stringWithFormat:@"%@:%@", [str substringToIndex:str.length-2], [str substringFromIndex:str.length-2]]; + } + + return (str); +} + +@end + +@implementation OCQueryCondition (KQLBuilder) + +- (OCKQLString)kqlStringWithTypeAliasToKQLTypeMap:(NSDictionary *)typeAliasToKQLTypeMap targetContent:(OCKQLSearchedContent)targetContent +{ + // Mappings as per as per https://github.com/owncloud/ocis/blob/21893235442194f790f8c369f3b695eba79a43b9/services/search/pkg/query/bleve/compiler.go#L13 + NSString *kqlString = [self _kqlStringWithColumnNameMap:@{ + OCItemPropertyNameName: @"name", + OCItemPropertyNameLastModified: @"mtime", + OCItemPropertyNameLastUsed: @"mtime", // not an exact match, but closest possible + OCItemPropertyNameMIMEType: @"mediatype", + OCItemPropertyNameTypeAlias: @"mediatype", // conversion from local typeAlias to server-side alias taking place via typeAliasToKQLTypeMap + OCItemPropertyNameType: @"mediatype", // conversion from OCItemType taking place in -kqlStringWithColumnNameMap:typeAliasToKQLTypeMap: + OCItemPropertyNameSize: @"size", + } typeAliasToKQLTypeMap:typeAliasToKQLTypeMap targetContent:targetContent]; + + return (kqlString); +} + +- (NSString *)_convert:(id)obj smartQuote:(BOOL)smartQuote // smartQuote -> only quote types where it's possible and necessary, f.ex. don't quote numbers +{ + NSString *str = nil; + + if ([obj isKindOfClass:NSString.class]) { + str = smartQuote ? [(NSString *)obj stringByKQLEscaping] : obj; + } + + if ([obj isKindOfClass:NSNumber.class]) { + str = ((NSNumber *)obj).stringValue; + } + + if ([obj isKindOfClass:NSDate.class]) { + str = ((NSDate *)obj).kqlRFC3339DateString; + } + + return (str); +} + +- (NSString *)_convertedValue +{ + return [self _convert:self.value smartQuote:YES]; +} + +- (OCKQLString)_kqlStringWithColumnNameMap:(NSDictionary *)propertyColumnNameMap typeAliasToKQLTypeMap:(NSDictionary *)typeAliasToKQLTypeMap targetContent:(OCKQLSearchedContent)targetContent +{ + // Example "(name:"*ex*" OR content:"ex") AND mtime:last 30 days AND mediatype:("pdf" OR "presentation")" + NSString *query = nil; + NSString *kqlProperty = propertyColumnNameMap[self.property]; + NSString *unquotedValue = nil; + NSString *smartQuotedValue = nil; + + if ([self.property isEqual:OCItemPropertyNameTypeAlias]) { + // Convert type aliases to KQL types + unquotedValue = typeAliasToKQLTypeMap[self.value]; + } + + if ([self.property isEqual:OCItemPropertyNameType]) { + // Convert type to mime type + if ([self.value isEqual:@(OCItemTypeFile)]) { + unquotedValue = @"file"; + } + if ([self.value isEqual:@(OCItemTypeCollection)]) { + unquotedValue = @"folder"; + } + } + + if (unquotedValue == nil) { + // No pre-converted value -> use standard conversion + unquotedValue = [self _convert:self.value smartQuote:NO]; + smartQuotedValue = [self _convert:self.value smartQuote:YES]; + } else if (smartQuotedValue == nil) { + // No pre-quoted value -> use standard escaping + smartQuotedValue = [unquotedValue stringByKQLEscaping]; + } + + switch (self.operator) + { + case OCQueryConditionOperatorPropertyGreaterThanValue: + query = [[NSString alloc] initWithFormat:@"(%@>%@)", kqlProperty, smartQuotedValue]; + break; + + case OCQueryConditionOperatorPropertyLessThanValue: + query = [[NSString alloc] initWithFormat:@"(%@<%@)", kqlProperty, smartQuotedValue]; + break; + + case OCQueryConditionOperatorPropertyEqualToValue: + query = [[NSString alloc] initWithFormat:@"(%@:%@)", kqlProperty, smartQuotedValue]; + break; + + case OCQueryConditionOperatorPropertyNotEqualToValue: + query = [[NSString alloc] initWithFormat:@"(%@<>%@)", kqlProperty, smartQuotedValue]; + break; + + case OCQueryConditionOperatorPropertyHasPrefix: + query = [[NSString alloc] initWithFormat:@"(%@:%@)", kqlProperty, [[unquotedValue stringByAppendingString:@"*"] stringByKQLEscaping]]; + break; + + case OCQueryConditionOperatorPropertyHasSuffix: + query = [[NSString alloc] initWithFormat:@"(%@:%@)", kqlProperty, [[@"*" stringByAppendingString:unquotedValue] stringByKQLEscaping]]; + break; + + case OCQueryConditionOperatorPropertyContains: { + NSString *kqlValue = [[NSString stringWithFormat:@"*%@*", unquotedValue] stringByKQLEscaping]; + if ([self.property isEqual:OCItemPropertyNameName]) { + if (targetContent & OCKQLSearchedContentItemName) { + query = [[NSString alloc] initWithFormat:@"(name:%@)", kqlValue]; + } + + if (targetContent & OCKQLSearchedContentContents) { + NSString *contentQuery = [[NSString alloc] initWithFormat:@"(content:%@)", kqlValue]; + + if (query == nil) { + query = contentQuery; + } else { + query = [NSString stringWithFormat:@"(%@ OR %@)", query, contentQuery]; + } + } + + break; + } + query = [[NSString alloc] initWithFormat:@"(%@:%@)", kqlProperty, kqlValue]; + } + break; + + case OCQueryConditionOperatorAnd: + case OCQueryConditionOperatorOr: { + NSArray *conditions; + + if ((conditions = OCTypedCast(self.value, NSArray)) != nil) + { + NSMutableString *queryString = [NSMutableString new]; + NSString *operatorString = (self.operator == OCQueryConditionOperatorAnd) ? @"AND" : @"OR"; + + if (conditions.count == 1) + { + // Simplify case where there is only one condition + query = [conditions.firstObject _kqlStringWithColumnNameMap:propertyColumnNameMap typeAliasToKQLTypeMap:typeAliasToKQLTypeMap targetContent:targetContent]; + } + else + { + for (OCQueryCondition *condition in conditions) + { + NSString *conditionQueryString = nil; + + if ((conditionQueryString = [condition _kqlStringWithColumnNameMap:propertyColumnNameMap typeAliasToKQLTypeMap:typeAliasToKQLTypeMap targetContent:targetContent]) != nil) + { + if (queryString.length > 0) + { + [queryString appendFormat:@" %@ %@", operatorString, conditionQueryString]; + } + else + { + [queryString appendString:conditionQueryString]; + } + } + } + + query = [NSString stringWithFormat:@"(%@)", queryString]; + } + } + else + { + OCLogError(@"AND/OR condition value is not an array of conditions"); + } + } + break; + + case OCQueryConditionOperatorNegate: { + OCQueryCondition *condition; + + if ((condition = OCTypedCast(self.value, OCQueryCondition)) != nil) + { + query = [NSString stringWithFormat:@"(NOT %@)", [condition _kqlStringWithColumnNameMap:propertyColumnNameMap typeAliasToKQLTypeMap:typeAliasToKQLTypeMap targetContent:targetContent]]; + } + else + { + OCLogError(@"Negate condition value is not a condition"); + } + } + break; + } + + // self.sortBy and self.maxResultCount are ignored for now + + return (query); +} + +@end diff --git a/ownCloudSDK/Resources/Localizable.xcstrings b/ownCloudSDK/Resources/Localizable.xcstrings index 7fedbaab..78dc2be1 100644 --- a/ownCloudSDK/Resources/Localizable.xcstrings +++ b/ownCloudSDK/Resources/Localizable.xcstrings @@ -1,36523 +1,36526 @@ { - "sourceLanguage": "en", - "strings": { - "\"%@\" has been modified locally": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" has been modified locally" + "sourceLanguage" : "en", + "strings" : { + "\"%@\" has been modified locally" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" has been modified locally" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" wurde lokal geändert" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" wurde lokal geändert" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" has been modified locally" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" has been modified locally" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" has been modified locally" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" has been modified locally" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" has been modified locally" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" has been modified locally" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" ha sido modificada localmente" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" ha sido modificada localmente" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" has been modified locally" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" has been modified locally" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "\"%@\"이(가) 로컬로 수정되었습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\"이(가) 로컬로 수정되었습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" has been modified locally" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" has been modified locally" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" has been modified locally" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" has been modified locally" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" has been modified locally" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" has been modified locally" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" foi modificado localmente " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" foi modificado localmente " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" foi modificado localmente " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" has been modified locally" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" has been modified locally" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" foi modificado localmente " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" has been modified locally" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" has been modified locally" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" është ndryshuar lokalisht" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" është ndryshuar lokalisht" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" ได้รับการแก้ไขแล้วในเครื่อง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" ได้รับการแก้ไขแล้วในเครื่อง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" ได้รับการแก้ไขแล้วในเครื่อง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" ได้รับการแก้ไขแล้วในเครื่อง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" yerel olarak değiştirildi" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" yerel olarak değiştirildi" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" has been modified locally" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" has been modified locally" } } } }, - "\"%@\" metadata for %@ couldn't be updated": { - "comment": "Update", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata for %@ couldn't be updated" + "\"%@\" metadata for %@ couldn't be updated" : { + "comment" : "Update", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata for %@ couldn't be updated" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" Metadaten für %@ konnten nicht aktualisiert werden" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" Metadaten für %@ konnten nicht aktualisiert werden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata for %@ couldn't be updated" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata for %@ couldn't be updated" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata for %@ couldn't be updated" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata for %@ couldn't be updated" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata for %@ couldn't be updated" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata for %@ couldn't be updated" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Metadatos \"%@\" para %@no pudo ser actualizado" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Metadatos \"%@\" para %@no pudo ser actualizado" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" métadonnées pour %@ n'ont pas pu être mises à jour" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" métadonnées pour %@ n'ont pas pu être mises à jour" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@에 대한 \"%@\" 메타데이터를 업데이트할 수 없습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@에 대한 \"%@\" 메타데이터를 업데이트할 수 없습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata for %@ couldn't be updated" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata for %@ couldn't be updated" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata for %@ couldn't be updated" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata for %@ couldn't be updated" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata for %@ couldn't be updated" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata for %@ couldn't be updated" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata for %@ couldn't be updated" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata for %@ couldn't be updated" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata for %@ couldn't be updated" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata for %@ couldn't be updated" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadados para %@ não puderam ser atualizados" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadados para %@ não puderam ser atualizados" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadados para %@ não puderam ser atualizados" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata for %@ couldn't be updated" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata for %@ couldn't be updated" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadados para %@ não puderam ser atualizados" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Не удалсоь обновить метаданные \"%@\" для %@" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалсоь обновить метаданные \"%@\" для %@" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Tejtëdhënat \"%@\" për %@ s’u përditësuan dot" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tejtëdhënat \"%@\" për %@ s’u përditësuan dot" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata สำหรับ %@ ไม่สามารถอัปเดตได้" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata สำหรับ %@ ไม่สามารถอัปเดตได้" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata สำหรับ %@ ไม่สามารถอัปเดตได้" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata สำหรับ %@ ไม่สามารถอัปเดตได้" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@dosyasının \"%@\" üstverisi güncellenemedi" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@dosyasının \"%@\" üstverisi güncellenemedi" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" metadata for %@ couldn't be updated" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" metadata for %@ couldn't be updated" } } } }, - "\"%@\" was modified locally before the download completed.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" was modified locally before the download completed." + "\"%@\" was modified locally before the download completed." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" was modified locally before the download completed." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" wurde lokal geändert, bevor der Download abgeschlossen war." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" wurde lokal geändert, bevor der Download abgeschlossen war." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" was modified locally before the download completed." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" was modified locally before the download completed." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" was modified locally before the download completed." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" was modified locally before the download completed." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" was modified locally before the download completed." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" was modified locally before the download completed." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" se modificó localmente antes de que se completara la descarga." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" se modificó localmente antes de que se completara la descarga." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" was modified locally before the download completed." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" was modified locally before the download completed." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "다운로드가 완료되기 전에 \"%@\"이(가) 로컬에서 수정되었습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다운로드가 완료되기 전에 \"%@\"이(가) 로컬에서 수정되었습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" was modified locally before the download completed." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" was modified locally before the download completed." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" was modified locally before the download completed." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" was modified locally before the download completed." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" was modified locally before the download completed." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" was modified locally before the download completed." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" foi modificado localmente antes da conclusão de baixar o arquivo. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" foi modificado localmente antes da conclusão de baixar o arquivo. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" foi modificado localmente antes da conclusão de baixar o arquivo. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" was modified locally before the download completed." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" was modified locally before the download completed." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" foi modificado localmente antes da conclusão de baixar o arquivo. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" was modified locally before the download completed." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" was modified locally before the download completed." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" qe ndryshuar lokalisht përpara se të plotësohej shkarkimi." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" qe ndryshuar lokalisht përpara se të plotësohej shkarkimi." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" ได้ถูกแก้ไขในเครื่องก่อนที่การดาวน์โหลดจะเสร็จสมบูรณ์" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" ได้ถูกแก้ไขในเครื่องก่อนที่การดาวน์โหลดจะเสร็จสมบูรณ์" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" ได้ถูกแก้ไขในเครื่องก่อนที่การดาวน์โหลดจะเสร็จสมบูรณ์" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" ได้ถูกแก้ไขในเครื่องก่อนที่การดาวน์โหลดจะเสร็จสมบูรณ์" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İndirme tamamlanmadan önce \"%@\" yerel olarak değiştirildi." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İndirme tamamlanmadan önce \"%@\" yerel olarak değiştirildi." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "\"%@\" was modified locally before the download completed." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "\"%@\" was modified locally before the download completed." } } } }, - "%@ (error %ld)": { - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld)" + "{{itemName}} can't be copied into itself." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ (Fehler %ld)" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} kann nicht in sich selbst kopiert werden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld)" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld)" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld)" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld)" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%@ (erreur% ld)" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@ (오류 %ld)" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld)" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld)" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld)" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld)" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} não pode ser copiado para si mesmo." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld)" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "%@ (erro %ld)" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} não pode ser copiado para si mesmo." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%@ (erro %ld)" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld)" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} s’mund të kopjohet te vetja." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%@ (ошибка %ld)" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%@ (gabim %ld)" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "%@ (ข้อผิดพลาด %ld)" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "%@ (ข้อผิดพลาด %ld)" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be copied into itself." + } + } + } + }, + "{{itemName}} can't be moved into itself." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} kann nicht in sich selbst verschoben werden." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} não pode ser movido para si mesmo." + } + }, + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} não pode ser movido para si mesmo." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} s’mund të kalohet te vetvetja." + } + }, + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} can't be moved into itself." + } + } + } + }, + "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." : { + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} wird auf dem Server verarbeitet und kann bis zum Ende der Verarbeitung nicht heruntergeladen werden." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@ (hata %ld)" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "%@ (错误 %ld)" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} é atualmente processado no servidor e não pode ser baixado até que termine o processamento." + } + }, + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} é atualmente processado no servidor e não pode ser baixado até que termine o processamento." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} aktualisht po përpunohet te shërbyesi dhe s’mund të shkarkohet, deri sa të përfundojë procesi." + } + }, + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + } + } + } + }, + "%@ (error %ld, %@)" : { + "comment" : "OC Errors", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld, %@)" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (Fehler %ld, %@)" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld, %@)" + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld, %@)" + } + }, + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld, %@)" + } + }, + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld, %@)" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld, %@)" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (오류 %ld, %@)" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld, %@)" + } + }, + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld, %@)" + } + }, + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld, %@)" + } + }, + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld, %@)" + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld, %@)" + } + }, + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (erro %ld, %@)" + } + }, + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld, %@)" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (erro %ld, %@)" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (ошибка %ld, %@)" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (gabim %ld, %@)" + } + }, + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@(ข้อผิดพลาด %ld, %@)" + } + }, + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@(ข้อผิดพลาด %ld, %@)" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (hata %ld, %@)" + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (错误 %ld, %@)" } } } }, - "%@ (error %ld, %@)": { - "comment": "OC Errors", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld, %@)" + "%@ (error %ld)" : { + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld)" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ (Fehler %ld, %@)" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (Fehler %ld)" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld, %@)" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld)" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld, %@)" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld)" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld, %@)" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld)" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld, %@)" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld)" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld, %@)" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (erreur% ld)" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@ (오류 %ld, %@)" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (오류 %ld)" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld, %@)" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld)" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld, %@)" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld)" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld, %@)" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld)" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld, %@)" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld)" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld, %@)" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld)" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "%@ (erro %ld, %@)" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (erro %ld)" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%@ (erro %ld, %@)" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (error %ld)" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%@ (error %ld, %@)" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (erro %ld)" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%@ (ошибка %ld, %@)" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (ошибка %ld)" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%@ (gabim %ld, %@)" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (gabim %ld)" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "%@(ข้อผิดพลาด %ld, %@)" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (ข้อผิดพลาด %ld)" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "%@(ข้อผิดพลาด %ld, %@)" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (ข้อผิดพลาด %ld)" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@ (hata %ld, %@)" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (hata %ld)" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "%@ (错误 %ld, %@)" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (错误 %ld)" } } } }, - "%@ already exists": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%@ already exists" + "%@ already exists" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ already exists" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ existiert bereits" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ existiert bereits" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ already exists" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ already exists" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "%@ already exists" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ already exists" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%@ already exists" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ already exists" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%@ ya existe" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ ya existe" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%@ existe déjà" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ existe déjà" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@이(가) 이미 존재합니다" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@이(가) 이미 존재합니다" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%@ already exists" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ already exists" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ already exists" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ already exists" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ already exists" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ already exists" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ already exists" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ already exists" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ already exists" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ already exists" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "%@ já existe" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ já existe" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%@ já existe" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ already exists" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%@ already exists" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ já existe" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%@ уже существует" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ уже существует" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%@ ekziston tashmë" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ ekziston tashmë" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "%@มีอยู่แล้ว " + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@มีอยู่แล้ว " } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "%@มีอยู่แล้ว " + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@มีอยู่แล้ว " } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@ zaten mevcut" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ zaten mevcut" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "%@ 已存在" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ 已存在" } } } }, - "%@ can't be copied to %@.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be copied to %@." + "%@ can't be copied to %@." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be copied to %@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ kann nicht nach %@ kopiert werden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ kann nicht nach %@ kopiert werden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be copied to %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be copied to %@." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be copied to %@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be copied to %@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be copied to %@." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be copied to %@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%@ no se puede copiar en %@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ no se puede copiar en %@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%@ne peut pas être copié vers%@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ne peut pas être copié vers%@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@을(를) %@으로 복사할 수 없습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@을(를) %@으로 복사할 수 없습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be copied to %@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be copied to %@." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be copied to %@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be copied to %@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be copied to %@." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be copied to %@." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be copied to %@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be copied to %@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be copied to %@." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be copied to %@." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "%@ não pode ser copiado para %@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ não pode ser copiado para %@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%@ não pode ser copiado para %@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be copied to %@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be copied to %@." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ não pode ser copiado para %@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%@ невозможно скопировать в %@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ невозможно скопировать в %@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%@ s’mund të kopjohet te %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ s’mund të kopjohet te %@." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถคัดลอก %@ ไปที่ %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถคัดลอก %@ ไปที่ %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถคัดลอก %@ ไปที่ %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถคัดลอก %@ ไปที่ %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@, %@konumuna kopyalanamaz." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@, %@konumuna kopyalanamaz." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "%@ 无法被拷贝到 %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ 无法被拷贝到 %@" } } } }, - "%@ can't be moved to %@.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be moved to %@." + "%@ can't be moved to %@." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be moved to %@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ kann nicht nach %@ verschoben werden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ kann nicht nach %@ verschoben werden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be moved to %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be moved to %@." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be moved to %@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be moved to %@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be moved to %@." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be moved to %@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%@ no se puede mover a %@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ no se puede mover a %@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%@ ne peut pas être déplacé vers %@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ ne peut pas être déplacé vers %@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@을(를) %@으로 이동할 수 없습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@을(를) %@으로 이동할 수 없습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be moved to %@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be moved to %@." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be moved to %@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be moved to %@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be moved to %@." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be moved to %@." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be moved to %@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be moved to %@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be moved to %@." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be moved to %@." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "%@ não pode ser movido para %@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ não pode ser movido para %@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%@ não pode ser movido para %@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ can't be moved to %@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%@ can't be moved to %@." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ não pode ser movido para %@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%@ невозможно переместить в %@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ невозможно переместить в %@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%@ s’mund të kalohet te %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ s’mund të kalohet te %@." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถย้าย %@ ไปที่ %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถย้าย %@ ไปที่ %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถย้าย %@ ไปที่ %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถย้าย %@ ไปที่ %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@, %@konumuna taşınamaz." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@, %@konumuna taşınamaz." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "%@ 无法被移动到 %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ 无法被移动到 %@" } } } }, - "%@ can't be renamed to %@.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "%@ can't be renamed to %@." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ konnte nicht in %@ umbenannt werden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ konnte nicht in %@ umbenannt werden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "%@ não pôde ser renomeado para %@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ não pôde ser renomeado para %@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%@ não pôde ser renomeado para %@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ não pôde ser renomeado para %@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%@ s’u emërtua dot si %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ s’u emërtua dot si %@." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be renamed to %@." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be renamed to %@." } } } }, - "%@ changed on the server. Really delete it?": { - "comment": "Delete", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%@ changed on the server. Really delete it?" + "%@ changed on the server. Really delete it?" : { + "comment" : "Delete", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ changed on the server. Really delete it?" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ wurde auf dem Server verändert. Soll es wirklich gelöscht werden?" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wurde auf dem Server verändert. Soll es wirklich gelöscht werden?" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ changed on the server. Really delete it?" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ changed on the server. Really delete it?" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "%@ changed on the server. Really delete it?" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ changed on the server. Really delete it?" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%@ changed on the server. Really delete it?" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ changed on the server. Really delete it?" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%@ cambió en el servidor. ¿Está seguro de querer eliminarlo?" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ cambió en el servidor. ¿Está seguro de querer eliminarlo?" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%@ changé sur le serveur. Voulez-vous vraiment le supprimer?" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ changé sur le serveur. Voulez-vous vraiment le supprimer?" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "서버에서 %@이(가) 변경되었습니다. 정말로 삭제하시겠습니까?" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "서버에서 %@이(가) 변경되었습니다. 정말로 삭제하시겠습니까?" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%@ changed on the server. Really delete it?" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ changed on the server. Really delete it?" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ changed on the server. Really delete it?" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ changed on the server. Really delete it?" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ changed on the server. Really delete it?" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ changed on the server. Really delete it?" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ changed on the server. Really delete it?" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ changed on the server. Really delete it?" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ changed on the server. Really delete it?" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ changed on the server. Really delete it?" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "%@ mudou no servidor. Realmente deletar?" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ mudou no servidor. Realmente deletar?" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%@ mudou no servidor. Realmente deletar?" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ changed on the server. Really delete it?" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%@ changed on the server. Really delete it?" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ mudou no servidor. Realmente deletar?" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%@ изменилось на сервере. Действительно удалить?" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ изменилось на сервере. Действительно удалить?" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%@ ndryshoi te shërbyesi. Të fshihet vërtet?" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ ndryshoi te shërbyesi. Të fshihet vërtet?" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "%@ได้เปลี่ยนเซิร์ฟเวอร์แล้ว ต้องการลบ?" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ได้เปลี่ยนเซิร์ฟเวอร์แล้ว ต้องการลบ?" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "%@ได้เปลี่ยนเซิร์ฟเวอร์แล้ว ต้องการลบ?" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ได้เปลี่ยนเซิร์ฟเวอร์แล้ว ต้องการลบ?" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@sunucu tarafında değiştirilmiş. Silmekten emin misiniz?" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@sunucu tarafında değiştirilmiş. Silmekten emin misiniz?" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "%@ 在服务器端已改变。确定要删除吗?" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ 在服务器端已改变。确定要删除吗?" } } } }, - "%@ couldn't be deleted": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be deleted" + "%@ couldn't be deleted" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be deleted" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ konnte nicht gelöscht werden" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ konnte nicht gelöscht werden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be deleted" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be deleted" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be deleted" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be deleted" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be deleted" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be deleted" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%@ no se pudo eliminar" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ no se pudo eliminar" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%@ n'a pas pu être supprimé" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ n'a pas pu être supprimé" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@을(를) 삭제할 수 없습니다" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@을(를) 삭제할 수 없습니다" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be deleted" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be deleted" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be deleted" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be deleted" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be deleted" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be deleted" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be deleted" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be deleted" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be deleted" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be deleted" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "%@ não pôde ser excluído" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ não pôde ser excluído" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%@ não pôde ser excluído" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ couldn't be deleted" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%@ couldn't be deleted" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ não pôde ser excluído" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%@ удалить не удалось" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ удалить не удалось" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%@ s’u fshi dot" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ s’u fshi dot" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "%@ไม่สามารถลบได้ " + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ไม่สามารถลบได้ " } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "%@ไม่สามารถลบได้ " + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ไม่สามารถลบได้ " } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@silinemedi" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@silinemedi" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "%@ 无法删除" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ 无法删除" } } } }, - "%@ couldn't be renamed to %@.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "%@ couldn't be renamed to %@." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%1$@ konnte nicht in %2$@ umbenannt werden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ konnte nicht in %2$@ umbenannt werden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "%1$@ couldn't be renamed to %2$@." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "%1$@ couldn't be renamed to %2$@." } } } }, - "%@ has changed on the server since you requested its deletion.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%@ has changed on the server since you requested its deletion." + "%@ has changed on the server since you requested its deletion." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ has changed on the server since you requested its deletion." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ wurde auf dem Server verändert, seitdem Sie die Löschung angefragt haben." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wurde auf dem Server verändert, seitdem Sie die Löschung angefragt haben." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ has changed on the server since you requested its deletion." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ has changed on the server since you requested its deletion." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "%@ has changed on the server since you requested its deletion." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ has changed on the server since you requested its deletion." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%@ has changed on the server since you requested its deletion." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ has changed on the server since you requested its deletion." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%@ cambió en el servidor desde que solicitó su eliminación." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ cambió en el servidor desde que solicitó su eliminación." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%@ a changé sur le serveur depuis que vous avez demandé sa suppression." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ a changé sur le serveur depuis que vous avez demandé sa suppression." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "삭제 요청으로 서버에서 %@이(가) 변경되었습니다" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "삭제 요청으로 서버에서 %@이(가) 변경되었습니다" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%@ has changed on the server since you requested its deletion." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ has changed on the server since you requested its deletion." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ has changed on the server since you requested its deletion." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ has changed on the server since you requested its deletion." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ has changed on the server since you requested its deletion." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ has changed on the server since you requested its deletion." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ has changed on the server since you requested its deletion." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ has changed on the server since you requested its deletion." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ has changed on the server since you requested its deletion." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ has changed on the server since you requested its deletion." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "%@ mudou no servidor desde que você solicitou sua exclusão." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ mudou no servidor desde que você solicitou sua exclusão." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%@ mudou no servidor desde que você solicitou sua exclusão." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ has changed on the server since you requested its deletion." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%@ has changed on the server since you requested its deletion." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ mudou no servidor desde que você solicitou sua exclusão." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%@ изменилось на сервер с того момента, как вы запросили его удаление." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ изменилось на сервер с того момента, как вы запросили его удаление." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%@ ka ndryshuar te shërbyesi, që nga koha që kërkuat fshirjen e tij." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ ka ndryshuar te shërbyesi, që nga koha që kërkuat fshirjen e tij." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "%@ ได้เปลี่ยนเซิร์ฟเวอร์แล้วตั้งแต่คุณขอให้ลบ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ ได้เปลี่ยนเซิร์ฟเวอร์แล้วตั้งแต่คุณขอให้ลบ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "%@ ได้เปลี่ยนเซิร์ฟเวอร์แล้วตั้งแต่คุณขอให้ลบ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ ได้เปลี่ยนเซิร์ฟเวอร์แล้วตั้งแต่คุณขอให้ลบ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@silinmesini istediğinizden beri sunucu tarafında değişmiş durumda." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@silinmesini istediğinizden beri sunucu tarafında değişmiş durumda." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "自从你发出删除请求之后 %@ 在服务器端发生了改变。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "自从你发出删除请求之后 %@ 在服务器端发生了改变。" } } } }, - "%@ not found": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%@ not found" + "%@ not found" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ not found" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ nicht gefunden" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ nicht gefunden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ not found" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ not found" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "%@ not found" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ not found" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%@ not found" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ not found" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%@ no encontrado" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ no encontrado" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%@pas trouvé" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@pas trouvé" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@을(를) 찾을 수 없습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@을(를) 찾을 수 없습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%@ not found" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ not found" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ not found" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ not found" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ not found" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ not found" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ not found" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ not found" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ not found" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ not found" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "%@ não encontrado" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ não encontrado" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%@ não encontrado" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ not found" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%@ not found" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ não encontrado" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%@ не найдено" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ не найдено" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%@ s’u gjet" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ s’u gjet" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบ %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบ %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบ %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบ %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@bulunamadı" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@bulunamadı" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "%@ 未找到" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ 未找到" } } } }, - "%@ wasn't found at %@.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%@ wasn't found at %@." + "%@ wasn't found at %@." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wasn't found at %@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ wurde nicht gefunden auf %@" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wurde nicht gefunden auf %@" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ wasn't found at %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wasn't found at %@." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "%@ wasn't found at %@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wasn't found at %@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%@ wasn't found at %@." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wasn't found at %@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%@ no se encontró en %@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ no se encontró en %@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%@ n'a pas été trouvé à %@" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ n'a pas été trouvé à %@" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@을(를) %@에서 찾을 수 없습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@을(를) %@에서 찾을 수 없습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%@ wasn't found at %@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wasn't found at %@." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ wasn't found at %@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wasn't found at %@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ wasn't found at %@." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wasn't found at %@." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "%@ wasn't found at %@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wasn't found at %@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%@ wasn't found at %@." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wasn't found at %@." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "%@ não foi encontrado em %@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ não foi encontrado em %@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%@ não foi encontrado em %@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ wasn't found at %@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%@ wasn't found at %@." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ não foi encontrado em %@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%@ не найдено в %@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ не найдено в %@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%@ s’u gjet te %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ s’u gjet te %@." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบ %@ ที่ %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบ %@ ที่ %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบ %@ ที่ %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบ %@ ที่ %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@, %@konumunda bulunamadı." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@, %@konumunda bulunamadı." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "%@ 未在 %@ 处找到。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ 未在 %@ 处找到。" } } } }, - "%lu files in %lu folders": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "%lu files in %lu folders" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%lu Dateien in %lu Ordnern" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu Dateien in %lu Ordnern" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "%lu arquivos em pastas %lu" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu arquivos em pastas %lu" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "%lu arquivos em pastas %lu" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu arquivos em pastas %lu" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "%lu kartela në %lu dosje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu kartela në %lu dosje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "%lu files in %lu folders" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "%lu files in %lu folders" } } } }, - "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Eine geänderte, unsynchronisierte Version von \"%@\" ist auf Ihrem Gerät vorhanden. Wenn Sie die Datei vom Server herunterladen, wird die lokale Datei überschrieben und die Änderungen gehen verloren." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eine geänderte, unsynchronisierte Version von \"%@\" ist auf Ihrem Gerät vorhanden. Wenn Sie die Datei vom Server herunterladen, wird die lokale Datei überschrieben und die Änderungen gehen verloren." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "A modified, unsynchronised version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "A modified, unsynchronised version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "A modified, unsynchronised version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "A modified, unsynchronised version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Hay una versión modificada y no sincronizada de \"%@\" en su dispositivo. La descarga del archivo del servidor lo sobrescribirá y se perderán las modificaciones." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hay una versión modificada y no sincronizada de \"%@\" en su dispositivo. La descarga del archivo del servidor lo sobrescribirá y se perderán las modificaciones." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "장치에 \"%@\"의 수정되고 동기화되지 않은 버전이 있습니다. 서버에서 파일을 다운로드하면 파일을 덮어쓰고 수정 내용이 손실됩니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "장치에 \"%@\"의 수정되고 동기화되지 않은 버전이 있습니다. 서버에서 파일을 다운로드하면 파일을 덮어쓰고 수정 내용이 손실됩니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Uma versão modificada e não sincronizada de \"%@\" está presente em seu dispositivo. Baixar o arquivo do servidor irá sobrescrevê-lo e as modificações serão perdidas. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma versão modificada e não sincronizada de \"%@\" está presente em seu dispositivo. Baixar o arquivo do servidor irá sobrescrevê-lo e as modificações serão perdidas. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Uma versão modificada e não sincronizada de \"%@\" está presente em seu dispositivo. Baixar o arquivo do servidor irá sobrescrevê-lo e as modificações serão perdidas. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma versão modificada e não sincronizada de \"%@\" está presente em seu dispositivo. Baixar o arquivo do servidor irá sobrescrevê-lo e as modificações serão perdidas. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Në pajisjen tuaj është i pranishëm një version i ndryshuar, i panjëkohësuar, i \"%@\". Shkarkimi i kartelës prej shërbyesit do ta mbishkruajë dhe ndryshimet do të humbasin." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Në pajisjen tuaj është i pranishëm një version i ndryshuar, i panjëkohësuar, i \"%@\". Shkarkimi i kartelës prej shërbyesit do ta mbishkruajë dhe ndryshimet do të humbasin." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การแก้ไขและไม่ได้ถูกประสานข้อมูลของเวอร์ชัน \"%@\" จะแสดงอยู่บนอุปกรณ์ของคุณ การดาวน์โหลดไฟล์จากเซิร์ฟเวอร์จะเขียนทับไฟล์ดังกล่าวและการแก้ไขจะสูญหายไป" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การแก้ไขและไม่ได้ถูกประสานข้อมูลของเวอร์ชัน \"%@\" จะแสดงอยู่บนอุปกรณ์ของคุณ การดาวน์โหลดไฟล์จากเซิร์ฟเวอร์จะเขียนทับไฟล์ดังกล่าวและการแก้ไขจะสูญหายไป" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การแก้ไขและไม่ได้ถูกประสานข้อมูลของเวอร์ชัน \"%@\" จะแสดงอยู่บนอุปกรณ์ของคุณ การดาวน์โหลดไฟล์จากเซิร์ฟเวอร์จะเขียนทับไฟล์ดังกล่าวและการแก้ไขจะสูญหายไป" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การแก้ไขและไม่ได้ถูกประสานข้อมูลของเวอร์ชัน \"%@\" จะแสดงอยู่บนอุปกรณ์ของคุณ การดาวน์โหลดไฟล์จากเซิร์ฟเวอร์จะเขียนทับไฟล์ดังกล่าวและการแก้ไขจะสูญหายไป" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Cihazınızda değiştirilmiş, senkronize edilmemiş bir \"%@\" sürümü var. Dosyayı sunucudan indirmek üzerine yazacak ve değişiklikler kaybolacaktır." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cihazınızda değiştirilmiş, senkronize edilmemiş bir \"%@\" sürümü var. Dosyayı sunucudan indirmek üzerine yazacak ve değişiklikler kaybolacaktır." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } } } }, - "A newer version already exists.": { - "comment": "OCErrorNewerVersionExists", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "A newer version already exists." + "A newer version already exists." : { + "comment" : "OCErrorNewerVersionExists", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "A newer version already exists." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Es existiert bereits eine neuere Version." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Es existiert bereits eine neuere Version." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "A newer version already exists." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "A newer version already exists." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "A newer version already exists." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "A newer version already exists." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "A newer version already exists." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "A newer version already exists." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Una nueva versión ya existe." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una nueva versión ya existe." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Une version plus récente existe déjà." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Une version plus récente existe déjà." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "최신 버전이 이미 존재합니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "최신 버전이 이미 존재합니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "A newer version already exists." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "A newer version already exists." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "A newer version already exists." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "A newer version already exists." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "A newer version already exists." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "A newer version already exists." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "A newer version already exists." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "A newer version already exists." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "A newer version already exists." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "A newer version already exists." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Uma versão mais nova já existe." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma versão mais nova já existe." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Uma versão mais nova já existe." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A newer version already exists." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "A newer version already exists." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma versão mais nova já existe." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Уже существует более свежая версия." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Уже существует более свежая версия." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ka tashmë një version më të ri." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tashmë një version më të ri." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "มีเวอร์ชันใหม่ออกมาแล้ว" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "มีเวอร์ชันใหม่ออกมาแล้ว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "มีเวอร์ชันใหม่ออกมาแล้ว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "มีเวอร์ชันใหม่ออกมาแล้ว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Daha yeni bir versiyon halen mevcut." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha yeni bir versiyon halen mevcut." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "更新的版本已存在。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "更新的版本已存在。" } } } }, - "A running operation prevents execution.": { - "comment": "OCErrorRunningOperation", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "A running operation prevents execution." + "A running operation prevents execution." : { + "comment" : "OCErrorRunningOperation", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "A running operation prevents execution." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ein laufender Vorgang verhindert die Ausführung." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ein laufender Vorgang verhindert die Ausführung." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "A running operation prevents execution." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "A running operation prevents execution." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "A running operation prevents execution." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "A running operation prevents execution." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "A running operation prevents execution." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "A running operation prevents execution." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Una operación en ejecución impide la ejecución." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Una operación en ejecución impide la ejecución." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Une opération en cours empêche l'exécution." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Une opération en cours empêche l'exécution." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "구동중인 작업이 실행을 방지합니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "구동중인 작업이 실행을 방지합니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "A running operation prevents execution." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "A running operation prevents execution." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "A running operation prevents execution." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "A running operation prevents execution." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "A running operation prevents execution." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "A running operation prevents execution." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "A running operation prevents execution." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "A running operation prevents execution." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "A running operation prevents execution." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "A running operation prevents execution." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Uma outra operação em execução impede a execução." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma outra operação em execução impede a execução." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Uma outra operação em execução impede a execução." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A running operation prevents execution." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "A running operation prevents execution." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma outra operação em execução impede a execução." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Запуску мешает выполняемая операция." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запуску мешает выполняемая операция." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ekzekutimin e pengon një veprim në xhirim e sipër." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ekzekutimin e pengon një veprim në xhirim e sipër." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การดำเนินการที่ทำงานอยู่จะป้องกันการดำเนินการอื่น ๆ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การดำเนินการที่ทำงานอยู่จะป้องกันการดำเนินการอื่น ๆ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การดำเนินการที่ทำงานอยู่จะป้องกันการดำเนินการอื่น ๆ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การดำเนินการที่ทำงานอยู่จะป้องกันการดำเนินการอื่น ๆ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Çalışan bir işlem yürütmeyi engelliyor." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çalışan bir işlem yürütmeyi engelliyor." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "一个正在进行的操作阻止了执行。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "一个正在进行的操作阻止了执行。" } } } }, - "Accepting share…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "Accepting share…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Akzeptiere Freigabe…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akzeptiere Freigabe…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Accepting share…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Accepting share…" } } } }, - "Action": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Action" + "Action" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Aktion" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktion" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Action" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Action" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Action" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Acción" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Acción" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Action" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "동작" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "동작" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Action" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Action" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Action" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Ação" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ação" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Ação" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Action" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ação" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Action" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Veprim" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veprim" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การกระทำ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การกระทำ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การกระทำ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การกระทำ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Eylem" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eylem" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Action" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action" } } } }, - "Action ID": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Action ID" + "Action ID" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action ID" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Aktions-ID" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktions-ID" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Action ID" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action ID" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Action ID" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action ID" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Action ID" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action ID" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "ID de acción" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID de acción" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Action ID" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action ID" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "작업 ID" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "작업 ID" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Action ID" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action ID" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Action ID" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action ID" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Action ID" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action ID" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "ID da ação " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID da ação " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "ID da ação " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action ID" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Action ID" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID da ação " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Action ID" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action ID" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "ID Veprimi" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Veprimi" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "รหัสการดำเนินการ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รหัสการดำเนินการ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "รหัสการดำเนินการ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รหัสการดำเนินการ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Action ID" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action ID" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Action ID" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Action ID" } } } }, - "Allow cellular access": { - "comment": "Cellular Switches", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Allow cellular access" + "Allow cellular access" : { + "comment" : "Cellular Switches", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow cellular access" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Mobilfunkdaten verwenden" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mobilfunkdaten verwenden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Allow cellular access" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow cellular access" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Allow cellular access" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow cellular access" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Allow cellular access" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow cellular access" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Permitir el acceso celular" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir el acceso celular" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Allow cellular access" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow cellular access" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "무선 접근 허용" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "무선 접근 허용" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Allow cellular access" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow cellular access" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Allow cellular access" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow cellular access" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Allow cellular access" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow cellular access" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Permitir acesso do celular " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir acesso do celular " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Permitir acesso do celular " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow cellular access" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Allow cellular access" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permitir acesso do celular " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Allow cellular access" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow cellular access" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Lejo hyrje nga celulari" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lejo hyrje nga celulari" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "อนุญาตการเข้าถึงเครือข่ายมือถือ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "อนุญาตการเข้าถึงเครือข่ายมือถือ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "อนุญาตการเข้าถึงเครือข่ายมือถือ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "อนุญาตการเข้าถึงเครือข่ายมือถือ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Hücresel erişime izin ver" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hücresel erişime izin ver" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Allow cellular access" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Allow cellular access" } } } }, - "An error occured trying to validate the certificate for %@.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "An error occured trying to validate the certificate for %@." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Bei der Überprüfung des Zertifikats für %@ ist ein Fehler aufgetreten." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bei der Überprüfung des Zertifikats für %@ ist ein Fehler aufgetreten." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "An error occured trying to validate the certificate for %@." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "An error occured trying to validate the certificate for %@." } } } }, - "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Beim Ausführen einer Aktion (\"%@\") ist ein Problem aufgetreten. Die Aktion wurde aus der Warteschlange für die Synchronisation entfernt und wurde eventuell nicht vollständig durchgeführt. Falls Logging aktiviert ist, wurde das Problem protokolliert." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beim Ausführen einer Aktion (\"%@\") ist ein Problem aufgetreten. Die Aktion wurde aus der Warteschlange für die Synchronisation entfernt und wurde eventuell nicht vollständig durchgeführt. Falls Logging aktiviert ist, wurde das Problem protokolliert." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } } } }, - "An exception occured.": { - "comment": "OCErrorException", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "An exception occured." + "An exception occured." : { + "comment" : "OCErrorException", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Eine Ausnahme ist aufgetreten." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eine Ausnahme ist aufgetreten." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "An exception occured." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "An exception occurred." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occurred." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "An exception occurred." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occurred." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Se produjo una excepción." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se produjo una excepción." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Une exception s'est produite." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Une exception s'est produite." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "예외가 발생했습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "예외가 발생했습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "An exception occured." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "An exception occured." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "An exception occured." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "An exception occured." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "An exception occured." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Uma exceção ocorreu." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma exceção ocorreu." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Uma exceção ocorreu." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "An exception occured." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "An exception occured." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma exceção ocorreu." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Произошло исключение." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Произошло исключение." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ndodhi një përjashtim." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndodhi një përjashtim." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "มีข้อยกเว้นเกิดขึ้น" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "มีข้อยกเว้นเกิดขึ้น" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "มีข้อยกเว้นเกิดขึ้น" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "มีข้อยกเว้นเกิดขึ้น" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bir istisna meydana geldi." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir istisna meydana geldi." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "发生了一个异常。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "发生了一个异常。" } } } }, - "An operation failed due to outdated cache information.": { - "comment": "OCErrorOutdatedCache", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "An operation failed due to outdated cache information." + "An operation failed due to outdated cache information." : { + "comment" : "OCErrorOutdatedCache", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "An operation failed due to outdated cache information." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ein Vorgang ist aufgrund veralteter Cache-Informationen fehlgeschlagen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ein Vorgang ist aufgrund veralteter Cache-Informationen fehlgeschlagen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "An operation failed due to outdated cache information." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "An operation failed due to outdated cache information." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "An operation failed due to outdated cache information." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "An operation failed due to outdated cache information." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "An operation failed due to outdated cache information." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "An operation failed due to outdated cache information." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Error en una operación debido a información de caché desactualizada." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error en una operación debido a información de caché desactualizada." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Une opération a échoué en raison d'informations de cache obsolètes." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Une opération a échoué en raison d'informations de cache obsolètes." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "캐시 정보가 오래되어 작업에 실패했습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "캐시 정보가 오래되어 작업에 실패했습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "An operation failed due to outdated cache information." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "An operation failed due to outdated cache information." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "An operation failed due to outdated cache information." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "An operation failed due to outdated cache information." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "An operation failed due to outdated cache information." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "An operation failed due to outdated cache information." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "An operation failed due to outdated cache information." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "An operation failed due to outdated cache information." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "An operation failed due to outdated cache information." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "An operation failed due to outdated cache information." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Uma operação falhou devido a informações de cache desatualizadas." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma operação falhou devido a informações de cache desatualizadas." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Uma operação falhou devido a informações de cache desatualizadas." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "An operation failed due to outdated cache information." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "An operation failed due to outdated cache information." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uma operação falhou devido a informações de cache desatualizadas." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Операция не прошла из-за устаревшей информации в кэше." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Операция не прошла из-за устаревшей информации в кэше." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Një veprim dështoi për shkak hollësish të vjetruara fshehtine." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Një veprim dështoi për shkak hollësish të vjetruara fshehtine." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การดำเนินการล้มเหลวเนื่องจากข้อมูลแคชที่ล้าสมัย" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การดำเนินการล้มเหลวเนื่องจากข้อมูลแคชที่ล้าสมัย" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การดำเนินการล้มเหลวเนื่องจากข้อมูลแคชที่ล้าสมัย" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การดำเนินการล้มเหลวเนื่องจากข้อมูลแคชที่ล้าสมัย" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Eski önbellek bilgileri nedeniyle bir işlem başarısız oldu." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eski önbellek bilgileri nedeniyle bir işlem başarısız oldu." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "操作因过期的缓存信息失败。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "操作因过期的缓存信息失败。" } } } }, - "Another item named %@ already exists in %@.": { - "comment": "Upload", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Another item named %@ already exists in %@." + "Another item named %@ already exists in %@." : { + "comment" : "Upload", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item named %@ already exists in %@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ein anderes Element mit dem Namen %@ existiert bereits in %@." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ein anderes Element mit dem Namen %@ existiert bereits in %@." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Another item named %@ already exists in %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item named %@ already exists in %@." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Another item named %@ already exists in %@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item named %@ already exists in %@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Another item named %@ already exists in %@." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item named %@ already exists in %@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Otro elemento llamado %@ya existe en %@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otro elemento llamado %@ya existe en %@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Another item named %@ already exists in %@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item named %@ already exists in %@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@항목이 이미 %@에 존재합니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@항목이 이미 %@에 존재합니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Another item named %@ already exists in %@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item named %@ already exists in %@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Another item named %@ already exists in %@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item named %@ already exists in %@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Another item named %@ already exists in %@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item named %@ already exists in %@." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Outro item chamado %@ já existe em %@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Outro item chamado %@ já existe em %@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Outro item chamado %@ já existe em %@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item named %@ already exists in %@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Another item named %@ already exists in %@." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Outro item chamado %@ já existe em %@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Another item named %@ already exists in %@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item named %@ already exists in %@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Një tjetër objekt i quajtur %@ ekziston tashmë në %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Një tjetër objekt i quajtur %@ ekziston tashmë në %@." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "อีกรายการชื่อ %@ มีอยู่แล้วใน %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "อีกรายการชื่อ %@ มีอยู่แล้วใน %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "อีกรายการชื่อ %@ มีอยู่แล้วใน %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "อีกรายการชื่อ %@ มีอยู่แล้วใน %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@ adlı başka bir öge %@'da zaten mevcut." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ adlı başka bir öge %@'da zaten mevcut." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Another item named %@ already exists in %@." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item named %@ already exists in %@." } } } }, - "Another item policy of the same kind already includes the item, making the addition of this item policy redundant.": { - "comment": "OCErrorItemPolicyRedundant", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." : { + "comment" : "OCErrorItemPolicyRedundant", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Eine andere Richtlinie der gleichen Art umfasst das Element bereits, wodurch das Hinzufügen dieser Richtlinie überflüssig wird." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eine andere Richtlinie der gleichen Art umfasst das Element bereits, wodurch das Hinzufügen dieser Richtlinie überflüssig wird." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Otra política de artículos del mismo tipo ya incluye el artículo, lo que hace que la adición de esta política de artículos sea redundante." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otra política de artículos del mismo tipo ya incluye el artículo, lo que hace que la adición de esta política de artículos sea redundante." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "동일한 종류의 다른 항목 정책이 이미 항목을 포함하므로 이 항목 정책의 추가는 중복됩니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "동일한 종류의 다른 항목 정책이 이미 항목을 포함하므로 이 항목 정책의 추가는 중복됩니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Outra política de itens do mesmo tipo já inclui o item, tornando redundante a adição desta política de itens. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Outra política de itens do mesmo tipo já inclui o item, tornando redundante a adição desta política de itens. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Outra política de itens do mesmo tipo já inclui o item, tornando redundante a adição desta política de itens. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Outra política de itens do mesmo tipo já inclui o item, tornando redundante a adição desta política de itens. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Një tjetër rregull objektesh të të njëjtit lloj përfshin tashmë objektin, duke e bërë të përsëritur shtimin e këtij rregulli objekti." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Një tjetër rregull objektesh të të njëjtit lloj përfshin tashmë objektin, duke e bërë të përsëritur shtimin e këtij rregulli objekti." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "นโยบายสินค้าซ้ำกับสินค้าที่มีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "นโยบายสินค้าซ้ำกับสินค้าที่มีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "นโยบายสินค้าซ้ำกับสินค้าที่มีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "นโยบายสินค้าซ้ำกับสินค้าที่มีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Aynı türden başka bir öge politikası, ögeyi zaten içeriyor ve bu öge politikasının eklenmesini gereksiz kılıyor." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aynı türden başka bir öge politikası, ögeyi zaten içeriyor ve bu öge politikasının eklenmesini gereksiz kılıyor." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } } } }, - "At least {{min}} special characters: {{specialCharacters}}": { - "comment": "Password Policy Check", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "At least {{min}} {{characterType}}" : { + "comment" : "Password Policy Check", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Mindestens {{min}} Sonderzeichen: {{specialCharacters}}" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mindestens {{min}} {{characterType}}" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} special characters: {{specialCharacters}}" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} {{characterType}}" } } } }, - "At least {{min}} {{characterType}}": { - "comment": "Password Policy Check", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "At least {{min}} special characters: {{specialCharacters}}" : { + "comment" : "Password Policy Check", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Mindestens {{min}} {{characterType}}" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mindestens {{min}} Sonderzeichen: {{specialCharacters}}" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "At least {{min}} {{characterType}}" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "At least {{min}} special characters: {{specialCharacters}}" } } } }, - "At most {{byteLength}} bytes.": { - "comment": "OCPasswordPolicyRuleByteLength", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "At most {{byteLength}} bytes." : { + "comment" : "OCPasswordPolicyRuleByteLength", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Maximal {{byteLength}} Bytes." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maximal {{byteLength}} Bytes." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "At most {{byteLength}} bytes." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{byteLength}} bytes." } } } }, - "At most {{max}} {{characterType}}": { - "comment": "Password Policy Check", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "At most {{max}} {{characterType}}" : { + "comment" : "Password Policy Check", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Maximal {{max}} {{characterType}}" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Maximal {{max}} {{characterType}}" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "At most {{max}} {{characterType}}" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "At most {{max}} {{characterType}}" } } } }, - "Auth Data": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Auth Data" + "Auth Data" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Data" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Autorisierungsdaten" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autorisierungsdaten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Auth Data" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Data" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Auth Data" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Data" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Auth Data" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Data" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Datos de autenticación" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datos de autenticación" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Auth Data" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Data" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "인증 데이터" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인증 데이터" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Auth Data" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Data" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Auth Data" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Data" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Auth Data" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Data" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Dados de Autenticação " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dados de Autenticação " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Dados de Autenticação " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Data" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Auth Data" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dados de Autenticação " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Auth Data" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Data" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Të dhëna Mirëfilltësimi" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Të dhëna Mirëfilltësimi" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ข้อมูลรับรองความถูกต้อง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อมูลรับรองความถูกต้อง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ข้อมูลรับรองความถูกต้อง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อมูลรับรองความถูกต้อง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yetkilendirme Verisi" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yetkilendirme Verisi" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Auth Data" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Data" } } } }, - "Auth Method": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Auth Method" + "Auth Method" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Method" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Autorisierungsmethode" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autorisierungsmethode" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Auth Method" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Method" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Auth Method" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Method" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Auth Method" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Method" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Método de autenticación" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Método de autenticación" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Auth Method" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Method" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "인증 방법" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인증 방법" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Auth Method" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Method" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Auth Method" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Method" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Auth Method" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Method" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Método de Autenticação " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Método de Autenticação " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Método de Autenticação " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Method" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Auth Method" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Método de Autenticação " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Auth Method" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Method" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Metodë Mirëfilltësimi" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Metodë Mirëfilltësimi" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "วิธีการรับรองความถูกต้อง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "วิธีการรับรองความถูกต้อง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "วิธีการรับรองความถูกต้อง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "วิธีการรับรองความถูกต้อง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yetkilendirme Yöntemi" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yetkilendirme Yöntemi" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Auth Method" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Method" } } } }, - "Auth Validation Date": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Auth Validation Date" + "Auth Validation Date" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Validation Date" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Validierungsdatum der Autorisierung" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Validierungsdatum der Autorisierung" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Auth Validation Date" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Validation Date" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Auth Validation Date" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Validation Date" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Auth Validation Date" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Validation Date" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Fecha de validación de autenticación" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fecha de validación de autenticación" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Auth Validation Date" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Validation Date" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "인증 유효성 검사 날짜" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인증 유효성 검사 날짜" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Auth Validation Date" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Validation Date" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Auth Validation Date" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Validation Date" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Auth Validation Date" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Validation Date" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Data de Validação de Autenticação " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data de Validação de Autenticação " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Data de Validação de Autenticação " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Validation Date" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Auth Validation Date" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data de Validação de Autenticação " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Auth Validation Date" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Validation Date" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Datë Vlerësimi Mirëfilltësimi" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datë Vlerësimi Mirëfilltësimi" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "วันที่ตรวจสอบสิทธิ์" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "วันที่ตรวจสอบสิทธิ์" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "วันที่ตรวจสอบสิทธิ์" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "วันที่ตรวจสอบสิทธิ์" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yetki Doğrulama Tarihi" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yetki Doğrulama Tarihi" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Auth Validation Date" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auth Validation Date" } } } }, - "Authenticating…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Authenticating…" + "Authenticating…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticating…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Anmeldung läuft…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anmeldung läuft…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Authenticating…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticating…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Authenticating…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticating…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Authenticating…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticating…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Autenticando..." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autenticando..." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Authentification…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentification…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "인증 중..." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인증 중..." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Authenticating…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticating…" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Authenticating…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticating…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Authenticating…" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticating…" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Authenticating…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticating…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Authenticating…" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authenticating…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Autenticando..." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autenticando..." } }, - "pt-PT": { - "stringUnit": { - "state": "translated", - "value": "A autenticar..." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A autenticar..." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Autenticando..." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autenticando..." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "A autenticar..." + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A autenticar..." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Авторизация…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Авторизация…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po bëhet mirëfilltësimi…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po bëhet mirëfilltësimi…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังตรวจสอบสิทธิ์..." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังตรวจสอบสิทธิ์..." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังตรวจสอบสิทธิ์..." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังตรวจสอบสิทธิ์..." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kimlik doğrulanıyor..." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kimlik doğrulanıyor..." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "正在认证..." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在认证..." } } } }, - "Authentication method not allowed. Re-authentication needed.": { - "comment": "OCErrorAuthorizationMethodNotAllowed", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Authentication method not allowed. Re-authentication needed." + "Authentication method not allowed. Re-authentication needed." : { + "comment" : "OCErrorAuthorizationMethodNotAllowed", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method not allowed. Re-authentication needed." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Authentifizierungsmethode nicht erlaubt. Erneute Authentifizierung erforderlich." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentifizierungsmethode nicht erlaubt. Erneute Authentifizierung erforderlich." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Authentication method not allowed. Re-authentication needed." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method not allowed. Re-authentication needed." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Authentication method not allowed. Re-authentication needed." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method not allowed. Re-authentication needed." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Authentication method not allowed. Re-authentication needed." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method not allowed. Re-authentication needed." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Método de autenticación no permitido. Se necesita una nueva autenticación." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Método de autenticación no permitido. Se necesita una nueva autenticación." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Authentication method not allowed. Re-authentication needed." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method not allowed. Re-authentication needed." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "허용되지 않은 인증 방법. 재인증 필요." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "허용되지 않은 인증 방법. 재인증 필요." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Authentication method not allowed. Re-authentication needed." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method not allowed. Re-authentication needed." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Authentication method not allowed. Re-authentication needed." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method not allowed. Re-authentication needed." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Authentication method not allowed. Re-authentication needed." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method not allowed. Re-authentication needed." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Método de autenticação não permitido. Re-autenticação necessária. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Método de autenticação não permitido. Re-autenticação necessária. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Método de autenticação não permitido. Re-autenticação necessária. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method not allowed. Re-authentication needed." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Authentication method not allowed. Re-authentication needed." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Método de autenticação não permitido. Re-autenticação necessária. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Authentication method not allowed. Re-authentication needed." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method not allowed. Re-authentication needed." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Metodë mirëfilltësimi e palejuar. Lypset rimirëfilltësim." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Metodë mirëfilltësimi e palejuar. Lypset rimirëfilltësim." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่อนุญาตให้ใช้วิธีการรับรองความถูกต้อง จำเป็นต้องมีการตรวจสอบสิทธิ์อีกครั้ง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่อนุญาตให้ใช้วิธีการรับรองความถูกต้อง จำเป็นต้องมีการตรวจสอบสิทธิ์อีกครั้ง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่อนุญาตให้ใช้วิธีการรับรองความถูกต้อง จำเป็นต้องมีการตรวจสอบสิทธิ์อีกครั้ง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่อนุญาตให้ใช้วิธีการรับรองความถูกต้อง จำเป็นต้องมีการตรวจสอบสิทธิ์อีกครั้ง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kimlik doğrulama yöntemine izin verilmiyor. Yeniden kimlik doğrulama gerekli." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kimlik doğrulama yöntemine izin verilmiyor. Yeniden kimlik doğrulama gerekli." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Authentication method not allowed. Re-authentication needed." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method not allowed. Re-authentication needed." } } } }, - "Authentication method unknown.": { - "comment": "OCErrorAuthorizationMethodUnknown", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Authentication method unknown." + "Authentication method unknown." : { + "comment" : "OCErrorAuthorizationMethodUnknown", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method unknown." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Authentifizierungsmethode unbekannt." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentifizierungsmethode unbekannt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Authentication method unknown." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method unknown." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Authentication method unknown." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method unknown." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Authentication method unknown." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method unknown." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Método de autenticación desconocido." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Método de autenticación desconocido." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Authentication method unknown." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method unknown." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "알 수 없는 인증 방법" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알 수 없는 인증 방법" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Authentication method unknown." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method unknown." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Authentication method unknown." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method unknown." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Authentication method unknown." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method unknown." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Método de autenticação desconhecido. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Método de autenticação desconhecido. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Método de autenticação desconhecido. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method unknown." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Authentication method unknown." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Método de autenticação desconhecido. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Authentication method unknown." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method unknown." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Metodë e panjohur mirëfilltësimesh." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Metodë e panjohur mirëfilltësimesh." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่รู้จักวิธีการรับรองความถูกต้อง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่รู้จักวิธีการรับรองความถูกต้อง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่รู้จักวิธีการรับรองความถูกต้อง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่รู้จักวิธีการรับรองความถูกต้อง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kimlik doğrulama yöntemi bilinmiyor." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kimlik doğrulama yöntemi bilinmiyor." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Authentication method unknown." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authentication method unknown." } } } }, - "Authorization failed because data was missing from the secret data for the authentication method.": { - "comment": "OCErrorAuthorizationMissingData", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because data was missing from the secret data for the authentication method." + "Authorization failed because data was missing from the secret data for the authentication method." : { + "comment" : "OCErrorAuthorizationMissingData", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because data was missing from the secret data for the authentication method." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Anmeldung ist fehlgeschlagen, weil in den geheimen Daten für die Authentifizierungsmethode Daten fehlen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Anmeldung ist fehlgeschlagen, weil in den geheimen Daten für die Authentifizierungsmethode Daten fehlen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because data was missing from the secret data for the authentication method." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because data was missing from the secret data for the authentication method." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Authorisation failed because data was missing from the secret data for the authentication method." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorisation failed because data was missing from the secret data for the authentication method." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Authorisation failed because data was missing from the secret data for the authentication method." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorisation failed because data was missing from the secret data for the authentication method." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La autorización falló porque faltaban datos de los datos secretos para ser utilizados por el método de autenticación." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La autorización falló porque faltaban datos de los datos secretos para ser utilizados por el método de autenticación." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "L'autorisation a échoué car des données étaient manquantes dans les données secrètes pour la méthode d'authentification." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'autorisation a échoué car des données étaient manquantes dans les données secrètes pour la méthode d'authentification." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "인증 방법에 대한 기밀 데이터로부터 데이터가 누락되어 인증에 실패했습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인증 방법에 대한 기밀 데이터로부터 데이터가 누락되어 인증에 실패했습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because data was missing from the secret data for the authentication method." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because data was missing from the secret data for the authentication method." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because data was missing from the secret data for the authentication method." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because data was missing from the secret data for the authentication method." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because data was missing from the secret data for the authentication method." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because data was missing from the secret data for the authentication method." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because data was missing from the secret data for the authentication method." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because data was missing from the secret data for the authentication method." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because data was missing from the secret data for the authentication method." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because data was missing from the secret data for the authentication method." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A autorização falhou porque faltavam dados dos dados secretos para o método de autenticação." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A autorização falhou porque faltavam dados dos dados secretos para o método de autenticação." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A autorização falhou porque faltavam dados dos dados secretos para o método de autenticação." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because data was missing from the secret data for the authentication method." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because data was missing from the secret data for the authentication method." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A autorização falhou porque faltavam dados dos dados secretos para o método de autenticação." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Авторизация не прошла, так как не хватило части секретных данных для метода аутентификации." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Авторизация не прошла, так как не хватило части секретных данных для метода аутентификации." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Mirëfilltësimi dështoi, ngaqë te të dhënat e fshehta mungojnë të dhëna për metodën e mirëfilltësimit." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mirëfilltësimi dështoi, ngaqë te të dhënat e fshehta mungojnë të dhëna për metodën e mirëfilltësimit." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การอนุญาตล้มเหลวเนื่องจากข้อมูลลับสำหรับการตรวจสอบสิทธิ์หายไป" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การอนุญาตล้มเหลวเนื่องจากข้อมูลลับสำหรับการตรวจสอบสิทธิ์หายไป" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การอนุญาตล้มเหลวเนื่องจากข้อมูลลับสำหรับการตรวจสอบสิทธิ์หายไป" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การอนุญาตล้มเหลวเนื่องจากข้อมูลลับสำหรับการตรวจสอบสิทธิ์หายไป" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kimlik doğrulama yöntemi için gizli veri kayıp olduğundan yetkilendirme başarısız oldu." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kimlik doğrulama yöntemi için gizli veri kayıp olduğundan yetkilendirme başarısız oldu." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because data was missing from the secret data for the authentication method." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because data was missing from the secret data for the authentication method." } } } }, - "Authorization failed because no authorization data was set for the authentication method.": { - "comment": "OCErrorAuthorizationNoMethodData", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "Authorization failed because no authorization data was set for the authentication method." : { + "comment" : "OCErrorAuthorizationNoMethodData", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Anmeldung ist fehlgeschlagen, weil für die Anmeldungsmethode keine geheimen Daten vorhanden sind." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Anmeldung ist fehlgeschlagen, weil für die Anmeldungsmethode keine geheimen Daten vorhanden sind." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Authorisation failed because no authorisation data was set for the authentication method." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorisation failed because no authorisation data was set for the authentication method." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Authorisation failed because no authorisation data was set for the authentication method." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorisation failed because no authorisation data was set for the authentication method." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "L'autorisation a échoué car aucune donnée secrète n'a été définie pour la méthode d'authentification." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'autorisation a échoué car aucune donnée secrète n'a été définie pour la méthode d'authentification." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A autorização falhou porque nenhum dado de autorização foi definido para o método de autenticação." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A autorização falhou porque nenhum dado de autorização foi definido para o método de autenticação." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A autorização falhou porque nenhum dado de autorização foi definido para o método de autenticação." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A autorização falhou porque nenhum dado de autorização foi definido para o método de autenticação." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Авторизация не прошла, так как для метода аутентификации не были заданы секретные данные." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Авторизация не прошла, так как для метода аутентификации не были заданы секретные данные." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Autorizimi dështoi, ngaqë për metodën e mirëfilltësimit s’qenë caktuar të dhëna autorizimi." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autorizimi dështoi, ngaqë për metodën e mirëfilltësimit s’qenë caktuar të dhëna autorizimi." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because no authorization data was set for the authentication method." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because no authorization data was set for the authentication method." } } } }, - "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL.": { - "comment": "OCErrorAuthorizationRedirect", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." : { + "comment" : "OCErrorAuthorizationRedirect", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Anmeldung ist fehlgeschlagen, weil der Server einen Redirect zurückgegeben hat. Die Anmeldung könnte funktionieren, wenn Sie es mit der Redirect-URL erneut versuchen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Anmeldung ist fehlgeschlagen, weil der Server einen Redirect zurückgegeben hat. Die Anmeldung könnte funktionieren, wenn Sie es mit der Redirect-URL erneut versuchen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Authorisation failed because the server returned a redirect. Authorisation may be successful when retried with the redirect URL." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorisation failed because the server returned a redirect. Authorisation may be successful when retried with the redirect URL." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Authorisation failed because the server returned a redirect. Authorisation may be successful when retried with the redirect URL." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorisation failed because the server returned a redirect. Authorisation may be successful when retried with the redirect URL." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La autorización falló porque el servidor devolvió una redirección. La autorización puede tener éxito cuando se reintenta con la URL de redireccionamiento." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La autorización falló porque el servidor devolvió una redirección. La autorización puede tener éxito cuando se reintenta con la URL de redireccionamiento." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "L'autorisation a échoué car le serveur a renvoyé une redirection. L'autorisation peut réussir lors d'une nouvelle tentative avec l'URL de redirection." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'autorisation a échoué car le serveur a renvoyé une redirection. L'autorisation peut réussir lors d'une nouvelle tentative avec l'URL de redirection." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "서버가 리디렉션을 반환하여 인증에 실패했습니다. 리디렉션 URL을 사용하여 재시도하면 인증이 성공할 수 있습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "서버가 리디렉션을 반환하여 인증에 실패했습니다. 리디렉션 URL을 사용하여 재시도하면 인증이 성공할 수 있습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A autorização falhou porque o servidor retornou um redirecionamento. A autorização pode ser bem-sucedida quando você tentar novamente com o URL de redirecionamento." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A autorização falhou porque o servidor retornou um redirecionamento. A autorização pode ser bem-sucedida quando você tentar novamente com o URL de redirecionamento." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A autorização falhou porque o servidor retornou um redirecionamento. A autorização pode ser bem-sucedida quando você tentar novamente com o URL de redirecionamento." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A autorização falhou porque o servidor retornou um redirecionamento. A autorização pode ser bem-sucedida quando você tentar novamente com o URL de redirecionamento." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Авторизация не прошла, так как сервер вернул перенаправление. Авторизация может пройти успешно, если попробовать повторно с перенаправленной ссылкой." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Авторизация не прошла, так как сервер вернул перенаправление. Авторизация может пройти успешно, если попробовать повторно с перенаправленной ссылкой." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Mirëfilltësimi dështoi, ngaqë shërbyesi u përgjigj me një ridrejtim. Mirëfilltësimi mund të jetë i suksesshëm kur riprovohet me URL ridrejtimi." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mirëfilltësimi dështoi, ngaqë shërbyesi u përgjigj me një ridrejtim. Mirëfilltësimi mund të jetë i suksesshëm kur riprovohet me URL ridrejtimi." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การอนุญาตล้มเหลวเนื่องจากเซิร์ฟเวอร์ส่งคืนการเปลี่ยนเส้นทาง ลองใช้ URL การเปลี่ยนเส้นทางใหม่" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การอนุญาตล้มเหลวเนื่องจากเซิร์ฟเวอร์ส่งคืนการเปลี่ยนเส้นทาง ลองใช้ URL การเปลี่ยนเส้นทางใหม่" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การอนุญาตล้มเหลวเนื่องจากเซิร์ฟเวอร์ส่งคืนการเปลี่ยนเส้นทาง ลองใช้ URL การเปลี่ยนเส้นทางใหม่" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การอนุญาตล้มเหลวเนื่องจากเซิร์ฟเวอร์ส่งคืนการเปลี่ยนเส้นทาง ลองใช้ URL การเปลี่ยนเส้นทางใหม่" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sunucu bir yönlendirme yaptığından dolayı yetkilendirme başarısız. Yönlendirilen bağlantı ile denendiğinde yetkilendirme başarılı olabilir." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunucu bir yönlendirme yaptığından dolayı yetkilendirme başarısız. Yönlendirilen bağlantı ile denendiğinde yetkilendirme başarılı olabilir." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } } } }, - "Authorization failed.": { - "comment": "OCErrorAuthorizationFailed", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed." + "Authorization failed." : { + "comment" : "OCErrorAuthorizationFailed", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Anmeldung ist fehlgeschlagen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Anmeldung ist fehlgeschlagen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Authorisation failed." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorisation failed." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Authorisation failed." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorisation failed." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Autorización fallida." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Autorización fallida." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "L'autorisation a échoué." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'autorisation a échoué." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "인증 실패." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인증 실패." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Falha na autorização." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha na autorização." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Falha na autorização." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization failed." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Authorization failed." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falha na autorização." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Авторизация не прошла." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Авторизация не прошла." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Mirëfilltësimi dështoi." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mirëfilltësimi dështoi." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การให้สิทธิ์ล้มเหลว" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การให้สิทธิ์ล้มเหลว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การให้สิทธิ์ล้มเหลว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การให้สิทธิ์ล้มเหลว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yetkilendirme başarısız." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yetkilendirme başarısız." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "认证失败。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "认证失败。" } } } }, - "Authorization needs to be retried.": { - "comment": "OCErrorAuthorizationRetry", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Authorization needs to be retried." + "Authorization needs to be retried." : { + "comment" : "OCErrorAuthorizationRetry", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization needs to be retried." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Autorisierung muss erneut versucht werden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Autorisierung muss erneut versucht werden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Authorization needs to be retried." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization needs to be retried." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Authorisation needs to be retried." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorisation needs to be retried." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Authorisation needs to be retried." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorisation needs to be retried." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Es necesario reintentar la autorización." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Es necesario reintentar la autorización." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Authorization needs to be retried." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization needs to be retried." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "다시 인증해주십시오." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다시 인증해주십시오." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Authorization needs to be retried." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization needs to be retried." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization needs to be retried." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization needs to be retried." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization needs to be retried." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization needs to be retried." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A autorização precisa ser tentada novamente. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A autorização precisa ser tentada novamente. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A autorização precisa ser tentada novamente. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization needs to be retried." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Authorization needs to be retried." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A autorização precisa ser tentada novamente. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Authorization needs to be retried." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization needs to be retried." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Që të riprovohet, lypset autorizim." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Që të riprovohet, lypset autorizim." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ลองให้สิทธิ์อีกครั้ง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลองให้สิทธิ์อีกครั้ง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ลองให้สิทธิ์อีกครั้ง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลองให้สิทธิ์อีกครั้ง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yetkilendirmenin yeniden denenmesi gerekiyor." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yetkilendirmenin yeniden denenmesi gerekiyor." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Authorization needs to be retried." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization needs to be retried." } } } }, - "Authorization was cancelled by the user.": { - "comment": "OCErrroAuthorizationCancelled", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Authorization was cancelled by the user." + "Authorization was cancelled by the user." : { + "comment" : "OCErrroAuthorizationCancelled", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization was cancelled by the user." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Anmeldung wurde vom Benutzer abgebrochen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anmeldung wurde vom Benutzer abgebrochen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Authorization was cancelled by the user." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization was cancelled by the user." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Authorisation was cancelled by the user." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorisation was cancelled by the user." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Authorisation was cancelled by the user." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorisation was cancelled by the user." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La autorización fue cancelada por el usuario." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La autorización fue cancelada por el usuario." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "L'autorisation a été annulée par l'utilisateur." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'autorisation a été annulée par l'utilisateur." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "사용자가 승인을 취소했습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자가 승인을 취소했습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Authorization was cancelled by the user." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization was cancelled by the user." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization was cancelled by the user." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization was cancelled by the user." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization was cancelled by the user." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization was cancelled by the user." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization was cancelled by the user." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization was cancelled by the user." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Authorization was cancelled by the user." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization was cancelled by the user." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A autorização foi cancelada pelo usuário." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A autorização foi cancelada pelo usuário." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A autorização foi cancelada pelo usuário." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization was cancelled by the user." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Authorization was cancelled by the user." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A autorização foi cancelada pelo usuário." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Авторизация была отменена пользователем." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Авторизация была отменена пользователем." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Mirëfilltësimi u anulua nga përdoruesi." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mirëfilltësimi u anulua nga përdoruesi." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การอนุญาตถูกยกเลิกแล้วโดยผู้ใช้" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การอนุญาตถูกยกเลิกแล้วโดยผู้ใช้" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การอนุญาตถูกยกเลิกแล้วโดยผู้ใช้" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การอนุญาตถูกยกเลิกแล้วโดยผู้ใช้" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yetkilendirme işlemi kullanıcı tarafından iptal edildi." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yetkilendirme işlemi kullanıcı tarafından iptal edildi." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Authorization was cancelled by the user." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Authorization was cancelled by the user." } } } }, - "Available Offline": { - "comment": "Item policy", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Available Offline" + "Available Offline" : { + "comment" : "Item policy", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Available Offline" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Offline verfügbar" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline verfügbar" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Available Offline" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Available Offline" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Available Offline" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Available Offline" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Available Offline" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Available Offline" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Disponible offline" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disponible offline" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Available Offline" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Available Offline" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "오프라인 사용 가능" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오프라인 사용 가능" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Available Offline" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Available Offline" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Available Offline" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Available Offline" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Available Offline" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Available Offline" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Disponível Offline" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disponível Offline" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Disponível Offline" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Available Offline" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Available Offline" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disponível Offline" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Available Offline" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Available Offline" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "E passhme Jashtë Linje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "E passhme Jashtë Linje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "พร้อมใช้งานแบบออฟไลน์แล้ว" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "พร้อมใช้งานแบบออฟไลน์แล้ว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "พร้อมใช้งานแบบออฟไลน์แล้ว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "พร้อมใช้งานแบบออฟไลน์แล้ว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Çevrimdışı hali mevcut" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çevrimdışı hali mevcut" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Available Offline" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Available Offline" } } } }, - "Between {{min}} and {{max}} {{characterType}}": { - "comment": "OCPasswordPolicyRuleCharacters", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "Between {{min}} and {{max}} {{characterType}}" : { + "comment" : "OCPasswordPolicyRuleCharacters", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Zwischen {{min}} und {{max}} {{characterType}}" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zwischen {{min}} und {{max}} {{characterType}}" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Between {{min}} and {{max}} {{characterType}}" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Between {{min}} and {{max}} {{characterType}}" } } } }, - "Bookmark created with a newer app version. Please update the app.": { - "comment": "OCErrorHostUpdateRequired", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Bookmark created with a newer app version. Please update the app." + "Bookmark created with a newer app version. Please update the app." : { + "comment" : "OCErrorHostUpdateRequired", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bookmark created with a newer app version. Please update the app." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Lesezeichen wurde mit einer neueren App-Version erstellt. Bitte aktualisieren Sie die App." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lesezeichen wurde mit einer neueren App-Version erstellt. Bitte aktualisieren Sie die App." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Bookmark created with a newer app version. Please update the app." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bookmark created with a newer app version. Please update the app." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Bookmark created with a newer app version. Please update the app." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bookmark created with a newer app version. Please update the app." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Bookmark created with a newer app version. Please update the app." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bookmark created with a newer app version. Please update the app." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Marcador creado con una versión más reciente de la aplicación. Actualiza la aplicación." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcador creado con una versión más reciente de la aplicación. Actualiza la aplicación." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Bookmark created with a newer app version. Please update the app." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bookmark created with a newer app version. Please update the app." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "최신 앱 버전에 책갈피가 생성되었습니다. 앱을 업데이트해주십시오." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "최신 앱 버전에 책갈피가 생성되었습니다. 앱을 업데이트해주십시오." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Bookmark created with a newer app version. Please update the app." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bookmark created with a newer app version. Please update the app." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Bookmark created with a newer app version. Please update the app." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bookmark created with a newer app version. Please update the app." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Bookmark created with a newer app version. Please update the app." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bookmark created with a newer app version. Please update the app." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Marcador criado com uma versão mais recente do aplicativo. Atualize o aplicativo. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcador criado com uma versão mais recente do aplicativo. Atualize o aplicativo. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Marcador criado com uma versão mais recente do aplicativo. Atualize o aplicativo. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bookmark created with a newer app version. Please update the app." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Bookmark created with a newer app version. Please update the app." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marcador criado com uma versão mais recente do aplicativo. Atualize o aplicativo. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Bookmark created with a newer app version. Please update the app." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bookmark created with a newer app version. Please update the app." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Faqerojtës i krijuar me një version më të ri të aplikacionit. Ju lutemi, përditësoni aplikacionin." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Faqerojtës i krijuar me një version më të ri të aplikacionit. Ju lutemi, përditësoni aplikacionin." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "สร้างบุ๊กมาร์กด้วยแอปเวอร์ชันใหม่กว่า โปรดอัปเดตแอป" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "สร้างบุ๊กมาร์กด้วยแอปเวอร์ชันใหม่กว่า โปรดอัปเดตแอป" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "สร้างบุ๊กมาร์กด้วยแอปเวอร์ชันใหม่กว่า โปรดอัปเดตแอป" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "สร้างบุ๊กมาร์กด้วยแอปเวอร์ชันใหม่กว่า โปรดอัปเดตแอป" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Daha yeni bir uygulama sürümüyle oluşturulan yer işareti. Lütfen uygulamayı güncelleyin." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Daha yeni bir uygulama sürümüyle oluşturulan yer işareti. Lütfen uygulamayı güncelleyin." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Bookmark created with a newer app version. Please update the app." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bookmark created with a newer app version. Please update the app." } } } }, - "Can't build custom scheme URL from %@.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "Can't build custom scheme URL from %@." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Kann aus %@ keine Custom Scheme URL erstellen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kann aus %@ keine Custom Scheme URL erstellen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Não é possível criar URL de esquema personalizado de %@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível criar URL de esquema personalizado de %@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Não é possível criar URL de esquema personalizado de %@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível criar URL de esquema personalizado de %@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "S’mund të ndërtohet URL skeme vetjake nga %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’mund të ndërtohet URL skeme vetjake nga %@." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Can't build custom scheme URL from %@." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't build custom scheme URL from %@." } } } }, - "Can't open authorization URL with custom scheme.": { - "comment": "OCErrorAuthorizationCantOpenCustomSchemeURL", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "Can't open authorization URL with custom scheme." : { + "comment" : "OCErrorAuthorizationCantOpenCustomSchemeURL", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Kann Authorization URL nicht per Custom Scheme öffnen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kann Authorization URL nicht per Custom Scheme öffnen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorisation URL with custom scheme." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorisation URL with custom scheme." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorisation URL with custom scheme." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorisation URL with custom scheme." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Não é possível abrir o URL de autorização com esquema personalizado." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível abrir o URL de autorização com esquema personalizado." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Não é possível abrir o URL de autorização com esquema personalizado." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível abrir o URL de autorização com esquema personalizado." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "S’mund të hapë URL autorizimi me skemë vetjake." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’mund të hapë URL autorizimi me skemë vetjake." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Can't open authorization URL with custom scheme." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open authorization URL with custom scheme." } } } }, - "Can't open custom scheme URL %@.": { - "comment": "Custom Scheme Browser Sessions", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "Can't open custom scheme URL %@." : { + "comment" : "Custom Scheme Browser Sessions", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Kann Custom Scheme URL %@ nicht öffnen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kann Custom Scheme URL %@ nicht öffnen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Não é possível abrir o URL de esquema personalizado %@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível abrir o URL de esquema personalizado %@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Não é possível abrir o URL de esquema personalizado %@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não é possível abrir o URL de esquema personalizado %@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "S’mund të hapet URL skeme %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’mund të hapet URL skeme %@." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Can't open custom scheme URL %@." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Can't open custom scheme URL %@." } } } }, - "Cancel": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Cancel" + "Cancel" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Abbrechen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abbrechen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Cancel" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Cancel" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Cancel" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Cancelar" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancelar" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Annuler" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Annuler" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "취소" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "취소" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Cancel" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Cancel" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Cancel" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Cancel" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Cancel" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Cancelar" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancelar" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Cancelar" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Cancel" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancelar" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Отмена" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Отмена" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Anuloje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anuloje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ยกเลิก" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยกเลิก" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ยกเลิก" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยกเลิก" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İptal" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İptal" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "取消" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "取消" } } } }, - "Certificate": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "Certificate" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Zertifikat" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zertifikat" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Certificate" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate" } } } }, - "Certificate Date": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Certificate Date" + "Certificate changed" : { + "comment" : "Certificate checks", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate changed" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Zertifikatsdatum" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zertifikat geändert" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Certificate Date" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate changed" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Certificate Date" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate changed" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Certificate Date" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate changed" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Fecha del certificado" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificado cambiado" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Certificate Date" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate changed" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "날짜 인증서" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인증서 변경" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Certificate Date" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate changed" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Certificate Date" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate changed" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Certificate Date" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate changed" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Data do Certificado " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificado alterado " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Data do Certificado " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate changed" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Certificate Date" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificado alterado " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Certificate Date" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate changed" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Datë Dëshmie" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dëshmia ndryshoi" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "วันที่รับรอง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เปลี่ยนใบรับรองแล้ว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "วันที่รับรอง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เปลี่ยนใบรับรองแล้ว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sertifika Tarihi" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sertifika değişti" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Certificate Date" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate changed" } } } }, - "Certificate changed": { - "comment": "Certificate checks", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Certificate changed" + "Certificate Date" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate Date" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zertifikatsdatum" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Zertifikat geändert" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate Date" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Certificate changed" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate Date" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Certificate changed" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate Date" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Certificate changed" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fecha del certificado" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Certificado cambiado" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate Date" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Certificate changed" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "날짜 인증서" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "인증서 변경" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate Date" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Certificate changed" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate Date" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Certificate changed" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate Date" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Certificate changed" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data do Certificado " } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Certificado alterado " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate Date" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Certificado alterado " + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Data do Certificado " } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Certificate changed" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate Date" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Certificate changed" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datë Dëshmie" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Dëshmia ndryshoi" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "วันที่รับรอง" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เปลี่ยนใบรับรองแล้ว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "วันที่รับรอง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เปลี่ยนใบรับรองแล้ว" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sertifika Tarihi" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sertifika değişti" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate Date" + } + } + } + }, + "Certificate for %@ passed validation." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zertifikat für %@ hat die Überprüfung bestanden." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Certificate changed" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificate for %@ passed validation." } } } }, - "Certificate for %@ passed validation.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "Certificates" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Zertifikat für %@ hat die Überprüfung bestanden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zertifikate" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Certificate for %@ passed validation." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Certificates" } } } }, - "Certificates": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "characters" : { + "comment" : "OCPasswordPolicyRule+StandardRules", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Zertifikate" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zeichen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Certificates" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "characters" } } } }, - "Class": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Class" + "Class" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Class" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Klasse" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasse" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Class" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Class" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Class" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Class" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Class" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Class" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Clases" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clases" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Class" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Class" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "클래스" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "클래스" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Class" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Class" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Class" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Class" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Class" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Class" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Classe" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classe" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Classe" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Class" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Class" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Classe" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Class" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Class" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Klasë" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasë" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "หมวดหมู่" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "หมวดหมู่" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "หมวดหมู่" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "หมวดหมู่" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sınıf" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sınıf" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Class" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Class" } } } }, - "Client registration failed.": { - "comment": "OCErrorAuthorizationClientRegistrationFailed", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Client registration failed." + "Client registration failed." : { + "comment" : "OCErrorAuthorizationClientRegistrationFailed", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Client registration failed." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Client-Registrierung ist fehlgeschlagen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Client-Registrierung ist fehlgeschlagen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Client registration failed." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Client registration failed." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Client registration failed." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Client registration failed." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Client registration failed." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Client registration failed." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Falló el registro del cliente." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falló el registro del cliente." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Client registration failed." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Client registration failed." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "클라이언트 등록 실패" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "클라이언트 등록 실패" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Client registration failed." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Client registration failed." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Client registration failed." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Client registration failed." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Client registration failed." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Client registration failed." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O registro do cliente falhou. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O registro do cliente falhou. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O registro do cliente falhou. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Client registration failed." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Client registration failed." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O registro do cliente falhou. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Client registration failed." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Client registration failed." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Dështoi regjistrimi i klientit." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi regjistrimi i klientit." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การลงทะเบียนไคลเอนต์ล้มเหลว" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การลงทะเบียนไคลเอนต์ล้มเหลว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การลงทะเบียนไคลเอนต์ล้มเหลว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การลงทะเบียนไคลเอนต์ล้มเหลว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İstemci kaydı başarısız." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstemci kaydı başarısız." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Client registration failed." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Client registration failed." } } } }, - "Closing vault…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "Closing vault…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Schließe Vault…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Schließe Vault…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Fechando cofre…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fechando cofre…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Fechando cofre…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fechando cofre…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po mbyllet kasaforta…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po mbyllet kasaforta…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Closing vault…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Closing vault…" } } } }, - "Connected": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Connected" + "Connected" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connected" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Verbunden" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verbunden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Connected" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connected" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Connected" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connected" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Connected" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connected" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Conectado" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conectado" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Connecté" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecté" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "연결됨" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "연결됨" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Connected" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connected" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Connected" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connected" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Connected" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connected" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Connected" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connected" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Connected" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connected" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Conectado" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conectado" } }, - "pt-PT": { - "stringUnit": { - "state": "translated", - "value": "Ligado" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ligado" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Conectado" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conectado" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Ligado" + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ligado" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Подключено" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Подключено" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "I lidhur" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "I lidhur" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เชื่อมต่อ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เชื่อมต่อ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เชื่อมต่อ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เชื่อมต่อ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bağlandı" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlandı" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "已连接" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "已连接" } } } }, - "Connecting": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "Connecting" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Verbinde" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verbinde" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Connecting" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting" } } } }, - "Connecting…": { - "comment": "Connection Progress", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Connecting…" + "Connecting…" : { + "comment" : "Connection Progress", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Verbinde…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verbinde…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Connecting…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Connecting…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Connecting…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Connectando..." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connectando..." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "connexion en cours..." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "connexion en cours..." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "연결 중..." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "연결 중..." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Connecting…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting…" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Connecting…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Connecting…" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting…" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Connecting…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Connecting…" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connecting…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Conectando..." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conectando..." } }, - "pt-PT": { - "stringUnit": { - "state": "translated", - "value": "A ligar..." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A ligar..." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Conectando..." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conectando..." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "A ligar..." + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A ligar..." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Соединение…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Соединение…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po lidhet…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po lidhet…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังเชื่อมต่อ..." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังเชื่อมต่อ..." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังเชื่อมต่อ..." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังเชื่อมต่อ..." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bağlanılıyor..." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlanılıyor..." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "正在连接..." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在连接..." } } } }, - "Connection refused": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "Connection refused" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Verbindung abgelehnt" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verbindung abgelehnt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Connection refused" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection refused" } } } }, - "Connection validation failed.": { - "comment": "OCErrorServerConnectionValidationFailed", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Connection validation failed." + "Connection validation failed." : { + "comment" : "OCErrorServerConnectionValidationFailed", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection validation failed." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Verbindungsüberprüfung fehlgeschlagen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verbindungsüberprüfung fehlgeschlagen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Connection validation failed." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection validation failed." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Connection validation failed." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection validation failed." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Connection validation failed." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection validation failed." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La validación de la conexión falló." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La validación de la conexión falló." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Connection validation failed." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection validation failed." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "연결 유효성 검사 실패" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "연결 유효성 검사 실패" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Connection validation failed." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection validation failed." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Connection validation failed." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection validation failed." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Connection validation failed." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection validation failed." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A validação da conexão falhou. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A validação da conexão falhou. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A validação da conexão falhou. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection validation failed." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Connection validation failed." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A validação da conexão falhou. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Connection validation failed." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection validation failed." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Dështoi vlerësimi i lidhjes." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi vlerësimi i lidhjes." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ตรวจสอบการเชื่อมต่อล้มเหลว" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตรวจสอบการเชื่อมต่อล้มเหลว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ตรวจสอบการเชื่อมต่อล้มเหลว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตรวจสอบการเชื่อมต่อล้มเหลว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bağlantı doğrulama başarısız." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlantı doğrulama başarısız." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Connection validation failed." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Connection validation failed." } } } }, - "Construction of URL Session Task failed.": { - "comment": "OCErrorRequestURLSessionTaskConstructionFailed", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Construction of URL Session Task failed." + "Construction of URL Session Task failed." : { + "comment" : "OCErrorRequestURLSessionTaskConstructionFailed", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Construction of URL Session Task failed." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Erstellung des URL-Session-Task ist fehlgeschlagen." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Construction of URL Session Task failed." + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Construction of URL Session Task failed." + } + }, + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Construction of URL Session Task failed." + } + }, + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La construcción de la URL Session Task falló." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La construction de la tâche de session URL a échoué." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL 세션 작업을 구성하지 못했습니다." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Construction of URL Session Task failed." + } + }, + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Construction of URL Session Task failed." + } + }, + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Construction of URL Session Task failed." + } + }, + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Construction of URL Session Task failed." + } + }, + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Construction of URL Session Task failed." + } + }, + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A construção da Tarefa de Sessão de URL falhou." + } + }, + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Construction of URL Session Task failed." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A construção da Tarefa de Sessão de URL falhou." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Erstellung des URL-Session-Task ist fehlgeschlagen." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Формирование задачи ссылочного сеанса не прошло." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Construction of URL Session Task failed." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akti i krijimit të Sesionit URL dështoi." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Construction of URL Session Task failed." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การสร้าง URL งานเซสชันล้มเหลว" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Construction of URL Session Task failed." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การสร้าง URL งานเซสชันล้มเหลว" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La construcción de la URL Session Task falló." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bağlantı Oturum Görevi yapısında hata alındı." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "La construction de la tâche de session URL a échoué." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Construction of URL Session Task failed." + } + } + } + }, + "Contributor" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mitwirkender" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "URL 세션 작업을 구성하지 못했습니다." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Construction of URL Session Task failed." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Construction of URL Session Task failed." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Construction of URL Session Task failed." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Construction of URL Session Task failed." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Construction of URL Session Task failed." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A construção da Tarefa de Sessão de URL falhou." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A construção da Tarefa de Sessão de URL falhou." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Construction of URL Session Task failed." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contribuinte" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Формирование задачи ссылочного сеанса не прошло." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Akti i krijimit të Sesionit URL dështoi." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contribuinte" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การสร้าง URL งานเซสชันล้มเหลว" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การสร้าง URL งานเซสชันล้มเหลว" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontribues" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bağlantı Oturum Görevi yapısında hata alındı." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Construction of URL Session Task failed." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contributor" } } } }, - "Contributor": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "copy" : { + "comment" : "Copies", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "copy" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Mitwirkender" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kopie" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "copy" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "copy" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "copy" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiar" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "copy" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "복사" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "copy" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "copy" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "copy" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Contribuinte" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "copiar" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Contribuinte" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "copy" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "copiar" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "copy" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kontribues" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "kopjoje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คัดลอก" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คัดลอก" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "kopyala" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Contributor" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "copy" } } } }, - "Copying %@ to %@…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Copying %@ to %@…" + "Copying %@ to %@…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copying %@ to %@…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ nach %@ kopieren…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ nach %@ kopieren…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Copying %@ to %@…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copying %@ to %@…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Copying %@ to %@…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copying %@ to %@…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Copying %@ to %@…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copying %@ to %@…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Copiando %@ a %@…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiando %@ a %@…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Copie de %@ vers %@…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copie de %@ vers %@…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@에서 %@으로 복사 중..." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@에서 %@으로 복사 중..." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Copying %@ to %@…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copying %@ to %@…" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Copying %@ to %@…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copying %@ to %@…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Copying %@ to %@…" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copying %@ to %@…" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Copying %@ to %@…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copying %@ to %@…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Copying %@ to %@…" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copying %@ to %@…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Copiando %@ para %@…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiando %@ para %@…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Copiando %@ para %@…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copying %@ to %@…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Copying %@ to %@…" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copiando %@ para %@…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Копирование %@ в %@…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Копирование %@ в %@…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po kopjohet %@ te %@…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po kopjohet %@ te %@…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังคัดลอก %@ ไปยัง %@..." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังคัดลอก %@ ไปยัง %@..." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังคัดลอก %@ ไปยัง %@..." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังคัดลอก %@ ไปยัง %@..." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@öğesi%@ konumuna kopyalanıyor..." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@öğesi%@ konumuna kopyalanıyor..." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "正在复制 %@ 到 %@…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在复制 %@ 到 %@…" } } } }, - "Couldn't copy %@ to %@, because an item called %@ already exists there.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." + "Couldn't copy %@ to %@, because an item called %@ already exists there." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ konnte nicht nach %@ kopiert werden, da dort bereits ein Element namens %@ existiert." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ konnte nicht nach %@ kopiert werden, da dort bereits ein Element namens %@ existiert." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "No se pudo copiar %@ a %@, porque ya existe un elemento llamado %@ en esa ubicación." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo copiar %@ a %@, porque ya existe un elemento llamado %@ en esa ubicación." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Impossible de copier %@ vers %@ , car un élément appelé %@ existe déjà là-bas." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible de copier %@ vers %@ , car un élément appelé %@ existe déjà là-bas." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "항목 %@이(가) 이미 존재하여 %@을(를) %@으로 복사할 수 없습니다 " + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "항목 %@이(가) 이미 존재하여 %@을(를) %@으로 복사할 수 없습니다 " } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Não foi possível copiar %@ para %@,porque um item chamado %@ já existe lá." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível copiar %@ para %@,porque um item chamado %@ já existe lá." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Não foi possível copiar %@ para %@,porque um item chamado %@ já existe lá." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível copiar %@ para %@,porque um item chamado %@ já existe lá." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Не удалось скопировать %@ в %@, потому что элемент под названием %@ там уже существует." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось скопировать %@ в %@, потому что элемент под названием %@ там уже существует." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "S’u kopjua dot %@ te %@, ngaqë atje ka tashmë një objekt të quajtur %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’u kopjua dot %@ te %@, ngaqë atje ka tashmë një objekt të quajtur %@." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถคัดลอก %@ ไปยัง %@ เนื่องจากรายการ %@ ถูกเรียกใช้อยู่" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถคัดลอก %@ ไปยัง %@ เนื่องจากรายการ %@ ถูกเรียกใช้อยู่" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถคัดลอก %@ ไปยัง %@ เนื่องจากรายการ %@ ถูกเรียกใช้อยู่" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถคัดลอก %@ ไปยัง %@ เนื่องจากรายการ %@ ถูกเรียกใช้อยู่" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@, %@ konumuna kopyalanamadı, çünkü %@ öğesi bu konumda mevcut." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@, %@ konumuna kopyalanamadı, çünkü %@ öğesi bu konumda mevcut." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "无法拷贝 %@ 到 %@,因为该处已经存在名为 %@ 的项目。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法拷贝 %@ 到 %@,因为该处已经存在名为 %@ 的项目。" } } } }, - "Couldn't create %@": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "Couldn't create %@" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Konnte %@ nicht erstellen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konnte %@ nicht erstellen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Couldn't create %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't create %@" } } } }, - "Couldn't delete %@": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "Couldn't delete %@" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Konnte %@ nicht löschen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konnte %@ nicht löschen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Couldn't delete %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't delete %@" } } } }, - "Couldn't download %@": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Couldn't download %@" + "Couldn't download %@" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't download %@" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ konnte nicht heruntergeladen werden" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ konnte nicht heruntergeladen werden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Couldn't download %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't download %@" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Couldn't download %@" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't download %@" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Couldn't download %@" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't download %@" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "%@ no se pudo descargar" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ no se pudo descargar" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Couldn't download %@" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't download %@" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@을(를) 다운로드할 수 없습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@을(를) 다운로드할 수 없습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Couldn't download %@" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't download %@" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't download %@" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't download %@" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't download %@" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't download %@" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Não foi possível baixar %@" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível baixar %@" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Não foi possível baixar %@" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't download %@" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Couldn't download %@" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível baixar %@" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Couldn't download %@" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't download %@" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "S’u shkarkua dot %@" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’u shkarkua dot %@" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถดาวน์โหลด %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถดาวน์โหลด %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถดาวน์โหลด %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถดาวน์โหลด %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@ indirilemedi" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ indirilemedi" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Couldn't download %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't download %@" } } } }, - "Couldn't move %@ to %@, because an item called %@ already exists there.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Couldn't move %@ to %@, because an item called %@ already exists there." + "Couldn't move %@ to %@, because an item called %@ already exists there." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ konnte nicht nach %@ verschoben werden, da dort bereits ein Element namens %@ existiert." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ konnte nicht nach %@ verschoben werden, da dort bereits ein Element namens %@ existiert." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Couldn't move %@ to %@, because an item called %@ already exists there." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Couldn't move %@ to %@, because an item called %@ already exists there." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Couldn't move %@ to %@, because an item called %@ already exists there." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "No se pudo mover %@ a %@, porque ya existe un elemento llamado %@ en esa ubicación." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se pudo mover %@ a %@, porque ya existe un elemento llamado %@ en esa ubicación." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Impossible de déplacer %@ à %@, car un élément appelé %@ existe déjà là-bas." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Impossible de déplacer %@ à %@, car un élément appelé %@ existe déjà là-bas." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "항목 %@이(가) 이미 존재하여 %@을(를) %@으로 이동할 수 없습니다 " + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "항목 %@이(가) 이미 존재하여 %@을(를) %@으로 이동할 수 없습니다 " } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Couldn't move %@ to %@, because an item called %@ already exists there." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't move %@ to %@, because an item called %@ already exists there." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't move %@ to %@, because an item called %@ already exists there." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't move %@ to %@, because an item called %@ already exists there." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't move %@ to %@, because an item called %@ already exists there." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Não foi possível mover %@ para %@, porque um item chamado %@ já existe lá." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível mover %@ para %@, porque um item chamado %@ já existe lá." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Não foi possível mover %@ para %@, porque um item chamado %@ já existe lá." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Couldn't move %@ to %@, because an item called %@ already exists there." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível mover %@ para %@, porque um item chamado %@ já existe lá." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Не удалось переместить %@ в %@, потому что элемент под названием %@ уже существует." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось переместить %@ в %@, потому что элемент под названием %@ уже существует." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "S’u kalua dot %@ te %@, ngaqë atje ka tashmë një objekt të quajtur %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’u kalua dot %@ te %@, ngaqë atje ka tashmë një objekt të quajtur %@." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถย้าย %@ ไปยัง %@ เนื่องจากรายการ %@ มีอยู่แล้ว" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถย้าย %@ ไปยัง %@ เนื่องจากรายการ %@ มีอยู่แล้ว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถย้าย %@ ไปยัง %@ เนื่องจากรายการ %@ มีอยู่แล้ว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถย้าย %@ ไปยัง %@ เนื่องจากรายการ %@ มีอยู่แล้ว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@, %@ konumuna taşınamadı, çünkü %@ öğesi bu konumda mevcut." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@, %@ konumuna taşınamadı, çünkü %@ öğesi bu konumda mevcut." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "无法移动 %@ 到 %@,因为该处已经存在名为 %@ 的项目。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "无法移动 %@ 到 %@,因为该处已经存在名为 %@ 的项目。" } } } }, - "Couldn't rename %@ to %@, because another item with that name already exists.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "Couldn't rename %@ to %@, because another item with that name already exists." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ konnte nicht in %@ umbenannt werden, da dort bereits ein Element mit diesem Namen existiert." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ konnte nicht in %@ umbenannt werden, da dort bereits ein Element mit diesem Namen existiert." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Não foi possível renomear %@ para %@ porque já existe outro item com esse nome." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível renomear %@ para %@ porque já existe outro item com esse nome." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Não foi possível renomear %@ para %@ porque já existe outro item com esse nome." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não foi possível renomear %@ para %@ porque já existe outro item com esse nome." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "S’u riemërtua dot %@ në %@, ngaqë ekziston tashmë një tjetër objekt me atë emër." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’u riemërtua dot %@ në %@, ngaqë ekziston tashmë një tjetër objekt me atë emër." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Couldn't rename %@ to %@, because another item with that name already exists." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't rename %@ to %@, because another item with that name already exists." } } } }, - "Couldn't upload %@": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "Couldn't upload %@" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Konnte %@ nicht hochladen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Konnte %@ nicht hochladen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Couldn't upload %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Couldn't upload %@" } } } }, - "Creating folder %@…": { - "comment": "Create folder", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Creating folder %@…" + "Creating folder %@…" : { + "comment" : "Create folder", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating folder %@…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ordner %@ anlegen…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ordner %@ anlegen…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Creating folder %@…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating folder %@…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Creating folder %@…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating folder %@…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Creating folder %@…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating folder %@…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Creando carpeta %@…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creando carpeta %@…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Création du dossier %@…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Création du dossier %@…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@ 폴더 생성 중..." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ 폴더 생성 중..." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Creating folder %@…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating folder %@…" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Creating folder %@…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating folder %@…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Creating folder %@…" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating folder %@…" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Creating folder %@…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating folder %@…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Creating folder %@…" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating folder %@…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Criando a pasta %@…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Criando a pasta %@…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Criando a pasta %@…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating folder %@…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Creating folder %@…" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Criando a pasta %@…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Создание папки %@…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Создание папки %@…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po krijohet dosja %@…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po krijohet dosja %@…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังสร้างโฟลเดอร์ %@..." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังสร้างโฟลเดอร์ %@..." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังสร้างโฟลเดอร์ %@..." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังสร้างโฟลเดอร์ %@..." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@klasörü oluşturuluyor..." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@klasörü oluşturuluyor..." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "正在创建文件夹 %@…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在创建文件夹 %@…" } } } }, - "Creating share for %@…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "Creating share for %@…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Erstelle Freigabe für %@…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erstelle Freigabe für %@…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Creating share for %@…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Creating share for %@…" } } } }, - "Custom": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Custom" + "Custom" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Custom" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Benutzerdefiniert" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benutzerdefiniert" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Custom" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Custom" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Custom" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Custom" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Custom" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Custom" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Custom" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Custom" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "사용자 정의" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 정의" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Custom" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Custom" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Custom" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Custom" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Custom" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Custom" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Personalizadas" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personalizadas" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Personalizadas" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Custom" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Custom" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personalizadas" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Custom" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Custom" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "E përshtatur" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "E përshtatur" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำหนดเอง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำหนดเอง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำหนดเอง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำหนดเอง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Özel" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Özel" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Custom" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Custom" } } } }, - "Database Version": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Database Version" + "Database size" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database size" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Datenbankversion" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datenbankgröße" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Database Version" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database size" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Database Version" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database size" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Database Version" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database size" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Versión de la base de datos" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamaño de la base de datos" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Database Version" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database size" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "데이터베이스 버전" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터베이스 크기" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Database Version" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database size" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Database Version" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database size" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Database Version" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database size" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Versão do Banco de Dados" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamanho do banco de dados " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Versão do Banco de Dados" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database size" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Database Version" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamanho do banco de dados " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Database Version" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database size" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Version Baze të Dhënash" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Madhësi baze të dhënash" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เวอร์ชันฐานข้อมูล" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ขนาดของฐานข้อมูล" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เวอร์ชันฐานข้อมูล" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ขนาดของฐานข้อมูล" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Veritabanı Sürümü" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veritabanı boyutu" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Database Version" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database size" } } } }, - "Database size": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Database size" + "Database upgrade required. Please open the app to perform the upgrade." : { + "comment" : "OCErrorDatabaseMigrationRequired", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database upgrade required. Please open the app to perform the upgrade." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Datenbankgröße" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datenbank-Upgrade erforderlich. Bitte öffnen Sie die App, um das Upgrade durchzuführen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Database size" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database upgrade required. Please open the app to perform the upgrade." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Database size" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database upgrade required. Please open the app to perform the upgrade." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Database size" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database upgrade required. Please open the app to perform the upgrade." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Tamaño de la base de datos" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se requiere actualización de la base de datos. Abra la aplicación para realizar la actualización." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Database size" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database upgrade required. Please open the app to perform the upgrade." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "데이터베이스 크기" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터베이스 업그레이드가 필요합니다. 업그레이드를 하기 위해 앱을 실행해주십시오." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Database size" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database upgrade required. Please open the app to perform the upgrade." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Database size" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database upgrade required. Please open the app to perform the upgrade." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Database size" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database upgrade required. Please open the app to perform the upgrade." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Tamanho do banco de dados " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "É necessário atualizar o banco de dados. Abra o aplicativo para realizar a atualização." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Tamanho do banco de dados " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database upgrade required. Please open the app to perform the upgrade." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Database size" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "É necessário atualizar o banco de dados. Abra o aplicativo para realizar a atualização." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Database size" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database upgrade required. Please open the app to perform the upgrade." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Madhësi baze të dhënash" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lypset përmirësim baze të dhënash. Ju lutemi, hapni aplikacionin që të kryhet përditësimi." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ขนาดของฐานข้อมูล" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "จำเป็นต้องอัปเกรดฐานข้อมูล โปรดเปิดแอปเพื่อทำการอัปเกรด" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ขนาดของฐานข้อมูล" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "จำเป็นต้องอัปเกรดฐานข้อมูล โปรดเปิดแอปเพื่อทำการอัปเกรด" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Veritabanı boyutu" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veritabanı yükseltmesi gerekli. Yükseltmeyi gerçekleştirmek için lütfen uygulamayı açın." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Database size" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database upgrade required. Please open the app to perform the upgrade." } } } }, - "Database upgrade required. Please open the app to perform the upgrade.": { - "comment": "OCErrorDatabaseMigrationRequired", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Database upgrade required. Please open the app to perform the upgrade." + "Database Version" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Version" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Datenbank-Upgrade erforderlich. Bitte öffnen Sie die App, um das Upgrade durchzuführen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datenbankversion" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Database upgrade required. Please open the app to perform the upgrade." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Version" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Database upgrade required. Please open the app to perform the upgrade." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Version" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Database upgrade required. Please open the app to perform the upgrade." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Version" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Se requiere actualización de la base de datos. Abra la aplicación para realizar la actualización." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versión de la base de datos" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Database upgrade required. Please open the app to perform the upgrade." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Version" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "데이터베이스 업그레이드가 필요합니다. 업그레이드를 하기 위해 앱을 실행해주십시오." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터베이스 버전" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Database upgrade required. Please open the app to perform the upgrade." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Version" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Database upgrade required. Please open the app to perform the upgrade." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Version" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Database upgrade required. Please open the app to perform the upgrade." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Version" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "É necessário atualizar o banco de dados. Abra o aplicativo para realizar a atualização." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versão do Banco de Dados" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "É necessário atualizar o banco de dados. Abra o aplicativo para realizar a atualização." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Version" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Database upgrade required. Please open the app to perform the upgrade." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Versão do Banco de Dados" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Database upgrade required. Please open the app to perform the upgrade." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Version" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Lypset përmirësim baze të dhënash. Ju lutemi, hapni aplikacionin që të kryhet përditësimi." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Version Baze të Dhënash" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "จำเป็นต้องอัปเกรดฐานข้อมูล โปรดเปิดแอปเพื่อทำการอัปเกรด" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เวอร์ชันฐานข้อมูล" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "จำเป็นต้องอัปเกรดฐานข้อมูล โปรดเปิดแอปเพื่อทำการอัปเกรด" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เวอร์ชันฐานข้อมูล" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Veritabanı yükseltmesi gerekli. Yükseltmeyi gerçekleştirmek için lütfen uygulamayı açın." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veritabanı Sürümü" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Database upgrade required. Please open the app to perform the upgrade." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Database Version" } } } }, - "Delete": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Delete" + "Delete" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Löschen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Löschen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Delete" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Delete" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Delete" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Eliminar" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Supprimer" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Supprimer" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "삭제" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "삭제" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Delete" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Delete" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Delete" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Delete" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Delete" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Excluir" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Excluir" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Delete" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Удалить" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удалить" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Fshije" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshije" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ลบ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ลบ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sil" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sil" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "删除" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "删除" } } } }, - "Delete Authentication Data": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Delete Authentication Data" + "Delete Authentication Data" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Authentication Data" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Lösche Anmeldedaten" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lösche Anmeldedaten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Delete Authentication Data" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Authentication Data" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Delete Authentication Data" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Authentication Data" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Delete Authentication Data" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Authentication Data" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Eliminar Datos de Autenticación" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar Datos de Autenticación" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Delete Authentication Data" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Authentication Data" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "인증 정보 삭제" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인증 정보 삭제" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Delete Authentication Data" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Authentication Data" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Delete Authentication Data" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Authentication Data" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Delete Authentication Data" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Authentication Data" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Excluir dados de autenticação" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir dados de autenticação" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Excluir dados de autenticação" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Authentication Data" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Delete Authentication Data" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir dados de autenticação" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Delete Authentication Data" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Authentication Data" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Fshi të Dhëna Mirëfilltësimi" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshi të Dhëna Mirëfilltësimi" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ลบข้อมูลการรับรองความถูกต้อง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบข้อมูลการรับรองความถูกต้อง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ลบข้อมูลการรับรองความถูกต้อง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบข้อมูลการรับรองความถูกต้อง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kimlik Doğrulama Verilerini Sil" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kimlik Doğrulama Verilerini Sil" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Delete Authentication Data" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Authentication Data" } } } }, - "Delete Database": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Delete Database" + "Delete Database" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Database" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Datenbank löschen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datenbank löschen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Delete Database" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Database" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Delete Database" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Database" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Delete Database" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Database" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Eliminar base de datos" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar base de datos" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Delete Database" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Database" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "데이터베이스 삭제" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터베이스 삭제" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Delete Database" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Database" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Delete Database" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Database" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Delete Database" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Database" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Excluir Banco de Dados " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir Banco de Dados " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Excluir Banco de Dados " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Database" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Delete Database" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluir Banco de Dados " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Delete Database" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Database" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Fshije Bazën e të Dhënave" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fshije Bazën e të Dhënave" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ลบฐานข้อมูล" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบฐานข้อมูล" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ลบฐานข้อมูล" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบฐานข้อมูล" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Veritabanını Sil" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veritabanını Sil" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Delete Database" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete Database" } } } }, - "Deleting %@…": { - "comment": "Delete", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Deleting %@…" + "Deleting %@…" : { + "comment" : "Delete", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting %@…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ löschen…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ löschen…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Deleting %@…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting %@…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Deleting %@…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting %@…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Deleting %@…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting %@…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Eliminando %@…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminando %@…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Suppression de %@…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suppression de %@…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@ 삭제 중..." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ 삭제 중..." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Deleting %@…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting %@…" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Deleting %@…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting %@…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Deleting %@…" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting %@…" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Deleting %@…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting %@…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Deleting %@…" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting %@…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Excluindo %@…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluindo %@…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Excluindo %@…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting %@…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Deleting %@…" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Excluindo %@…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Удаление %@…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Удаление %@…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po fshihet %@…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po fshihet %@…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังลบ %@..." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังลบ %@..." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังลบ %@..." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังลบ %@..." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@siliniyor..." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@siliniyor..." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "正在删除 %@…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在删除 %@…" } } } }, - "Deleting share for %@…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "Deleting share for %@…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Lösche Freigabe für %@…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lösche Freigabe für %@…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Deleting share for %@…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleting share for %@…" } } } }, - "Deschedule (remove)": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Deschedule (remove)" + "Deschedule (remove)" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschedule (remove)" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ausführung beenden" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschedule (remove)" + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschedule (remove)" + } + }, + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschedule (remove)" + } + }, + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desprogramar (eliminar)" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschedule (remove)" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "예약 취소(삭제)" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschedule (remove)" + } + }, + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschedule (remove)" + } + }, + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschedule (remove)" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ausführung beenden" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desmarcar (remover) " } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Deschedule (remove)" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschedule (remove)" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Deschedule (remove)" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desmarcar (remover) " } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Deschedule (remove)" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschedule (remove)" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Desprogramar (eliminar)" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiqe nga planifikim (hiqe)" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Deschedule (remove)" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบกำหนดการ" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "예약 취소(삭제)" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบกำหนดการ" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Deschedule (remove)" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Planlamayı iptal et (kaldır)" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Deschedule (remove)" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deschedule (remove)" + } + } + } + }, + "digits" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ziffern" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" + } + }, + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Deschedule (remove)" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Desmarcar (remover) " + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Desmarcar (remover) " + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Deschedule (remove)" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Deschedule (remove)" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Hiqe nga planifikim (hiqe)" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ลบกำหนดการ" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ลบกำหนดการ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Planlamayı iptal et (kaldır)" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Deschedule (remove)" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "digits" } } } }, - "Download and preview": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "Download and preview" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Herunterladen und Vorschau" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herunterladen und Vorschau" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Baixar e visualizar" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixar e visualizar" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Baixar e visualizar" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixar e visualizar" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Shkarkojeni dhe bëjini paraparje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shkarkojeni dhe bëjini paraparje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Download and preview" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download and preview" } } } }, - "Download, preview and share": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "Download, preview and share" : { + "extractionState" : "stale", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Herunterladen, Vorschau und Teilen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herunterladen, Vorschau und Teilen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Baixe, visualize e compartilhe" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixe, visualize e compartilhe" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Baixe, visualize e compartilhe" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixe, visualize e compartilhe" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Shkarkojeni, bëjini paraparje dhe ndajeni me të tjerë" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shkarkojeni, bëjini paraparje dhe ndajeni me të tjerë" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Download, preview and share" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Download, preview and share" } } } }, - "Downloading %@…": { - "comment": "Download", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Downloading %@…" + "Downloading %@…" : { + "comment" : "Download", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading %@…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ herunterladen…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ herunterladen…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Downloading %@…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading %@…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Downloading %@…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading %@…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Downloading %@…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading %@…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Descargando %@…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descargando %@…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Téléchargement de %@ …" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Téléchargement de %@ …" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@ 다운로드 중..." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ 다운로드 중..." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Downloading %@…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading %@…" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Downloading %@…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading %@…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Downloading %@…" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading %@…" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Downloading %@…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading %@…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Downloading %@…" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading %@…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Baixando %@…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixando %@…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Baixando %@…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Downloading %@…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Downloading %@…" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Baixando %@…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Скачивание %@…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Скачивание %@…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po shkarkohet %@…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po shkarkohet %@…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังดาวน์โหลด %@..." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังดาวน์โหลด %@..." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังดาวน์โหลด %@..." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังดาวน์โหลด %@..." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@indiriliyor..." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@indiriliyor..." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "正在下载 %@…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在下载 %@…" } } } }, - "Edit, download, preview and share": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "Edit, download, preview and share" : { + "extractionState" : "stale", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Bearbeiten, Herunterladen, Vorschau and Teilen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bearbeiten, Herunterladen, Vorschau and Teilen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Edite, baixe, visualize e compartilhe" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edite, baixe, visualize e compartilhe" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Edite, baixe, visualize e compartilhe" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edite, baixe, visualize e compartilhe" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Përpunoni, shkarkoni, bëni paraparje dhe ndani me të tjerë" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përpunoni, shkarkoni, bëni paraparje dhe ndani me të tjerë" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Edit, download, preview and share" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit, download, preview and share" } } } }, - "Editor": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "Editor" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Bearbeiter" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bearbeiter" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Përpunues" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përpunues" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } } } }, - "Error": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Error" + "Error" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Fehler" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Error" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Error" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Error" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Error" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Erreur" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erreur" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "오류" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오류" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Error" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Error" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Error" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Error" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Error" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Erro" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro" } }, - "pt-PT": { - "stringUnit": { - "state": "translated", - "value": "Erro" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Erro" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Erro" + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Ошибка" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Gabim" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ข้อผิดพลาด" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อผิดพลาด" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ข้อผิดพลาด" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อผิดพลาด" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Hata" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hata" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "错误" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "错误" } } } }, - "Error copying %@": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Error copying %@" + "Error copying %@" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error copying %@" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Fehler beim Kopieren von %@" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Kopieren von %@" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Error copying %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error copying %@" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Error copying %@" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error copying %@" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Error copying %@" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error copying %@" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Error al copiar %@" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al copiar %@" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Erreur de copie %@" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erreur de copie %@" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@ 복사 오류" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ 복사 오류" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Error copying %@" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error copying %@" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Error copying %@" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error copying %@" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Error copying %@" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error copying %@" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Error copying %@" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error copying %@" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Error copying %@" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error copying %@" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Erro ao copiar %@" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao copiar %@" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Erro ao copiar %@" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error copying %@" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Error copying %@" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao copiar %@" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Ошибка при копировании %@" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка при копировании %@" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Gabim teksa kopjohej %@" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim teksa kopjohej %@" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เกิดข้อผิดพลาดขณะคัดลอก %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกิดข้อผิดพลาดขณะคัดลอก %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เกิดข้อผิดพลาดขณะคัดลอก %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกิดข้อผิดพลาดขณะคัดลอก %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@kopyalanırken hata oluştu" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@kopyalanırken hata oluştu" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "拷贝 %@ 错误" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "拷贝 %@ 错误" } } } }, - "Error deleting %@": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "Error deleting %@" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Fehler beim Löschen von %@" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Löschen von %@" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Error deleting %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error deleting %@" } } } }, - "Error moving %@": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Error moving %@" + "Error moving %@" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error moving %@" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Fehler beim Verschieben von %@" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Verschieben von %@" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Error moving %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error moving %@" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Error moving %@" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error moving %@" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Error moving %@" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error moving %@" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Error al mover %@" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error al mover %@" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Erreur lors du déplacement de %@" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erreur lors du déplacement de %@" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@ 이동 오류" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ 이동 오류" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Error moving %@" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error moving %@" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Error moving %@" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error moving %@" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Error moving %@" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error moving %@" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Error moving %@" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error moving %@" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Error moving %@" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error moving %@" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Erro ao mover %@" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao mover %@" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Erro ao mover %@" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error moving %@" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Error moving %@" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao mover %@" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Ошибка при перемещении %@" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка при перемещении %@" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Gabim teksa lëvizej %@" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim teksa lëvizej %@" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เกิดข้อผิดพลาดขณะย้าย %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกิดข้อผิดพลาดขณะย้าย %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เกิดข้อผิดพลาดขณะย้าย %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกิดข้อผิดพลาดขณะย้าย %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@taşınırken hata oluştu" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@taşınırken hata oluştu" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "移动 %@ 错误" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "移动 %@ 错误" } } } }, - "Error renaming %@": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "Error renaming %@" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Fehler bei der Umbenennung von %@" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler bei der Umbenennung von %@" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Erro ao renomear %@" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao renomear %@" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Erro ao renomear %@" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro ao renomear %@" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Gabim në riemërtimin %@" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim në riemërtimin %@" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Error renaming %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error renaming %@" } } } }, - "Error updating %@ metadata": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Error updating %@ metadata" + "Error updating %@ metadata" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error updating %@ metadata" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Fehler beim Aktualisieren von %@ Metadaten" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Aktualisieren von %@ Metadaten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Error updating %@ metadata" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error updating %@ metadata" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Error updating %@ metadata" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error updating %@ metadata" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Error updating %@ metadata" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error updating %@ metadata" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Error actualizando el metadato %@" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error actualizando el metadato %@" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Erreur lors de la mise à jour des %@métadonnées" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erreur lors de la mise à jour des %@métadonnées" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "메타데이터 %@ 업데이트 중 오류 발생" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메타데이터 %@ 업데이트 중 오류 발생" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Error updating %@ metadata" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error updating %@ metadata" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Error updating %@ metadata" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error updating %@ metadata" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Error updating %@ metadata" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error updating %@ metadata" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Error updating %@ metadata" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error updating %@ metadata" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Error updating %@ metadata" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error updating %@ metadata" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Erro atualizando %@ metadados" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro atualizando %@ metadados" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Erro atualizando %@ metadados" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error updating %@ metadata" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Error updating %@ metadata" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro atualizando %@ metadados" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Ошибка при обновлении метаданных %@" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ошибка при обновлении метаданных %@" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Gabim në përditësimin e tejtëdhënave %@" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim në përditësimin e tejtëdhënave %@" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เกิดข้อผิดพลาดขณะอัปเดต metadata %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกิดข้อผิดพลาดขณะอัปเดต metadata %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เกิดข้อผิดพลาดขณะอัปเดต metadata %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เกิดข้อผิดพลาดขณะอัปเดต metadata %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@üstverisini güncelleme sırasında hata alındı" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@üstverisini güncelleme sırasında hata alındı" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "更新 %@ 元数据时出错" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "更新 %@ 元数据时出错" } } } }, - "Error uploading %@": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "Error uploading %@" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Fehler beim Hochladen von %@" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehler beim Hochladen von %@" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Error uploading %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error uploading %@" } } } }, - "Events": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Events" + "Events" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Events" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ereignisse" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ereignisse" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Events" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Events" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Events" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Events" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Events" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Events" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Eventos" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eventos" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Events" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Events" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "이벤트" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이벤트" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Events" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Events" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Events" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Events" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Events" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Events" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Eventos" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eventos" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Eventos" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Events" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Events" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eventos" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Events" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Events" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Akte" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Akte" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เหตุการณ์" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เหตุการณ์" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เหตุการณ์" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เหตุการณ์" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Etkinlikler" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Etkinlikler" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Events" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Events" } } } }, - "Exception occured performing action": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "Exception occured performing action" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ausnahme bei Ausführung der Aktion aufgetreten" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ausnahme bei Ausführung der Aktion aufgetreten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Ocorreu uma exceção ao executar a ação" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocorreu uma exceção ao executar a ação" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Ocorreu uma exceção ao executar a ação" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ocorreu uma exceção ao executar a ação" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ndodhi një përjashtim teksa kryhej veprimi" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndodhi një përjashtim teksa kryhej veprimi" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Exception occured performing action" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exception occured performing action" } } } }, - "Failed": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Failed" + "Failed" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Fehlgeschlagen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehlgeschlagen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Failed" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Failed" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Failed" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Falló" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falló" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Failed" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "실패함" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "실패함" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Failed" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Failed" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Failed" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Falhou" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falhou" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Falhou" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Failed" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falhou" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Failed" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Dështoi" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dështoi" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ล้มเหลว" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ล้มเหลว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ล้มเหลว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ล้มเหลว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Başarısız oldu" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Başarısız oldu" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Failed" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed" } } } }, - "Fetching updates…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Fetching updates…" + "Fetching updates…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching updates…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Updates abrufen…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updates abrufen…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Fetching updates…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching updates…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Fetching updates…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching updates…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Fetching updates…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching updates…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Obteniendo actualizaciones…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obteniendo actualizaciones…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Fetching updates…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching updates…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "업데이트를 가져오는 중..." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "업데이트를 가져오는 중..." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Fetching updates…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching updates…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Fetching updates…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching updates…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Fetching updates…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching updates…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Buscando Atualizações… " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscando Atualizações… " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Buscando Atualizações… " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching updates…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Fetching updates…" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscando Atualizações… " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Fetching updates…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching updates…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po sillen përditësime…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po sillen përditësime…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังเรียกอัปเดตข้อมูล..." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังเรียกอัปเดตข้อมูล..." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังเรียกอัปเดตข้อมูล..." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังเรียกอัปเดตข้อมูล..." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Güncellemeler getiriliyor…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Güncellemeler getiriliyor…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Fetching updates…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching updates…" } } } }, - "Fetching user information…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Fetching user information…" + "Fetching user information…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching user information…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Nutzerinformationen abrufen…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nutzerinformationen abrufen…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Fetching user information…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching user information…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Fetching user information…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching user information…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Fetching user information…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching user information…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Obteniendo información del usuario..." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obteniendo información del usuario..." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Récupération des informations utilisateur..." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Récupération des informations utilisateur..." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "사용자 정보 가져오는 중..." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 정보 가져오는 중..." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Fetching user information…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching user information…" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Fetching user information…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching user information…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Fetching user information…" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching user information…" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Fetching user information…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching user information…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Fetching user information…" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fetching user information…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Buscando informações do usuário..." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscando informações do usuário..." } }, - "pt-PT": { - "stringUnit": { - "state": "translated", - "value": "A obter a informação do utilizador..." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A obter a informação do utilizador..." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Buscando informações do usuário..." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Buscando informações do usuário..." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "A obter a informação do utilizador..." + "pt-PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "A obter a informação do utilizador..." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Получение информации о пользователе…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Получение информации о пользователе…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po sillen hollësi përdoruesi…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po sillen hollësi përdoruesi…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังเรียกข้อมูลผู้ใช้..." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังเรียกข้อมูลผู้ใช้..." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังเรียกข้อมูลผู้ใช้..." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังเรียกข้อมูลผู้ใช้..." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kullanıcı bilgisi alınıyor..." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcı bilgisi alınıyor..." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "正在获取用户信息..." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在获取用户信息..." } } } }, - "File": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "File" + "File" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Datei" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datei" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "File" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "File" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "File" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "File" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "File" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "File" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "File" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "File" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "File" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "File" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "File" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "File" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "File" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "File" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "File" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "File" } } } }, - "File modified locally": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "File modified locally" + "File modified locally" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "File modified locally" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Datei lokal geändert" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datei lokal geändert" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "File modified locally" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "File modified locally" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "File modified locally" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "File modified locally" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "File modified locally" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "File modified locally" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Archivo modificado localmente" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Archivo modificado localmente" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "File modified locally" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "File modified locally" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "로컬에서 수정된 파일" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "로컬에서 수정된 파일" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "File modified locally" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "File modified locally" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "File modified locally" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "File modified locally" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "File modified locally" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "File modified locally" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Arquivo modificado localmente " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arquivo modificado localmente " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Arquivo modificado localmente " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "File modified locally" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "File modified locally" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arquivo modificado localmente " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "File modified locally" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "File modified locally" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kartela u ndryshua lokalisht" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kartela u ndryshua lokalisht" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไฟล์ที่ถูกแก้ไขในเครื่อง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์ที่ถูกแก้ไขในเครื่อง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไฟล์ที่ถูกแก้ไขในเครื่อง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์ที่ถูกแก้ไขในเครื่อง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Dosya yerel olarak değiştirildi" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosya yerel olarak değiştirildi" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "File modified locally" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "File modified locally" } } } }, - "File not found.": { - "comment": "OCErrorFileNotFound", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "File not found." + "File not found." : { + "comment" : "OCErrorFileNotFound", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "File not found." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Datei nicht gefunden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datei nicht gefunden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "File not found." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "File not found." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "File not found." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "File not found." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "File not found." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "File not found." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Archivo no encontrado" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Archivo no encontrado" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Fichier non trouvé." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fichier non trouvé." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "파일을 찾을 수 없음" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일을 찾을 수 없음" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "File not found." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "File not found." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "File not found." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "File not found." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "File not found." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "File not found." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Arquivo não encontrado." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arquivo não encontrado." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Arquivo não encontrado." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "File not found." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "File not found." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arquivo não encontrado." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Файл не найден." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файл не найден." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "S’u gjet kartelë." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’u gjet kartelë." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบไฟล์" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบไฟล์" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบไฟล์" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบไฟล์" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Dosya bulunamadı." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosya bulunamadı." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "文件未找到。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "文件未找到。" } } } }, - "Files": { - "comment": "Diagnostic", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Files" + "Files" : { + "comment" : "Diagnostic", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Dateien" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dateien" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Files" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Files" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Files" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Archivos" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Archivos" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Files" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "파일" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "파일" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Files" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Files" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Files" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Arquivos" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arquivos" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Arquivos" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Files" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arquivos" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Files" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kartela" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kartela" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไฟล์" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไฟล์" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Dosyalar" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosyalar" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Files" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files" } } } }, - "Folders": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Folders" + "Folders" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folders" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ordner" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ordner" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Folders" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folders" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Folders" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folders" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Folders" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folders" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Carpetas" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carpetas" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Folders" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folders" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "폴더" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "폴더" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Folders" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folders" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Folders" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folders" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Folders" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folders" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Pastas" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pastas" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Pastas" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folders" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Folders" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pastas" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Folders" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folders" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Dosje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dosje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "สร้างโฟลเดอร์ใหม่" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "สร้างโฟลเดอร์ใหม่" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "สร้างโฟลเดอร์ใหม่" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "สร้างโฟลเดอร์ใหม่" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Klasörler" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Klasörler" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Folders" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Folders" } } } }, - "Generic graph error.": { - "comment": "OCErrorGraphError", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "Generic graph error." : { + "comment" : "OCErrorGraphError", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Generischer Graph-Fehler." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generischer Graph-Fehler." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Erro gráfico genérico." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro gráfico genérico." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Erro gráfico genérico." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro gráfico genérico." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Gabim elementar grafik." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim elementar grafik." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Generic graph error." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generic graph error." } } } }, - "Identifier": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Identifier" + "Identifier" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identifier" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Kennung" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kennung" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Identifier" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identifier" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Identifier" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identifier" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Identifier" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identifier" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Identificador" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identificador" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Identifier" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identifier" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "식별자" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "식별자" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Identifier" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identifier" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Identifier" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identifier" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Identifier" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identifier" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Identificador " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identificador " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Identificador " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identifier" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Identifier" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identificador " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Identifier" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identifier" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Identifikues" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identifikues" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ระบุ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ระบุ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ระบุ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ระบุ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Tanımlayıcı" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tanımlayıcı" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Identifier" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Identifier" } } } }, - "In progress since": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "In progress since" + "In progress since" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "In progress since" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "In Bearbeitung seit" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "In Bearbeitung seit" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "In progress since" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "In progress since" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "In progress since" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "In progress since" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "In progress since" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "In progress since" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "En curso desde" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "En curso desde" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "In progress since" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "In progress since" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "진행 기간:" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "진행 기간:" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "In progress since" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "In progress since" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "In progress since" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "In progress since" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "In progress since" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "In progress since" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Em andamento desde " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Em andamento desde " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Em andamento desde " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "In progress since" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "In progress since" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Em andamento desde " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "In progress since" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "In progress since" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Në ecuri që prej" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Në ecuri që prej" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "อยู่ระหว่างดำเนินการตั้งแต่" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "อยู่ระหว่างดำเนินการตั้งแต่" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "อยู่ระหว่างดำเนินการตั้งแต่" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "อยู่ระหว่างดำเนินการตั้งแต่" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Şu tarihten beri devam ediyor:" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Şu tarihten beri devam ediyor:" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "In progress since" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "In progress since" } } } }, - "Insecure HTTP URL": { - "comment": "Connection setup", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL" + "Insecure HTTP URL" : { + "comment" : "Connection setup", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Unsichere HTTP-URL" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unsichere HTTP-URL" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "URL HTTP insegura" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL HTTP insegura" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "안전하지 않은 HTTP URL" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "안전하지 않은 HTTP URL" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "HTTP URL Inseguro" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "HTTP URL Inseguro" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "HTTP URL Inseguro" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "HTTP URL Inseguro" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "URL HTTP jo e sigurt" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL HTTP jo e sigurt" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "URL ที่เชื่อมต่อผ่าน HTTP ไม่ปลอดภัย" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ที่เชื่อมต่อผ่าน HTTP ไม่ปลอดภัย" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "URL ที่เชื่อมต่อผ่าน HTTP ไม่ปลอดภัย" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ที่เชื่อมต่อผ่าน HTTP ไม่ปลอดภัย" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Güvensiz HTTP URL" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Güvensiz HTTP URL" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL" } } } }, - "Insecure HTTP URL forbidden": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL forbidden" + "Insecure HTTP URL forbidden" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL forbidden" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Unsichere HTTP-URL nicht zulässig" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unsichere HTTP-URL nicht zulässig" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL forbidden" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL forbidden" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL forbidden" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL forbidden" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL forbidden" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL forbidden" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "URL prohibida, HTTP inseguro" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL prohibida, HTTP inseguro" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL forbidden" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL forbidden" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "안전하지 않은 HTTP URL은 금지됨" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "안전하지 않은 HTTP URL은 금지됨" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL forbidden" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL forbidden" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL forbidden" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL forbidden" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL forbidden" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL forbidden" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "HTTP inseguro URL proibida" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "HTTP inseguro URL proibida" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "HTTP inseguro URL proibida" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL forbidden" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL forbidden" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "HTTP inseguro URL proibida" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL forbidden" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL forbidden" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ndalohen URL-të HTTP jo të sigurta" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndalohen URL-të HTTP jo të sigurta" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ห้ามใช้ URL HTTP ที่ไม่ปลอดภัย" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ห้ามใช้ URL HTTP ที่ไม่ปลอดภัย" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ห้ามใช้ URL HTTP ที่ไม่ปลอดภัย" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ห้ามใช้ URL HTTP ที่ไม่ปลอดภัย" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Güvenli olmayan HTTP URL'si yasak" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Güvenli olmayan HTTP URL'si yasak" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Insecure HTTP URL forbidden" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insecure HTTP URL forbidden" } } } }, - "Insufficient parameters.": { - "comment": "OCErrorInsufficientParameters", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Insufficient parameters." + "Insufficient parameters." : { + "comment" : "OCErrorInsufficientParameters", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient parameters." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Nicht genügend Parameter." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nicht genügend Parameter." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Insufficient parameters." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient parameters." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Insufficient parameters." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient parameters." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Insufficient parameters." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient parameters." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Parámetros insuficientes." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parámetros insuficientes." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Paramètres insuffisants." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paramètres insuffisants." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "매개 변수가 충분하지 않습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "매개 변수가 충분하지 않습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Insufficient parameters." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient parameters." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Insufficient parameters." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient parameters." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Insufficient parameters." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient parameters." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Insufficient parameters." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient parameters." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Insufficient parameters." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient parameters." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Parâmetros insuficientes." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parâmetros insuficientes." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Parâmetros insuficientes." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient parameters." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Insufficient parameters." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parâmetros insuficientes." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Недостаточно параметров." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Недостаточно параметров." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Parametra të pamjaftueshëm" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parametra të pamjaftueshëm" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "พารามิเตอร์ไม่เพียงพอ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "พารามิเตอร์ไม่เพียงพอ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "พารามิเตอร์ไม่เพียงพอ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "พารามิเตอร์ไม่เพียงพอ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yetersiz değişken." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yetersiz değişken." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "缺少参数。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "缺少参数。" } } } }, - "Insufficient permissions": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Insufficient permissions" + "Insufficient permissions" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient permissions" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Unzureichende Dateiberechtigungen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unzureichende Dateiberechtigungen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Insufficient permissions" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient permissions" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Insufficient permissions" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient permissions" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Insufficient permissions" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient permissions" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Permisos insuficientes" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permisos insuficientes" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Permissions insuffisantes" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permissions insuffisantes" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "권한 부족" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "권한 부족" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Insufficient permissions" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient permissions" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Insufficient permissions" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient permissions" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Insufficient permissions" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient permissions" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Insufficient permissions" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient permissions" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Insufficient permissions" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient permissions" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Permissões insuficientes" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permissões insuficientes" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Permissões insuficientes" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Insufficient permissions" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Insufficient permissions" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Permissões insuficientes" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Недостаточно прав доступа" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Недостаточно прав доступа" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Leje të pamjaftueshme" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leje të pamjaftueshme" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "สิทธิ์ไม่เพียงพอ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "สิทธิ์ไม่เพียงพอ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "สิทธิ์ไม่เพียงพอ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "สิทธิ์ไม่เพียงพอ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yetersiz izin" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yetersiz izin" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "权限不足" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "权限不足" } } } }, - "Internal error.": { - "comment": "OCErrorInternal", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Internal error." + "Internal error." : { + "comment" : "OCErrorInternal", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Internal error." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Interner Fehler." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Interner Fehler." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Internal error." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Internal error." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Internal error." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Internal error." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Internal error." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Internal error." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Error interno." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error interno." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Erreur interne." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erreur interne." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "내부 오류" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "내부 오류" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Internal error." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Internal error." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Internal error." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Internal error." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Internal error." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Internal error." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Internal error." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Internal error." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Internal error." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Internal error." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Erro interno." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro interno." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Erro interno." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Internal error." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Internal error." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erro interno." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Внутренняя ошибка." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Внутренняя ошибка." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Gabim i brendshëm." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gabim i brendshëm." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ข้อผิดพลาดภายใน" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อผิดพลาดภายใน" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ข้อผิดพลาดภายใน" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อผิดพลาดภายใน" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Dahili hata." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dahili hata." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "内部错误。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "内部错误。" } } } }, - "Invalid checksum": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Invalid checksum" + "Invalid checksum" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid checksum" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ungültige Prüfsumme" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungültige Prüfsumme" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invalid checksum" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid checksum" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Invalid checksum" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid checksum" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Invalid checksum" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid checksum" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Suma de comprobación no válida" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suma de comprobación no válida" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Invalid checksum" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid checksum" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "체크섬 잘못됨" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "체크섬 잘못됨" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Invalid checksum" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid checksum" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Invalid checksum" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid checksum" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Invalid checksum" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid checksum" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Checksum inválido " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Checksum inválido " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Checksum inválido " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid checksum" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Invalid checksum" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Checksum inválido " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Invalid checksum" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid checksum" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Checksum i pavlefshëm" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Checksum i pavlefshëm" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การตรวจสอบไม่ถูกต้อง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตรวจสอบไม่ถูกต้อง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การตรวจสอบไม่ถูกต้อง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตรวจสอบไม่ถูกต้อง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Geçersiz sağlama toplamı" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geçersiz sağlama toplamı" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Invalid checksum" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid checksum" } } } }, - "Invalid parameter.": { - "comment": "OCErrorInvalidParameter", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "Invalid parameter." : { + "comment" : "OCErrorInvalidParameter", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ungültiger Parameter." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungültiger Parameter." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Parâmetro inválido." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parâmetro inválido." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Parâmetro inválido." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parâmetro inválido." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Parametër i pavlefshëm." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parametër i pavlefshëm." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Geçersiz parametre." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geçersiz parametre." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Invalid parameter." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid parameter." } } } }, - "Invalid rule without minimum and maximum count": { - "comment": "Password Policy", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "Invalid rule without minimum and maximum count" : { + "comment" : "Password Policy", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ungültige Regel ohne Minimal und Maximalanzahl" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungültige Regel ohne Minimal und Maximalanzahl" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Invalid rule without minimum and maximum count" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid rule without minimum and maximum count" } } } }, - "Invalid type.": { - "comment": "OCErrorInvalidType", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "Invalid type." : { + "comment" : "OCErrorInvalidType", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ungültiger Typ." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ungültiger Typ." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Tipo inválido." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo inválido." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Tipo inválido." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo inválido." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Lloj i pavlefshëm." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lloj i pavlefshëm." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Geçersiz tür." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geçersiz tür." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Invalid type." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid type." } } } }, - "Invalidate": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "Invalidate" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Invalidieren" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidieren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Invalidate" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate" } } } }, - "Invalidate Login Data": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Invalidate Login Data" + "Invalidate Login Data" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate Login Data" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Anmeldedaten ungültig machen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anmeldedaten ungültig machen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invalidate Login Data" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate Login Data" } }, - "en-GB": { - "stringUnit": { - "state": "needs_review", - "value": "Invalidate Login Data" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate Login Data" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Invalidate Login Data" + "en-GB" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Invalidate Login Data" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Invalidar datos de inicio de sesión" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidar datos de inicio de sesión" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Invalidate Login Data" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate Login Data" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "잘못된 로그인 데이터" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "잘못된 로그인 데이터" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Invalidate Login Data" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate Login Data" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Invalidate Login Data" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate Login Data" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Invalidate Login Data" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate Login Data" } }, - "pt-BR": { - "stringUnit": { - "state": "needs_review", - "value": "Dados de Login Inválidos " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dados de Login Inválidos " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Dados de Login Inválidos " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate Login Data" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Invalidate Login Data" + "pt-BR" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Dados de Login Inválidos " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Invalidate Login Data" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate Login Data" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Zhvlerëso Hollësi Hyrjeje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zhvlerëso Hollësi Hyrjeje" } }, - "th-TH": { - "stringUnit": { - "state": "needs_review", - "value": "ข้อมูลการเข้าสู่ระบบไม่ถูกต้อง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อมูลการเข้าสู่ระบบไม่ถูกต้อง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ข้อมูลการเข้าสู่ระบบไม่ถูกต้อง" + "th-TH" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "ข้อมูลการเข้าสู่ระบบไม่ถูกต้อง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Giriş Verilerini Geçersiz Kıl" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Giriş Verilerini Geçersiz Kıl" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Invalidate Login Data" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalidate Login Data" } } } }, - "Invited persons": { - "comment": "Share roles", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "Invited persons" : { + "comment" : "Share roles", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Eingeladene Personen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eingeladene Personen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Pessoas convidadas" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pessoas convidadas" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Pessoas convidadas" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pessoas convidadas" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Persona të ftuar" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Persona të ftuar" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Davetli kişiler" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Davetli kişiler" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Invited persons" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invited persons" } } } }, - "Issues were found while validating the certificate for %@.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "Issues were found while validating the certificate for %@." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Bei der Überprüfung des Zertifikats für %@ wurden Probleme gefunden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bei der Überprüfung des Zertifikats für %@ wurden Probleme gefunden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Issues were found while validating the certificate for %@." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Issues were found while validating the certificate for %@." } } } }, - "Item": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Item" + "Item" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Element" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Element" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Item" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Item" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Item" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Item" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Item" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Item" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Item" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Item" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Item" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Item" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Item" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Item" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Item" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Item" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Item" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item" } } } }, - "Item is currently processing.": { - "comment": "OCErrorItemProcessing", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "Item is currently processing." : { + "comment" : "OCErrorItemProcessing", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Element wird gerade verarbeitet." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Element wird gerade verarbeitet." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O item está sendo processado no momento." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O item está sendo processado no momento." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O item está sendo processado no momento." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O item está sendo processado no momento." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Objekti është duke u përpunuar." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekti është duke u përpunuar." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Item is currently processing." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is currently processing." } } } }, - "Item is not a directory.": { - "comment": "OCErrorShareItemNotADirectory", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Item is not a directory." + "Item is not a directory." : { + "comment" : "OCErrorShareItemNotADirectory", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is not a directory." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Element ist kein Verzeichnis." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Element ist kein Verzeichnis." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Item is not a directory." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is not a directory." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Item is not a directory." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is not a directory." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Item is not a directory." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is not a directory." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "El elemento NO es un directorio." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "El elemento NO es un directorio." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Item is not a directory." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is not a directory." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "항목이 디렉터리가 아닙니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "항목이 디렉터리가 아닙니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Item is not a directory." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is not a directory." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Item is not a directory." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is not a directory." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Item is not a directory." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is not a directory." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O item não é um diretório." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O item não é um diretório." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O item não é um diretório." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is not a directory." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Item is not a directory." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O item não é um diretório." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Item is not a directory." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is not a directory." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Objekti s’është një drejtori. " + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekti s’është një drejtori. " } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "รายการไม่ใช่ไดเร็กทอรี" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายการไม่ใช่ไดเร็กทอรี" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "รายการไม่ใช่ไดเร็กทอรี" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายการไม่ใช่ไดเร็กทอรี" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Öge bir dizin değil." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Öge bir dizin değil." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Item is not a directory." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item is not a directory." } } } }, - "Item not available offline.": { - "comment": "OCErrorItemNotAvailableOffline", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Item not available offline." + "Item not available offline." : { + "comment" : "OCErrorItemNotAvailableOffline", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not available offline." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Element nicht offline verfügbar." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Element nicht offline verfügbar." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Item not available offline." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not available offline." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Item not available offline." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not available offline." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Item not available offline." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not available offline." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Elemento no disponible sin conexión." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elemento no disponible sin conexión." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Élément non disponible hors connexion." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Élément non disponible hors connexion." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "항목을 오프라인으로 사용할 수 없음" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "항목을 오프라인으로 사용할 수 없음" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Item not available offline." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not available offline." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Item not available offline." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not available offline." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Item not available offline." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not available offline." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Item não disponível quando desconectado." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item não disponível quando desconectado." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Item não disponível quando desconectado." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not available offline." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Item not available offline." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item não disponível quando desconectado." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Элемент не доступен без сети." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Элемент не доступен без сети." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Objekt i papërdorshëm jashtë linje." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekt i papërdorshëm jashtë linje." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "รายการไม่พร้อมใช้งานในโหมดออฟไลน์" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายการไม่พร้อมใช้งานในโหมดออฟไลน์" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "รายการไม่พร้อมใช้งานในโหมดออฟไลน์" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายการไม่พร้อมใช้งานในโหมดออฟไลน์" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Öge çevrimdışı kullanılamıyor." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Öge çevrimdışı kullanılamıyor." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "项目在离线时不可用。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "项目在离线时不可用。" } } } }, - "Item not found.": { - "comment": "OCErrorShareItemNotFound", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Item not found." + "Item not found." : { + "comment" : "OCErrorShareItemNotFound", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not found." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Element nicht gefunden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Element nicht gefunden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Item not found." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not found." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Item not found." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not found." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Item not found." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not found." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Elemento no encontrado" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elemento no encontrado" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Item not found." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not found." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "항목을 찾을 수 없음" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "항목을 찾을 수 없음" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Item not found." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not found." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Item not found." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not found." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Item not found." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not found." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Item não encontrado." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item não encontrado." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Item não encontrado." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not found." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Item not found." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item não encontrado." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Item not found." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not found." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "S’u gjet objekt." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’u gjet objekt." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบรายการ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบรายการ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบรายการ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบรายการ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Öge bulunamadı" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Öge bulunamadı" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Item not found." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Item not found." } } } }, - "Keep both": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Keep both" + "itemProperty.isFavorite" : { + "comment" : "Item property name (via -localizedNameForProperty:)", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorite" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Beide behalten" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorit" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Keep both" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorite" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Keep both" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favourite" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Keep both" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favourite" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Mantener ambos" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorito" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Keep both" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ajouter aux favoris" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "모두 저장" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "즐겨찾기" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Keep both" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorite" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Keep both" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorite" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Keep both" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorite" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Manter ambos" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorite" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Manter ambos" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorite" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Keep both" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorito" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Keep both" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorite" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Mbaji të dyja" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorito" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เก็บไว้ทั้งสองอย่าง" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "В избранное" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เก็บไว้ทั้งสองอย่าง" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vëre Si të Parapëlqyer" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İkisini de koru" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายการโปรด" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Keep both" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายการโปรด" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Favorilere ekle" + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "收藏" } } } }, - "Lane ID": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "itemProperty.lastModified" : { + "comment" : "Item property name (via -localizedNameForProperty:)", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last modified" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Letzte Änderung" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last modified" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Lane-ID" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last modified" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last modified" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ultima modificación" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dernière modification" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "ID de carril" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "최종 수정됨" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last modified" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "도로 ID" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last modified" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last modified" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last modified" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last modified" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "ID da pista " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Última modificação" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "ID da pista " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last modified" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Última modificação" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Последнее изменение" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "ID Piste" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndryshuar së fundi më" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "แก้ไขครั้งล่าสุด" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "แก้ไขครั้งล่าสุด" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Son değiştirme" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Lane ID" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "最后更改" } } } }, - "Local ID": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "itemProperty.localAttributes" : { + "comment" : "Item property name (via -localizedNameForProperty:)", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local attributes" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Lokale ID" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lokale Eigenschaften" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local attributes" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local attributes" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local attributes" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "ID local" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atributos locales" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attributs locaux" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "로컬 ID" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "로컬 속성" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local attributes" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local attributes" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local attributes" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "ID local " + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local attributes" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "ID local " + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local attributes" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atributos locais" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local attributes" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "ID Vendore" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atributos locais" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Локальные атрибуты" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atribute lokale" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "แอตทริบิวต์ต้นทาง" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Local ID" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "แอตทริบิวต์ต้นทาง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yerel öznitelikler" + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "本地属性" } } } }, - "Localized Description": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Localized Description" + "Keep both" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keep both" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Lokalisierte Beschreibung" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Beide behalten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Localized Description" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keep both" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Localised Description" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keep both" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Localised Description" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keep both" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Descripción localizada" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mantener ambos" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Localized Description" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keep both" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "현지화된 설명" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "모두 저장" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Localized Description" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keep both" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Localized Description" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keep both" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Localized Description" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keep both" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Descrição Localizada " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manter ambos" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Descrição Localizada " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keep both" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Localized Description" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manter ambos" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Localized Description" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keep both" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Përshkrim i Përkthyer" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mbaji të dyja" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "คำอธิบายที่แปลเป็นภาษาท้องถิ่น" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เก็บไว้ทั้งสองอย่าง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "คำอธิบายที่แปลเป็นภาษาท้องถิ่น" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เก็บไว้ทั้งสองอย่าง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yerel Açıklama" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İkisini de koru" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Localized Description" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Keep both" } } } }, - "Lock invalidated.": { - "comment": "OCErrorLockInvalidated", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "Lane ID" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Sperrung invalidiert." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane-ID" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID de carril" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "도로 ID" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Bloqueio invalidado." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID da pista " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Bloqueio invalidado." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID da pista " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kyçja u shfuqizua." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Piste" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Lock invalidated." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lane ID" } } } }, - "Log HTTP requests and responses": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Log HTTP requests and responses" + "Local ID" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "HTTP-Anfragen und Antworten protokollieren" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lokale ID" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Log HTTP requests and responses" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Log HTTP requests and responses" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Log HTTP requests and responses" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Registrar peticiones y respuestas HTTP" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID local" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Log HTTP requests and responses" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "HTTP 요청 및 응답 로그" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "로컬 ID" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Log HTTP requests and responses" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Log HTTP requests and responses" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Log HTTP requests and responses" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Registrar solicitações e respostas HTTP" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID local " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Registrar solicitações e respostas HTTP" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Log HTTP requests and responses" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID local " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Log HTTP requests and responses" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Regjistro kërkesa dhe përgjigje HTTP" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID Vendore" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "บันทึกคำขอและการตอบกลับ HTTP" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "บันทึกคำขอและการตอบกลับ HTTP" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "HTTP isteklerini ve yanıtlarını günlüğe kaydet" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Log HTTP requests and responses" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local ID" } } } }, - "Log file": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Log file" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Protokolldatei" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Log file" + "Localized Description" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Localized Description" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Log file" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lokalisierte Beschreibung" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Log file" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Localized Description" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Archivo de registro" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Localised Description" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Fichier log" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Localised Description" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "로그 파일" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descripción localizada" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Log file" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Localized Description" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Log file" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "현지화된 설명" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Log file" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Localized Description" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Log file" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Localized Description" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Log file" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Localized Description" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Arquivo de Log" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descrição Localizada " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Arquivo de Log" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Localized Description" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Log file" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descrição Localizada " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Файл журнала" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Localized Description" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kartelë regjistër" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përshkrim i Përkthyer" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไฟล์ log" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำอธิบายที่แปลเป็นภาษาท้องถิ่น" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไฟล์ log" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำอธิบายที่แปลเป็นภาษาท้องถิ่น" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Günlük dosyası" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yerel Açıklama" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "日志文件" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Localized Description" } } } }, - "Log internal file operations": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Log internal file operations" + "Lock invalidated." : { + "comment" : "OCErrorLockInvalidated", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Interne Dateioperationen protokollieren" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sperrung invalidiert." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Log internal file operations" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Log internal file operations" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Log internal file operations" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Registrar operaciones de archivos internos" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Log internal file operations" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "내부 파일 작업 로그" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Log internal file operations" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Log internal file operations" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Log internal file operations" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Registrar operações de arquivo interno" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloqueio invalidado." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Registrar operações de arquivo interno" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Log internal file operations" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bloqueio invalidado." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Log internal file operations" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Regjistro veprime të brendshme kartelash" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kyçja u shfuqizua." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Log การทำงานของไฟล์ภายใน" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Log การทำงานของไฟล์ภายใน" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Dahili dosya işlemlerini günlüğe kaydet" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Log internal file operations" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lock invalidated." } } } }, - "Login as user %@ required. Please retry.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Login as user %@ required. Please retry." + "Log file" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log file" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Anmeldung als Benutzer %@ erforderlich. Bitte versuchen Sie es erneut." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Protokolldatei" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Login as user %@ required. Please retry." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log file" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Login as user %@ required. Please retry." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log file" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Login as user %@ required. Please retry." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log file" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Se requiere iniciar sesión como usuario %@. Por favor, inténtalo de nuevo." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Archivo de registro" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Login as user %@ required. Please retry." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fichier log" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "사용자 %@으로 로그인해야 합니다. 다시 시도하십시오." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "로그 파일" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Login as user %@ required. Please retry." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log file" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Login as user %@ required. Please retry." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log file" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Login as user %@ required. Please retry." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log file" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "É necessário fazer login como usuário %@ . Por favor tente novamente." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log file" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "É necessário fazer login como usuário %@ . Por favor tente novamente." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log file" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Login as user %@ required. Please retry." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arquivo de Log" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Login as user %@ required. Please retry." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log file" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Lypset hyrje si përdorues %@. Ju lutemi, riprovoni." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arquivo de Log" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กรุณาเข้าสู่ระบบด้วยฐานะ %@ โปรดลองอีกครั้ง" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Файл журнала" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กรุณาเข้าสู่ระบบด้วยฐานะ %@ โปรดลองอีกครั้ง" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kartelë regjistër" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kullanıcı %@ olarak oturum açın. Lütfen tekrar deneyiniz." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์ log" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Login as user %@ required. Please retry." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไฟล์ log" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Günlük dosyası" + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "日志文件" } } } }, - "Longer than {{byteLength}} bytes in {{encoding}} encoding.": { - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "Log HTTP requests and responses" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log HTTP requests and responses" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "HTTP-Anfragen und Antworten protokollieren" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log HTTP requests and responses" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Länger als {{byteLength}} Bytes in {{encoding}} Encodierung." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log HTTP requests and responses" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log HTTP requests and responses" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registrar peticiones y respuestas HTTP" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log HTTP requests and responses" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "HTTP 요청 및 응답 로그" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log HTTP requests and responses" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log HTTP requests and responses" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log HTTP requests and responses" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registrar solicitações e respostas HTTP" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log HTTP requests and responses" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registrar solicitações e respostas HTTP" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log HTTP requests and responses" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Regjistro kërkesa dhe përgjigje HTTP" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "บันทึกคำขอและการตอบกลับ HTTP" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "บันทึกคำขอและการตอบกลับ HTTP" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "HTTP isteklerini ve yanıtlarını günlüğe kaydet" + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log HTTP requests and responses" } } } }, - "Making %@ available offline also covers %@, which was previously requested as being available offline.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "Log internal file operations" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log internal file operations" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Interne Dateioperationen protokollieren" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log internal file operations" + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log internal file operations" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Durch die Offline-Verfügbarkeit von %1$@ wird auch %2$@ abgedeckt, für das zuvor Offline-Verfügbarkeit angefordert wurde." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log internal file operations" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registrar operaciones de archivos internos" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log internal file operations" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "내부 파일 작업 로그" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log internal file operations" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log internal file operations" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log internal file operations" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registrar operações de arquivo interno" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log internal file operations" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registrar operações de arquivo interno" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log internal file operations" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Regjistro veprime të brendshme kartelash" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log การทำงานของไฟล์ภายใน" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log การทำงานของไฟล์ภายใน" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dahili dosya işlemlerini günlüğe kaydet" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Log internal file operations" } } } }, - "Making %@ available offline also covers %@, whose offline availability has previously been requested.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "Login as user %@ required. Please retry." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Login as user %@ required. Please retry." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Offline-Verfügbarkeit von %1$@ gilt auch für %2$@, dessen Offline-Verfügbarkeit zuvor angefordert wurde." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anmeldung als Benutzer %@ erforderlich. Bitte versuchen Sie es erneut." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Login as user %@ required. Please retry." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Login as user %@ required. Please retry." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Login as user %@ required. Please retry." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Se requiere iniciar sesión como usuario %@. Por favor, inténtalo de nuevo." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Login as user %@ required. Please retry." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 %@으로 로그인해야 합니다. 다시 시도하십시오." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Login as user %@ required. Please retry." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Login as user %@ required. Please retry." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Login as user %@ required. Please retry." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "É necessário fazer login como usuário %@ . Por favor tente novamente." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Login as user %@ required. Please retry." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "É necessário fazer login como usuário %@ . Por favor tente novamente." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Login as user %@ required. Please retry." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lypset hyrje si përdorues %@. Ju lutemi, riprovoni." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กรุณาเข้าสู่ระบบด้วยฐานะ %@ โปรดลองอีกครั้ง" + } + }, + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กรุณาเข้าสู่ระบบด้วยฐานะ %@ โปรดลองอีกครั้ง" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcı %@ olarak oturum açın. Lütfen tekrar deneyiniz." + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Login as user %@ required. Please retry." } } } }, - "Manager": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "Longer than {{byteLength}} bytes in {{encoding}} encoding." : { + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Länger als {{byteLength}} Bytes in {{encoding}} Encodierung." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Gerente" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Gerente" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Përgjegjës" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." + } + } + } + }, + "lower-case characters" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kleinbuchstaben" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yönetici" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Manager" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } - } - } - }, - "Missing Drive ID.": { - "comment": "OCErrorMissingDriveID", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Fehlende Drive ID." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "ID da unidade ausente." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "lower-case characters" + } + } + } + }, + "Making %@ available offline also covers %@, which was previously requested as being available offline." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "ID da unidade ausente." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Durch die Offline-Verfügbarkeit von %1$@ wird auch %2$@ abgedeckt, für das zuvor Offline-Verfügbarkeit angefordert wurde." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Mungon ID Disku." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Missing Drive ID." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } - } - } - }, - "Moving %@ to %@…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Moving %@ to %@…" + }, + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ nach %@ verschieben…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Moving %@ to %@…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Moving %@ to %@…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Moving %@ to %@…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Moviendo %@ a %@…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + } + } + } + }, + "Making %@ available offline also covers %@, whose offline availability has previously been requested." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Déplacer %@ vers %@..." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Offline-Verfügbarkeit von %1$@ gilt auch für %2$@, dessen Offline-Verfügbarkeit zuvor angefordert wurde." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@에서 %@으로 이동 중..." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Moving %@ to %@…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Moving %@ to %@…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Moving %@ to %@…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Moving %@ to %@…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Moving %@ to %@…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Movendo %@ para %@…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Movendo %@ para %@…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Moving %@ to %@…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Перемещение %@ в %@…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po shpihet %@ te %@…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังย้าย %@ ไปยัง %@..." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังย้าย %@ ไปยัง %@..." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@öğesi%@konumuna taşınıyor..." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "正在移动 %@ 到 %@…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } } } }, - "Name": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Name" + "Manager" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Name" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Name" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Name" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Name" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Nombre" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Name" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "이름" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Name" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Name" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Name" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Nome" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gerente" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Nome" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Name" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gerente" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Name" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Emër" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përgjegjës" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ชื่อ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ชื่อ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Ad" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yönetici" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Name" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manager" } } } }, - "Network unavailable": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Network unavailable" + "Missing Drive ID." : { + "comment" : "OCErrorMissingDriveID", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Netzwerk nicht verfügbar" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fehlende Drive ID." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Network unavailable" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Network unavailable" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Network unavailable" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Red no disponible" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Network unavailable" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "네트워크를 사용할 수 없음" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Network unavailable" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Network unavailable" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Network unavailable" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Rede indisponível" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID da unidade ausente." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Rede indisponível" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Network unavailable" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID da unidade ausente." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Network unavailable" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Rrjet i pakapshëm" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mungon ID Disku." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เครือข่ายใช้งานไม่ได้" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เครือข่ายใช้งานไม่ได้" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Ağ kullanılamıyor" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Network unavailable" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing Drive ID." } } } }, - "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests).": { - "comment": "OCErrorCertificateMissing", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." + "Moving %@ to %@…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moving %@ to %@…" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ nach %@ verschieben…" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moving %@ to %@…" + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moving %@ to %@…" + } + }, + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moving %@ to %@…" + } + }, + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moviendo %@ a %@…" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Déplacer %@ vers %@..." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@에서 %@으로 이동 중..." + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moving %@ to %@…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Für eine Anfrage wurde trotz HTTPS-Verbindung kein Zertifikat zurückgegeben (sollte niemals in der Produktion auftreten, sondern nur, wenn Sie vergessen haben, ein Zertifikat bei simulierten Antworten auf HTTPS-Anfragen anzugeben)." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moving %@ to %@…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moving %@ to %@…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moving %@ to %@…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moving %@ to %@…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "No se devolvió ningún certificado para una solicitud a pesar de ser una conexión HTTPS (nunca debería ocurrir en producción, sino solo si se olvidó de proporcionar un certificado durante las respuestas simuladas a las solicitudes HTTPS)." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Movendo %@ para %@…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Aucun certificat n'a été renvoyé pour une demande bien qu'il s'agisse d'une connexion HTTPS (ne devrait jamais se produire en production, mais uniquement si vous avez oublié de fournir un certificat lors des réponses simulées aux demandes HTTPS)." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Moving %@ to %@…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "HTTPS 연결임에도 불구하고 요청에 대한 인증서가 반환되지 않았습니다(운영 환경에서 절대 발생하지 않아야 하지만, HTTPS 요청에 대한 시뮬레이션 응답 중에 인증서를 제공하는 것을 잊은 경우에만 해당)." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Movendo %@ para %@…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Перемещение %@ в %@…" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po shpihet %@ te %@…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังย้าย %@ ไปยัง %@..." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังย้าย %@ ไปยัง %@..." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@öğesi%@konumuna taşınıyor..." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Nenhum certificado foi retornado para uma solicitação, apesar de esta ser uma conexão HTTPS (nunca deve ocorrer em produção, mas somente se você esqueceu de fornecer um certificado durante respostas simuladas a solicitações HTTPS)." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在移动 %@ 到 %@…" + } + } + } + }, + "Name" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name" + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name" + } + }, + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name" + } + }, + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nombre" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Nenhum certificado foi retornado para uma solicitação, apesar de esta ser uma conexão HTTPS (nunca deve ocorrer em produção, mas somente se você esqueceu de fornecer um certificado durante respostas simuladas a solicitações HTTPS)." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이름" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Не смотря на использование соединения HTTPS, для запроса не был получен сертификат (при эксплуатации такого быть не должно, только если вы забыли задать сертификат при симуляции ответа на запрос HTTPS)." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Për një kërkesë s’u kthye dëshmi, edhe pse kjo është lidhje HTTPS (s’duhet të ndodhë kurrë në një sajt real, vetëm nëse harruat të jepnit një dëshmi gjatë përgjigjesh të simuluara për kërkesa HTTPS)." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่มีการส่งคืนใบรับรองสำหรับคำขอแม้ว่าจะเป็นการเชื่อมต่อแบบ HTTPS (คุณอาจจะลืมระบุใบรับรองในระหว่างการตอบกลับคำขอของ HTTPS)" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่มีการส่งคืนใบรับรองสำหรับคำขอแม้ว่าจะเป็นการเชื่อมต่อแบบ HTTPS (คุณอาจจะลืมระบุใบรับรองในระหว่างการตอบกลับคำขอของ HTTPS)" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bir HTTPS bağlantısı olmasına rağmen bir istek için hiçbir sertifika döndürülmedi (Yalnızca HTTPS isteklerine benzetilmiş yanıtlar sırasında bir sertifika vermeyi unuttuysanız olabilir, canlı sunucuda asla gerçekleşmemelidir)." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "没有为 HTTPS 连接的请求返回证书 (这不应在生产环境中发生,除非你在模拟对 HTTPS 请求的响应时忘记提供证书)。" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name" + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emër" + } + }, + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ชื่อ" + } + }, + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ชื่อ" + } + }, + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ad" + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Name" } } } }, - "No data converter available for conversion.": { - "comment": "OCErrorDataConverterUnavailable", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "Network unavailable" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network unavailable" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Kein Datenumwandler für Umwandlung verfügbar." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Netzwerk nicht verfügbar" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network unavailable" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network unavailable" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network unavailable" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Red no disponible" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network unavailable" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "네트워크를 사용할 수 없음" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network unavailable" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network unavailable" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network unavailable" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Nenhum conversor de dados disponível para conversão." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rede indisponível" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Nenhum conversor de dados disponível para conversão." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network unavailable" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rede indisponível" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network unavailable" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "S’ka shndërrues të gatshëm për shndërrimin." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rrjet i pakapshëm" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เครือข่ายใช้งานไม่ได้" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เครือข่ายใช้งานไม่ได้" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ağ kullanılamıyor" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "No data converter available for conversion." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network unavailable" } } } }, - "Not authorized to access shares.": { - "comment": "OCErrorShareUnauthorized:", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Not authorized to access shares." + "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." : { + "comment" : "OCErrorCertificateMissing", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Für eine Anfrage wurde trotz HTTPS-Verbindung kein Zertifikat zurückgegeben (sollte niemals in der Produktion auftreten, sondern nur, wenn Sie vergessen haben, ein Zertifikat bei simulierten Antworten auf HTTPS-Anfragen anzugeben)." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Nicht berechtigt, auf Freigaben zuzugreifen." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Not authorized to access shares." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Not authorised to access shares." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Not authorised to access shares." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se devolvió ningún certificado para una solicitud a pesar de ser una conexión HTTPS (nunca debería ocurrir en producción, sino solo si se olvidó de proporcionar un certificado durante las respuestas simuladas a las solicitudes HTTPS)." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "No esta autorizado a ver los compartidos" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aucun certificat n'a été renvoyé pour une demande bien qu'il s'agisse d'une connexion HTTPS (ne devrait jamais se produire en production, mais uniquement si vous avez oublié de fournir un certificat lors des réponses simulées aux demandes HTTPS)." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Not authorized to access shares." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "HTTPS 연결임에도 불구하고 요청에 대한 인증서가 반환되지 않았습니다(운영 환경에서 절대 발생하지 않아야 하지만, HTTPS 요청에 대한 시뮬레이션 응답 중에 인증서를 제공하는 것을 잊은 경우에만 해당)." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "공유에 접할 수 있는 권한이 없음" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Not authorized to access shares." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Not authorized to access shares." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Not authorized to access shares." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Não autorizado a acessar compartilhamentos." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Não autorizado a acessar compartilhamentos." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhum certificado foi retornado para uma solicitação, apesar de esta ser uma conexão HTTPS (nunca deve ocorrer em produção, mas somente se você esqueceu de fornecer um certificado durante respostas simuladas a solicitações HTTPS)." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Not authorized to access shares." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Not authorized to access shares." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhum certificado foi retornado para uma solicitação, apesar de esta ser uma conexão HTTPS (nunca deve ocorrer em produção, mas somente se você esqueceu de fornecer um certificado durante respostas simuladas a solicitações HTTPS)." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Jo i autorizuar të përdorë pjesën." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не смотря на использование соединения HTTPS, для запроса не был получен сертификат (при эксплуатации такого быть не должно, только если вы забыли задать сертификат при симуляции ответа на запрос HTTPS)." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่ได้รับอนุญาตให้เข้าถึงแชร์" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Për një kërkesë s’u kthye dëshmi, edhe pse kjo është lidhje HTTPS (s’duhet të ndodhë kurrë në një sajt real, vetëm nëse harruat të jepnit një dëshmi gjatë përgjigjesh të simuluara për kërkesa HTTPS)." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่ได้รับอนุญาตให้เข้าถึงแชร์" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่มีการส่งคืนใบรับรองสำหรับคำขอแม้ว่าจะเป็นการเชื่อมต่อแบบ HTTPS (คุณอาจจะลืมระบุใบรับรองในระหว่างการตอบกลับคำขอของ HTTPS)" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Paylaşımlara erişim yetkisi yok." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่มีการส่งคืนใบรับรองสำหรับคำขอแม้ว่าจะเป็นการเชื่อมต่อแบบ HTTPS (คุณอาจจะลืมระบุใบรับรองในระหว่างการตอบกลับคำขอของ HTTPS)" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Not authorized to access shares." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bir HTTPS bağlantısı olmasına rağmen bir istek için hiçbir sertifika döndürülmedi (Yalnızca HTTPS isteklerine benzetilmiş yanıtlar sırasında bir sertifika vermeyi unuttuysanız olabilir, canlı sunucuda asla gerçekleşmemelidir)." + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "没有为 HTTPS 连接的请求返回证书 (这不应在生产环境中发生,除非你在模拟对 HTTPS 请求的响应时忘记提供证书)。" } } } }, - "Not available offline.": { - "comment": "OCErrorNotAvailableOffline", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Not available offline." + "No data converter available for conversion." : { + "comment" : "OCErrorDataConverterUnavailable", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Nicht offline verfügbar." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kein Datenumwandler für Umwandlung verfügbar." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Not available offline." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Not available offline." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Not available offline." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "No disponible sin conexión." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Not available offline." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "오프라인 사용 불가능" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Not available offline." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Not available offline." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Not available offline." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Não disponível quando desconectado. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhum conversor de dados disponível para conversão." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Não disponível quando desconectado. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Not available offline." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nenhum conversor de dados disponível para conversão." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Not available offline." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "S’mund të kihet jashtë interneti." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’ka shndërrues të gatshëm për shndërrimin." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถใช้งานออฟไลน์ได้" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถใช้งานออฟไลน์ได้" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Çevrimdışı kullanılamaz." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Not available offline." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data converter available for conversion." } } } }, - "Not enough space left on the server to upload %@.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Not enough space left on the server to upload %@." + "Not authorized to access shares." : { + "comment" : "OCErrorShareUnauthorized:", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not authorized to access shares." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Nicht genügend Speicherplatz auf dem Server zum Hochladen von %@." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nicht berechtigt, auf Freigaben zuzugreifen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Not enough space left on the server to upload %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not authorized to access shares." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Not enough space left on the server to upload %@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not authorised to access shares." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Not enough space left on the server to upload %@." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not authorised to access shares." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "No queda suficiente espacio en el servidor para cargar %@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "No esta autorizado a ver los compartidos" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Not enough space left on the server to upload %@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not authorized to access shares." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "서버에 남은 공간이 부족하여 %@을(를) 업로드할 수 없습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "공유에 접할 수 있는 권한이 없음" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Not enough space left on the server to upload %@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not authorized to access shares." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Not enough space left on the server to upload %@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not authorized to access shares." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Not enough space left on the server to upload %@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not authorized to access shares." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Não há espaço suficiente no servidor para fazer o envio de %@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não autorizado a acessar compartilhamentos." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Não há espaço suficiente no servidor para fazer o envio de %@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not authorized to access shares." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Not enough space left on the server to upload %@." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não autorizado a acessar compartilhamentos." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Not enough space left on the server to upload %@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not authorized to access shares." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Në shërbyes s’ka mbetur hapësirë e mjaftueshme për të ngarkuar %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jo i autorizuar të përdorë pjesën." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "พื้นที่เหลือบนเซิร์ฟเวอร์ไม่เพียงพอที่จะอัปโหลดไฟล์ %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่ได้รับอนุญาตให้เข้าถึงแชร์" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "พื้นที่เหลือบนเซิร์ฟเวอร์ไม่เพียงพอที่จะอัปโหลดไฟล์ %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่ได้รับอนุญาตให้เข้าถึงแชร์" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@'i yüklemek için sunucuda yeterli alan kalmadı." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paylaşımlara erişim yetkisi yok." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Not enough space left on the server to upload %@." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not authorized to access shares." } } } }, - "OK": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "OK" + "Not available offline." : { + "comment" : "OCErrorNotAvailableOffline", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not available offline." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nicht offline verfügbar." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not available offline." + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not available offline." + } + }, + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not available offline." + } + }, + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "No disponible sin conexión." + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not available offline." + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오프라인 사용 불가능" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not available offline." + } + }, + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not available offline." + } + }, + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not available offline." + } + }, + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não disponível quando desconectado. " + } + }, + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not available offline." + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não disponível quando desconectado. " + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not available offline." + } + }, + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’mund të kihet jashtë interneti." + } + }, + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถใช้งานออฟไลน์ได้" + } + }, + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถใช้งานออฟไลน์ได้" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "OK" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çevrimdışı kullanılamaz." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "OK" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not available offline." + } + } + } + }, + "Not enough space left on the server to upload %@." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not enough space left on the server to upload %@." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "OK" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nicht genügend Speicherplatz auf dem Server zum Hochladen von %@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "OK" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not enough space left on the server to upload %@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Aceptar" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not enough space left on the server to upload %@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "OK" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not enough space left on the server to upload %@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "확인" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "No queda suficiente espacio en el servidor para cargar %@." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "OK" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not enough space left on the server to upload %@." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "OK" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "서버에 남은 공간이 부족하여 %@을(를) 업로드할 수 없습니다." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "OK" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not enough space left on the server to upload %@." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "OK" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not enough space left on the server to upload %@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "OK" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not enough space left on the server to upload %@." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "OK" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não há espaço suficiente no servidor para fazer o envio de %@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "OK" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not enough space left on the server to upload %@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "OK" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Não há espaço suficiente no servidor para fazer o envio de %@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "ОК" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not enough space left on the server to upload %@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "OK" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Në shërbyes s’ka mbetur hapësirë e mjaftueshme për të ngarkuar %@." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ตกลง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "พื้นที่เหลือบนเซิร์ฟเวอร์ไม่เพียงพอที่จะอัปโหลดไฟล์ %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ตกลง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "พื้นที่เหลือบนเซิร์ฟเวอร์ไม่เพียงพอที่จะอัปโหลดไฟล์ %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Tamam" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@'i yüklemek için sunucuda yeterli alan kalmadı." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "确定" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not enough space left on the server to upload %@." } } } }, - "Object does not return DataItemType.": { - "comment": "OCErrorDataItemTypeUnavailable", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "Object does not return DataItemType." : { + "comment" : "OCErrorDataItemTypeUnavailable", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Objekt liefert keinen DataItemType zurück." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekt liefert keinen DataItemType zurück." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O objeto não retorna DataItemType." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O objeto não retorna DataItemType." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O objeto não retorna DataItemType." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O objeto não retorna DataItemType." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Objekti s’përgjigjet me DataItemType." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekti s’përgjigjet me DataItemType." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Object does not return DataItemType." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object does not return DataItemType." } } } }, - "Offline": { - "comment": "Connection status", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Offline" + "Offline" : { + "comment" : "Connection status", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Offline" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Offline" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Offline" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Offline" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Desconectado" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desconectado" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Hors-ligne" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hors-ligne" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "오프라인" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오프라인" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Offline" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Offline" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Offline" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Desconectado" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desconectado" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Desconectado" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Offline" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desconectado" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Нет сети" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нет сети" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Jashtë linje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jashtë linje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ออฟไลน์" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ออฟไลน์" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ออฟไลน์" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ออฟไลน์" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Çevrimdışı" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çevrimdışı" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "离线" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "离线" } } } }, - "Offline (no WiFi connection)": { - "comment": "Connection status", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Offline (no WiFi connection)" + "Offline (no WiFi connection)" : { + "comment" : "Connection status", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline (no WiFi connection)" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline (keine WLAN-Verbindung)" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline (no WiFi connection)" + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline (no WiFi connection)" + } + }, + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline (no WiFi connection)" + } + }, + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desconectado (sin conexión WIFI)" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : " Hors ligne (Aucune connexion Wi-Fi)" + } + }, + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "오프라인 (WiFi 연결 없음)" + } + }, + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline (no WiFi connection)" + } + }, + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline (no WiFi connection)" + } + }, + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline (no WiFi connection)" + } + }, + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desconectado (sem conexão WiFi)" + } + }, + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline (no WiFi connection)" + } + }, + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Desconectado (sem conexão WiFi)" + } + }, + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Нет сети (нет соединения WiFi)" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Offline (keine WLAN-Verbindung)" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Jashtë linje (pa lidhje WiFi)" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Offline (no WiFi connection)" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ออฟไลน์ (ไม่มีการเชื่อมต่อWiFi)" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Offline (no WiFi connection)" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ออฟไลน์ (ไม่มีการเชื่อมต่อWiFi)" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Offline (no WiFi connection)" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çevrimdışı (Kablosuz bağlı değil)" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Desconectado (sin conexión WIFI)" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "离线 (无 WIFI 连接)" + } + } + } + }, + "Offline availability of %@ is already ensured by having made %@ available offline." : { + "comment" : "Available Offline", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Offline-Verfügbarkeit von %1$@ ist bereits dadurch gewährleistet, dass %2$@ offline verfügbar gemacht wurde." + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": " Hors ligne (Aucune connexion Wi-Fi)" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "오프라인 (WiFi 연결 없음)" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Offline (no WiFi connection)" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Offline (no WiFi connection)" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Offline (no WiFi connection)" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Desconectado (sem conexão WiFi)" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Desconectado (sem conexão WiFi)" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Offline (no WiFi connection)" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Нет сети (нет соединения WiFi)" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Jashtë linje (pa lidhje WiFi)" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ออฟไลน์ (ไม่มีการเชื่อมต่อWiFi)" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ออฟไลน์ (ไม่มีการเชื่อมต่อWiFi)" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Çevrimdışı (Kablosuz bağlı değil)" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "离线 (无 WIFI 连接)" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } } } }, - "Offline availability of %@ is already ensured by having made %@ available offline.": { - "comment": "Available Offline", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "OK" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" + } + }, + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Offline-Verfügbarkeit von %1$@ ist bereits dadurch gewährleistet, dass %2$@ offline verfügbar gemacht wurde." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aceptar" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "확인" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "ОК" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "OK" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตกลง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ตกลง" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamam" + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "确定" } } } }, - "Online": { - "comment": "Connection status", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Online" + "Online" : { + "comment" : "Connection status", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Online" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Online" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Online" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Online" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Online" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Online" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Online" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Online" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Online" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Conectado" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conectado" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "En ligne" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "En ligne" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "온라인" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "온라인" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Online" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Online" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Online" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Online" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Online" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Online" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Conectado" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conectado" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Conectado" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Online" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Online" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Conectado" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "В сети" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "В сети" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Në linjë" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Në linjë" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ออนไลน์" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ออนไลน์" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ออนไลน์" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ออนไลน์" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Çevrimiçi" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çevrimiçi" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "在线" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "在线" } } } }, - "Only invited persons have access. Login required.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "Only invited persons have access. Login required." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Nur eingeladene Personen haben Zugang. Anmeldung erforderlich" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nur eingeladene Personen haben Zugang. Anmeldung erforderlich" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Apenas pessoas convidadas têm acesso. Login é necessário." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apenas pessoas convidadas têm acesso. Login é necessário." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Apenas pessoas convidadas têm acesso. Login é necessário." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apenas pessoas convidadas têm acesso. Login é necessário." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Vetëm personat e ftuar kanë hyrje. Lypset të bëhet hyrja." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vetëm personat e ftuar kanë hyrje. Lypset të bëhet hyrja." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Only invited persons have access. Login required." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only invited persons have access. Login required." } } } }, - "Opening vault…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "Opening vault…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Öffne Vault…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Öffne Vault…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Opening vault…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opening vault…" } } } }, - "Operation forbidden": { - "comment": "Move/Rename/Copy", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Operation forbidden" + "Operation forbidden" : { + "comment" : "Move/Rename/Copy", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operation forbidden" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Vorgang nicht zulässig" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vorgang nicht zulässig" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Operation forbidden" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operation forbidden" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Operation forbidden" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operation forbidden" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Operation forbidden" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operation forbidden" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Operación no permitida" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operación no permitida" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Opération interdite" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Opération interdite" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "작업이 금지됨" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "작업이 금지됨" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Operation forbidden" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operation forbidden" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Operation forbidden" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operation forbidden" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Operation forbidden" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operation forbidden" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Operation forbidden" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operation forbidden" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Operation forbidden" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operation forbidden" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Operação proibida" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operação proibida" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Operação proibida" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operation forbidden" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Operation forbidden" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Operação proibida" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Операция запрещена" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Операция запрещена" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Veprim i ndaluar" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veprim i ndaluar" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "หยุดการทำงาน" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "หยุดการทำงาน" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "หยุดการทำงาน" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "หยุดการทำงาน" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İşlem yasak" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İşlem yasak" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "操作被禁止" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "操作被禁止" } } } }, - "Origin Process": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Origin Process" + "Origin Process" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ursprungsprozess" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ursprungsprozess" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Origin Process" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Origin Process" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Origin Process" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Proceso de origen" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceso de origen" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Origin Process" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "출처 처리" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "출처 처리" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Origin Process" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Origin Process" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Origin Process" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Processo de Origem " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Processo de Origem " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Processo de Origem " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Origin Process" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Processo de Origem " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Origin Process" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Proces Origjine" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proces Origjine" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กระบวนการกำเนิด" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กระบวนการกำเนิด" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กระบวนการกำเนิด" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กระบวนการกำเนิด" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Menşe İşlemi" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menşe İşlemi" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Origin Process" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process" } } } }, - "Origin Process Valid": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Origin Process Valid" + "Origin Process Valid" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process Valid" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ursprungsprozess gültig" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ursprungsprozess gültig" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Origin Process Valid" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process Valid" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Origin Process Valid" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process Valid" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Origin Process Valid" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process Valid" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Proceso de origen válido" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceso de origen válido" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Origin Process Valid" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process Valid" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "출처 처리 유효" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "출처 처리 유효" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Origin Process Valid" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process Valid" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Origin Process Valid" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process Valid" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Origin Process Valid" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process Valid" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Processo de origem válido " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Processo de origem válido " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Processo de origem válido " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process Valid" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Origin Process Valid" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Processo de origem válido " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Origin Process Valid" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process Valid" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Proces Origjine i Vlefshëm" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proces Origjine i Vlefshëm" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กระบวนการกำเนิดที่ถูกต้อง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กระบวนการกำเนิดที่ถูกต้อง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กระบวนการกำเนิดที่ถูกต้อง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กระบวนการกำเนิดที่ถูกต้อง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Menşe İşlemi Geçerli" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Menşe İşlemi Geçerli" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Origin Process Valid" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin Process Valid" } } } }, - "Origin URL": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Origin URL" + "Origin URL" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin URL" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ursprungs-URL" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ursprungs-URL" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Origin URL" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin URL" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Origin URL" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin URL" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Origin URL" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin URL" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "URL de origen" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL de origen" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Origin URL" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin URL" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "기존 URL" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "기존 URL" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Origin URL" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin URL" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Origin URL" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin URL" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Origin URL" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin URL" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "URL de origem " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL de origem " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "URL de origem " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin URL" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Origin URL" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL de origem " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Origin URL" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin URL" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "URL Origjine" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL Origjine" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "URL ต้นทาง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ต้นทาง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "URL ต้นทาง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ต้นทาง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kaynak URL" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaynak URL" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Origin URL" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Origin URL" } } } }, - "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy.": { - "comment": "OCErrorItemPolicyMakesRedundant", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." : { + "comment" : "OCErrorItemPolicyMakesRedundant", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Andere gleichartige Richtlinien, die Teilmengen dieser Richtlinie abdecken, werden durch das Hinzufügen dieser Richtlinie überflüssig." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Andere gleichartige Richtlinien, die Teilmengen dieser Richtlinie abdecken, werden durch das Hinzufügen dieser Richtlinie überflüssig." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Otras políticas de artículos del mismo tipo que cubren subconjuntos de esta política de artículos se vuelven redundantes por la adición de esta política de artículos." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Otras políticas de artículos del mismo tipo que cubren subconjuntos de esta política de artículos se vuelven redundantes por la adición de esta política de artículos." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "이 항목 정책의 하위 집합을 포함하는 동일한 종류의 다른 항목 정책은 이 항목 정책을 추가하면 중복됩니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 항목 정책의 하위 집합을 포함하는 동일한 종류의 다른 항목 정책은 이 항목 정책을 추가하면 중복됩니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Outras políticas de itens do mesmo tipo, cobrindo subconjuntos desta política de itens, tornam-se redundantes com a adição desta política de itens. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Outras políticas de itens do mesmo tipo, cobrindo subconjuntos desta política de itens, tornam-se redundantes com a adição desta política de itens. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Outras políticas de itens do mesmo tipo, cobrindo subconjuntos desta política de itens, tornam-se redundantes com a adição desta política de itens. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Outras políticas de itens do mesmo tipo, cobrindo subconjuntos desta política de itens, tornam-se redundantes com a adição desta política de itens. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Të tjera rregulla objektesh të të njëjtit lloj, që përfshijnë nëngrupe të këtij rregulli objektesh, bëhen të përsëritur me shtimin e këtij rregulli objekti." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Të tjera rregulla objektesh të të njëjtit lloj, që përfshijnë nëngrupe të këtij rregulli objektesh, bëhen të përsëritur me shtimin e këtij rregulli objekti." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "นโยบายรายการซ้ำกับนโยบายมีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "นโยบายรายการซ้ำกับนโยบายมีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "นโยบายรายการซ้ำกับนโยบายมีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "นโยบายรายการซ้ำกับนโยบายมีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bu öge politikasının alt kümelerini kapsayan aynı türden diğer öge politikaları, bu öge politikasının eklenmesiyle gereksiz hale gelir." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu öge politikasının alt kümelerini kapsayan aynı türden diğer öge politikaları, bu öge politikasının eklenmesiyle gereksiz hale gelir." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } } } }, - "Overwrite modified file": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "Overwrite modified file" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Überschreibe geänderte Datei" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Überschreibe geänderte Datei" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Overwrite modified file" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Overwrite modified file" } } } }, - "Password can't be converted to {{encoding}}.": { - "comment": "Password Policy", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "Password can't be converted to {{encoding}}." : { + "comment" : "Password Policy", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Passwort kann nicht als {{encoding}} kodiert werden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Passwort kann nicht als {{encoding}} kodiert werden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Password can't be converted to {{encoding}}." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Password can't be converted to {{encoding}}." } } } }, - "Pending": { - "comment": "Sync Record Status", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Pending" + "Pending" : { + "comment" : "Sync Record Status", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pending" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ausstehend" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ausstehend" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Pending" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pending" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Pending" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pending" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Pending" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pending" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Pendiente" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pendiente" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Pending" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pending" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "대기 중" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대기 중" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Pending" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pending" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Pending" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pending" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Pending" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pending" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Pendente" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pendente" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Pendente" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pending" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Pending" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pendente" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Pending" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pending" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Në pritje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Në pritje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "อยู่ระหว่างดำเนินการ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "อยู่ระหว่างดำเนินการ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "อยู่ระหว่างดำเนินการ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "อยู่ระหว่างดำเนินการ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bekliyor" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekliyor" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Pending" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pending" } } } }, - "Personal": { - "comment": "Drives", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "Personal" : { + "comment" : "Drives", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Persönlich" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Persönlich" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "개인" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "개인" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Pessoal" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pessoal" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Pessoal" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pessoal" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Personale" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personale" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ส่วนตัว" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่วนตัว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ส่วนตัว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ส่วนตัว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kişisel" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kişisel" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Personal" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Personal" } } } }, - "Please check if you have sufficient permissions to delete %@.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Please check if you have sufficient permissions to delete %@." + "Please check if you have sufficient permissions to delete %@." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check if you have sufficient permissions to delete %@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Bitte prüfen Sie, ob Sie ausreichend Berechtigungen besitzen, um %@ zu löschen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bitte prüfen Sie, ob Sie ausreichend Berechtigungen besitzen, um %@ zu löschen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Please check if you have sufficient permissions to delete %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check if you have sufficient permissions to delete %@." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Please check if you have sufficient permissions to delete %@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check if you have sufficient permissions to delete %@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Please check if you have sufficient permissions to delete %@." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check if you have sufficient permissions to delete %@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Por favor compruebe si tiene suficientes permisos para eliminar %@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor compruebe si tiene suficientes permisos para eliminar %@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Veuillez vérifier si vous disposez des autorisations suffisantes pour supprimer %@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veuillez vérifier si vous disposez des autorisations suffisantes pour supprimer %@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@을(를) 삭제할 수 있는 권한이 있는지 확인하십시오" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@을(를) 삭제할 수 있는 권한이 있는지 확인하십시오" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Please check if you have sufficient permissions to delete %@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check if you have sufficient permissions to delete %@." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Please check if you have sufficient permissions to delete %@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check if you have sufficient permissions to delete %@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Please check if you have sufficient permissions to delete %@." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check if you have sufficient permissions to delete %@." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Please check if you have sufficient permissions to delete %@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check if you have sufficient permissions to delete %@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Please check if you have sufficient permissions to delete %@." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check if you have sufficient permissions to delete %@." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Por favor, verifique se você tem permissões suficientes para excluir %@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, verifique se você tem permissões suficientes para excluir %@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Por favor, verifique se você tem permissões suficientes para excluir %@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please check if you have sufficient permissions to delete %@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Please check if you have sufficient permissions to delete %@." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Por favor, verifique se você tem permissões suficientes para excluir %@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Пожалуйста, проверьте что у вас есть достаточные права для удаления %@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пожалуйста, проверьте что у вас есть достаточные права для удаления %@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ju lutemi, kontrolloni nëse keni leje të mjaftueshme për të fshirë %@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ju lutemi, kontrolloni nëse keni leje të mjaftueshme për të fshirë %@." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "โปรดตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะลบ %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรดตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะลบ %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "โปรดตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะลบ %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "โปรดตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะลบ %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@ dosyasını silebilmek için erişim yetkisini kontrol edin." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ dosyasını silebilmek için erişim yetkisini kontrol edin." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "请检查你是否有足够权限删除 %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "请检查你是否有足够权限删除 %@" } } } }, - "Populating database…": { - "comment": "Account prepopulation", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "Populating database…" : { + "comment" : "Account prepopulation", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Befülle Datenbank…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Befülle Datenbank…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Preenchendo o banco de dados..." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preenchendo o banco de dados..." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Preenchendo o banco de dados..." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Preenchendo o banco de dados..." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po popullohet baza e të dhënave…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po popullohet baza e të dhënave…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Populating database…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Populating database…" } } } }, - "Previous token refresh attempts indicated an invalid refresh token.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "Previous token refresh attempts indicated an invalid refresh token." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Frühere Token-Aktualisierungsversuche zeigten ein ungültiges Aktualisierungs-Token an." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Frühere Token-Aktualisierungsversuche zeigten ein ungültiges Aktualisierungs-Token an." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Tentativas anteriores de atualização de token indicaram um token de atualização inválido." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tentativas anteriores de atualização de token indicaram um token de atualização inválido." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Tentativas anteriores de atualização de token indicaram um token de atualização inválido." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tentativas anteriores de atualização de token indicaram um token de atualização inválido." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Përpjekje të mëparshme rifreskimi token-i treguan një token të pavlefshëm freskimi." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përpjekje të mëparshme rifreskimi token-i treguan një token të pavlefshëm freskimi." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh token." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh token." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Previous token refresh attempts indicated an invalid refresh_token." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Previous token refresh attempts indicated an invalid refresh_token." } } } }, - "Private link format invalid.": { - "comment": "OCErrorPrivateLinkInvalidFormat", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Private link format invalid." + "Private link format invalid." : { + "comment" : "OCErrorPrivateLinkInvalidFormat", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Private link format invalid." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Format des privaten Links ungültig." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Format des privaten Links ungültig." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Private link format invalid." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Private link format invalid." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Private link format invalid." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Private link format invalid." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Private link format invalid." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Private link format invalid." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "El formato de enlace privado no es válido." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "El formato de enlace privado no es válido." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Private link format invalid." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Private link format invalid." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "잘못된 개인 링크 형식" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "잘못된 개인 링크 형식" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Private link format invalid." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Private link format invalid." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Private link format invalid." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Private link format invalid." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Private link format invalid." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Private link format invalid." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Formato de linque privado inválido. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Formato de linque privado inválido. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Formato de linque privado inválido. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Private link format invalid." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Private link format invalid." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Formato de linque privado inválido. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Private link format invalid." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Private link format invalid." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Format i pavlefshëm lidhjesh private." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Format i pavlefshëm lidhjesh private." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "รูปแบบลิงก์ส่วนตัวไม่ถูกต้อง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รูปแบบลิงก์ส่วนตัวไม่ถูกต้อง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "รูปแบบลิงก์ส่วนตัวไม่ถูกต้อง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รูปแบบลิงก์ส่วนตัวไม่ถูกต้อง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Özel bağlantı biçimi geçersiz." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Özel bağlantı biçimi geçersiz." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Private link format invalid." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Private link format invalid." } } } }, - "Proceed": { - "comment": "Issue resolution choice", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Proceed" + "Proceed" : { + "comment" : "Issue resolution choice", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceed" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Fortfahren" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fortfahren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Proceed" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceed" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Proceed" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceed" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Proceed" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceed" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Proceder" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceder" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Exécuter" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exécuter" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "진행" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "진행" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Proceed" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceed" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Proceed" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceed" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Proceed" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceed" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Proceed" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceed" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Proceed" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceed" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Prosseguir" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosseguir" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Prosseguir" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Proceed" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Proceed" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Prosseguir" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Продолжить" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Продолжить" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Bëje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bëje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ดำเนินการ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ดำเนินการ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ดำเนินการ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ดำเนินการ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Devam et" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Devam et" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "继续" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "继续" } } } }, - "Process Sync Records": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Process Sync Records" + "Process Sync Records" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Process Sync Records" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Sync-Datensätze verarbeiten" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync-Datensätze verarbeiten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Process Sync Records" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Process Sync Records" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Process Sync Records" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Process Sync Records" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Process Sync Records" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Process Sync Records" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Procesar registros de sincronización" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Procesar registros de sincronización" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Process Sync Records" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Process Sync Records" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "프로세스 동기화 기록" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "프로세스 동기화 기록" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Process Sync Records" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Process Sync Records" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Process Sync Records" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Process Sync Records" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Process Sync Records" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Process Sync Records" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Registros de Sincronização de Processo " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registros de Sincronização de Processo " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Registros de Sincronização de Processo " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Process Sync Records" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Process Sync Records" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Registros de Sincronização de Processo " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Process Sync Records" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Process Sync Records" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Process Sync Records" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Process Sync Records" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ประมวลผลบันทึกการซิงค์" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ประมวลผลบันทึกการซิงค์" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ประมวลผลบันทึกการซิงค์" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ประมวลผลบันทึกการซิงค์" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İşlem Senkronizasyonu Kayıtları" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İşlem Senkronizasyonu Kayıtları" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Process Sync Records" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Process Sync Records" } } } }, - "Public upload was disabled by the administrator.": { - "comment": "OCErrorSharePublicUploadDisabled", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Public upload was disabled by the administrator." + "Public upload was disabled by the administrator." : { + "comment" : "OCErrorSharePublicUploadDisabled", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Public upload was disabled by the administrator." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Das öffentliche Hochladen ist durch den Administrator/die Administratorin deaktiviert." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das öffentliche Hochladen ist durch den Administrator/die Administratorin deaktiviert." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Public upload was disabled by the administrator." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Public upload was disabled by the administrator." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Public upload was disabled by the administrator." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Public upload was disabled by the administrator." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Public upload was disabled by the administrator." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Public upload was disabled by the administrator." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La subida pública ha sido deshabilitada por el administrador." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La subida pública ha sido deshabilitada por el administrador." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Public upload was disabled by the administrator." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Public upload was disabled by the administrator." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "관리자에 의해 공개 업로드가 비활성화 되었습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "관리자에 의해 공개 업로드가 비활성화 되었습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Public upload was disabled by the administrator." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Public upload was disabled by the administrator." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Public upload was disabled by the administrator." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Public upload was disabled by the administrator." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Public upload was disabled by the administrator." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Public upload was disabled by the administrator." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O envio de arquivo público foi desativado pelo administrador." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O envio de arquivo público foi desativado pelo administrador." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O envio de arquivo público foi desativado pelo administrador." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Public upload was disabled by the administrator." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Public upload was disabled by the administrator." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O envio de arquivo público foi desativado pelo administrador." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Public upload was disabled by the administrator." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Public upload was disabled by the administrator." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ngarkimi publik është çaktivizuar nga përgjegjësi." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngarkimi publik është çaktivizuar nga përgjegjësi." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การอัปโหลดสาธารณะถูกปิดใช้งานโดยผู้ดูแลระบบ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การอัปโหลดสาธารณะถูกปิดใช้งานโดยผู้ดูแลระบบ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การอัปโหลดสาธารณะถูกปิดใช้งานโดยผู้ดูแลระบบ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การอัปโหลดสาธารณะถูกปิดใช้งานโดยผู้ดูแลระบบ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Herkese açık yükleme, yönetici tarafından devre dışı bırakıldı." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Herkese açık yükleme, yönetici tarafından devre dışı bırakıldı." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Public upload was disabled by the administrator." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Public upload was disabled by the administrator." } } } }, - "Recipients can upload but existing contents are not revealed.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "Recipients can upload but existing contents are not revealed." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Empfangende können hochladen, aber existierende Inhalte werden nicht angezeigt." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Empfangende können hochladen, aber existierende Inhalte werden nicht angezeigt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Os destinatários podem fazer upload, mas os conteúdos existentes não são revelados." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os destinatários podem fazer upload, mas os conteúdos existentes não são revelados." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Os destinatários podem fazer upload, mas os conteúdos existentes não são revelados." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os destinatários podem fazer upload, mas os conteúdos existentes não são revelados." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Marrësit mund të ngarkojnë, por lënda ekzistuese nuk shfaqet." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marrësit mund të ngarkojnë, por lënda ekzistuese nuk shfaqet." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Recipients can upload but existing contents are not revealed." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can upload but existing contents are not revealed." } } } }, - "Recipients can view and download contents.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "Recipients can view and download contents." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Empfangende können Inhalte sehen und herunterladen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Empfangende können Inhalte sehen und herunterladen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Os destinatários podem visualizar e baixar o conteúdo." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os destinatários podem visualizar e baixar o conteúdo." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Os destinatários podem visualizar e baixar o conteúdo." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os destinatários podem visualizar e baixar o conteúdo." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Marrësit mund të shohin dhe shkarkojnë lëndë." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marrësit mund të shohin dhe shkarkojnë lëndë." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view and download contents." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view and download contents." } } } }, - "Recipients can view, download and edit contents.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and edit contents." + "Recipients can view, download and edit contents." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and edit contents." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Empfangende können Inhalte einsehen, herunterladen und bearbeiten." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Empfangende können Inhalte einsehen, herunterladen und bearbeiten." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and edit contents." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and edit contents." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and edit contents." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and edit contents." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and edit contents." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and edit contents." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Los recipientes pueden ver, descargar y editar el contenido." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los recipientes pueden ver, descargar y editar el contenido." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and edit contents." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and edit contents." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "받는 사람은 콘텐츠를 조회, 다운로드 및 편집할 수 있습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "받는 사람은 콘텐츠를 조회, 다운로드 및 편집할 수 있습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and edit contents." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and edit contents." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and edit contents." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and edit contents." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and edit contents." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and edit contents." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Os destinatários podem visualizar, baixar e editar o conteúdo." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os destinatários podem visualizar, baixar e editar o conteúdo." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Os destinatários podem visualizar, baixar e editar o conteúdo." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and edit contents." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and edit contents." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os destinatários podem visualizar, baixar e editar o conteúdo." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and edit contents." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and edit contents." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Marrësit mund të shohin, shkarkojnë dhe përpunojnë lëndë." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marrësit mund të shohin, shkarkojnë dhe përpunojnë lëndë." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ผู้รับสามารถดู ดาวน์โหลด และแก้ไขเนื้อหา" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ผู้รับสามารถดู ดาวน์โหลด และแก้ไขเนื้อหา" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ผู้รับสามารถดู ดาวน์โหลด และแก้ไขเนื้อหา" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ผู้รับสามารถดู ดาวน์โหลด และแก้ไขเนื้อหา" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Alıcılar içeriği görüntüleyebilir, indirebilir ve düzenleyebilir." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alıcılar içeriği görüntüleyebilir, indirebilir ve düzenleyebilir." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and edit contents." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and edit contents." } } } }, - "Recipients can view, download and upload contents.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and upload contents." + "Recipients can view, download and upload contents." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and upload contents." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Empfangende können Inhalte sehen, herunterladen und hochladen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Empfangende können Inhalte sehen, herunterladen und hochladen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and upload contents." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and upload contents." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and upload contents." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and upload contents." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and upload contents." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and upload contents." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Los recipientes pueden ver, descargar y subir el contenido." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Los recipientes pueden ver, descargar y subir el contenido." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and upload contents." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and upload contents." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "받는 사람은 콘텐츠를 조회, 다운로드, 업로드할 수 있습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "받는 사람은 콘텐츠를 조회, 다운로드, 업로드할 수 있습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and upload contents." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and upload contents." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and upload contents." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and upload contents." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and upload contents." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and upload contents." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Os destinatários podem visualizar, baixar e fazer upload de conteúdo." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os destinatários podem visualizar, baixar e fazer upload de conteúdo." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Os destinatários podem visualizar, baixar e fazer upload de conteúdo." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and upload contents." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and upload contents." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os destinatários podem visualizar, baixar e fazer upload de conteúdo." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and upload contents." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and upload contents." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Marrësit mund të shohin, shkarkojnë dhe ngarkojnë lëndë." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marrësit mund të shohin, shkarkojnë dhe ngarkojnë lëndë." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ผู้รับสามารถดู ดาวน์โหลด และอัปโหลดเนื้อหา" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ผู้รับสามารถดู ดาวน์โหลด และอัปโหลดเนื้อหา" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ผู้รับสามารถดู ดาวน์โหลด และอัปโหลดเนื้อหา" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ผู้รับสามารถดู ดาวน์โหลด และอัปโหลดเนื้อหา" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Alıcılar içeriği görüntüleyebilir, indirebilir ve karşı tarafa yükleyebilir." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alıcılar içeriği görüntüleyebilir, indirebilir ve karşı tarafa yükleyebilir." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download and upload contents." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download and upload contents." } } } }, - "Recipients can view, download, edit, delete and upload contents.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download, edit, delete and upload contents." + "Recipients can view, download, edit, delete and upload contents." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download, edit, delete and upload contents." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Empfangende können Inhalte sehen, herunterladen, ändern, löschen und hochladen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Empfangende können Inhalte sehen, herunterladen, ändern, löschen und hochladen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download, edit, delete and upload contents." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download, edit, delete and upload contents." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download, edit, delete and upload contents." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download, edit, delete and upload contents." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download, edit, delete and upload contents." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download, edit, delete and upload contents." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Destinatarios pueden ver, descargar, editar, borrar y subir contenido." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Destinatarios pueden ver, descargar, editar, borrar y subir contenido." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download, edit, delete and upload contents." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download, edit, delete and upload contents." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "받는 사람은 컨텐츠를 조회, 다운로드, 편집, 삭제, 업로드할 수 있습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "받는 사람은 컨텐츠를 조회, 다운로드, 편집, 삭제, 업로드할 수 있습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download, edit, delete and upload contents." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download, edit, delete and upload contents." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download, edit, delete and upload contents." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download, edit, delete and upload contents." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download, edit, delete and upload contents." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download, edit, delete and upload contents." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Os destinatários podem visualizar, baixar, editar, excluir e enviar conteúdos." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os destinatários podem visualizar, baixar, editar, excluir e enviar conteúdos." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Os destinatários podem visualizar, baixar, editar, excluir e enviar conteúdos." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download, edit, delete and upload contents." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download, edit, delete and upload contents." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os destinatários podem visualizar, baixar, editar, excluir e enviar conteúdos." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download, edit, delete and upload contents." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download, edit, delete and upload contents." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Marrësit mund të shohin shkarkojnë, përpunojnë, fshijnë dhe ngarkojnë lëndë." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marrësit mund të shohin shkarkojnë, përpunojnë, fshijnë dhe ngarkojnë lëndë." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ผู้รับสามารถดู ดาวน์โหลด แก้ไข ลบและอัปโหลดเนื้อหา" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ผู้รับสามารถดู ดาวน์โหลด แก้ไข ลบและอัปโหลดเนื้อหา" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ผู้รับสามารถดู ดาวน์โหลด แก้ไข ลบและอัปโหลดเนื้อหา" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ผู้รับสามารถดู ดาวน์โหลด แก้ไข ลบและอัปโหลดเนื้อหา" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Alıcılar içerik görüntüleyebilir, düzenleyebilir, silebilir ve karşı tarafa yükleyebilir." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Alıcılar içerik görüntüleyebilir, düzenleyebilir, silebilir ve karşı tarafa yükleyebilir." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Recipients can view, download, edit, delete and upload contents." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recipients can view, download, edit, delete and upload contents." } } } }, - "Redirection": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "Redirection" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Umleitung" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Umleitung" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Redirection" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection" } } } }, - "Rejecting share…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "Rejecting share…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Weise Freigabe ab…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Weise Freigabe ab…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Rejecting share…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Rejecting share…" } } } }, - "Remove Database Version": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Remove Database Version" + "Remove Database Version" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Database Version" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Datenbankversion entfernen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Datenbankversion entfernen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Remove Database Version" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Database Version" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Remove Database Version" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Database Version" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Remove Database Version" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Database Version" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Eliminar la versión de la base de datos" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Eliminar la versión de la base de datos" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Remove Database Version" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Database Version" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "데이터베이스 버전 삭제" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터베이스 버전 삭제" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Remove Database Version" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Database Version" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Remove Database Version" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Database Version" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Remove Database Version" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Database Version" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Remover Versão do Banco de Dados " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover Versão do Banco de Dados " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Remover Versão do Banco de Dados " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Database Version" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Remove Database Version" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remover Versão do Banco de Dados " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Remove Database Version" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Database Version" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Hiq Version Baze të Dhënash" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hiq Version Baze të Dhënash" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ลบเวอร์ชันฐานข้อมูล" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบเวอร์ชันฐานข้อมูล" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ลบเวอร์ชันฐานข้อมูล" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลบเวอร์ชันฐานข้อมูล" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Veritabanı Sürümünü Kaldır" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veritabanı Sürümünü Kaldır" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Remove Database Version" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove Database Version" } } } }, - "Removed Items": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Removed Items" + "Removed Items" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removed Items" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Entfernte Elemente" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entfernte Elemente" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Removed Items" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removed Items" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Removed Items" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removed Items" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Removed Items" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removed Items" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Artículos eliminados" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Artículos eliminados" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Removed Items" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removed Items" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "삭제된 항목" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "삭제된 항목" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Removed Items" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removed Items" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Removed Items" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removed Items" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Removed Items" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removed Items" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Itens Removidos " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itens Removidos " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Itens Removidos " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removed Items" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Removed Items" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Itens Removidos " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Removed Items" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removed Items" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Objekte të Hequr" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekte të Hequr" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "รายการถูกลบแล้ว" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายการถูกลบแล้ว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "รายการถูกลบแล้ว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายการถูกลบแล้ว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kaldırılan Ögeler" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaldırılan Ögeler" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Removed Items" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removed Items" } } } }, - "Removing local copy of %@…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "Removing local copy of %@…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Entferne lokale Kopie von %@…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entferne lokale Kopie von %@…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Removing local copy of %@…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing local copy of %@…" } } } }, - "Renaming %@ to %@…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Renaming %@ to %@…" + "Renaming %@ to %@…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renaming %@ to %@…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "%@ in %@ umbenennen…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ in %@ umbenennen…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Renaming %@ to %@…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renaming %@ to %@…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Renaming %@ to %@…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renaming %@ to %@…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Renaming %@ to %@…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renaming %@ to %@…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Renombrando %@ por %@…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renombrando %@ por %@…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Renommer %@ en %@…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renommer %@ en %@…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@에서 %@으로 이름 변경 중..." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@에서 %@으로 이름 변경 중..." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Renaming %@ to %@…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renaming %@ to %@…" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Renaming %@ to %@…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renaming %@ to %@…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Renaming %@ to %@…" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renaming %@ to %@…" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Renaming %@ to %@…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renaming %@ to %@…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Renaming %@ to %@…" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renaming %@ to %@…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Renomeando %@ para %@…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renomeando %@ para %@…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Renomeando %@ para %@…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renaming %@ to %@…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Renaming %@ to %@…" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Renomeando %@ para %@…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Переименование %@ в %@…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Переименование %@ в %@…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po riemërtohet %@ si %@…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po riemërtohet %@ si %@…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังเปลี่ยนชื่อ %@ เป็น %@..." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังเปลี่ยนชื่อ %@ เป็น %@..." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังเปลี่ยนชื่อ %@ เป็น %@..." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังเปลี่ยนชื่อ %@ เป็น %@..." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@öğesi %@olarak isimlendiriliyor..." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@öğesi %@olarak isimlendiriliyor..." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "正在重命名 %@ 为 %@…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在重命名 %@ 为 %@…" } } } }, - "Replace": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Replace" + "Replace" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Replace" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ersetzen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ersetzen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Replace" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Replace" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Replace" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Replace" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Replace" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Replace" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Reemplazar" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reemplazar" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Replace" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Replace" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "바꾸기" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "바꾸기" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Replace" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Replace" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Replace" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Replace" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Replace" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Replace" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Substituir " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Substituir " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Substituir " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Replace" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Replace" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Substituir " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Replace" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Replace" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Zëvendësoje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zëvendësoje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "แทนที่" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "แทนที่" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "แทนที่" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "แทนที่" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yer değiştir" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yer değiştir" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Replace" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Replace" } } } }, - "Request completed with error.": { - "comment": "OCErrorRequestCompletedWithError", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Request completed with error." + "Request completed with error." : { + "comment" : "OCErrorRequestCompletedWithError", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request completed with error." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Anfrage mit Fehler abgeschlossen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anfrage mit Fehler abgeschlossen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Request completed with error." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request completed with error." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Request completed with error." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request completed with error." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Request completed with error." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request completed with error." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Solicitud completada con error." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitud completada con error." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Demande terminée avec une erreur." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Demande terminée avec une erreur." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "요청이 오류와 함께 완료되었습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "요청이 오류와 함께 완료되었습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Request completed with error." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request completed with error." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Request completed with error." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request completed with error." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Request completed with error." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request completed with error." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Request completed with error." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request completed with error." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Request completed with error." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request completed with error." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Solicitação concluída com erro." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitação concluída com erro." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Solicitação concluída com erro." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request completed with error." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Request completed with error." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitação concluída com erro." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Запрос завершился с ошибкой." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрос завершился с ошибкой." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kërkesa u plotësua me gabim." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërkesa u plotësua me gabim." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "คำขอเสร็จสิ้นแต่มีข้อผิดพลาดเกิดขึ้น" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำขอเสร็จสิ้นแต่มีข้อผิดพลาดเกิดขึ้น" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "คำขอเสร็จสิ้นแต่มีข้อผิดพลาดเกิดขึ้น" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำขอเสร็จสิ้นแต่มีข้อผิดพลาดเกิดขึ้น" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İstek bir hata ile sonlandı." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstek bir hata ile sonlandı." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Request completed with error." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request completed with error." } } } }, - "Request couldn't be scheduled because the underlying URL session has been invalidated.": { - "comment": "OCErrorRequestURLSessionInvalidated", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." + "Request couldn't be scheduled because the underlying URL session has been invalidated." : { + "comment" : "OCErrorRequestURLSessionInvalidated", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Anforderung konnte nicht geplant werden, da die zugrundeliegende URL-Sitzung ungültig gemacht wurde." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Anforderung konnte nicht geplant werden, da die zugrundeliegende URL-Sitzung ungültig gemacht wurde." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La solicitud no se pudo programar porque la sesión de URL subyacente se ha invalidado." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La solicitud no se pudo programar porque la sesión de URL subyacente se ha invalidado." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "La demande n'a pas pu être planifiée car la session URL sous-jacente a été invalidé." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La demande n'a pas pu être planifiée car la session URL sous-jacente a été invalidé." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "기본 URL 세션이 무효화되었기 때문에 요청을 예약할 수 없습니다" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "기본 URL 세션이 무효화되었기 때문에 요청을 예약할 수 없습니다" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A solicitação não pôde ser agendada porque a sessão de URL subjacente foi invalidada." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A solicitação não pôde ser agendada porque a sessão de URL subjacente foi invalidada." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A solicitação não pôde ser agendada porque a sessão de URL subjacente foi invalidada." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A solicitação não pôde ser agendada porque a sessão de URL subjacente foi invalidada." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Не удалось поставить запрос на исполнение, так как нижележащий ссылочный сеанс был сброшен." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось поставить запрос на исполнение, так как нижележащий ссылочный сеанс был сброшен." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kërkesa s’u planifikua dot, ngaqë sesioni URL përkatës është bërë i pavlefshëm." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërkesa s’u planifikua dot, ngaqë sesioni URL përkatës është bërë i pavlefshëm." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถกำหนดเวลาคำขอได้เนื่องจากเซสชัน URL พื้นฐานนั้นไม่ถูกต้อง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถกำหนดเวลาคำขอได้เนื่องจากเซสชัน URL พื้นฐานนั้นไม่ถูกต้อง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่สามารถกำหนดเวลาคำขอได้เนื่องจากเซสชัน URL พื้นฐานนั้นไม่ถูกต้อง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่สามารถกำหนดเวลาคำขอได้เนื่องจากเซสชัน URL พื้นฐานนั้นไม่ถูกต้อง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Arkaplandaki URL oturumu geçersiz kılındığı için istek planlanamadı." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Arkaplandaki URL oturumu geçersiz kılındığı için istek planlanamadı." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." } } } }, - "Request timed out": { - "comment": "OCErrorRequestTimeout", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Request timed out" + "Request timed out" : { + "comment" : "OCErrorRequestTimeout", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request timed out" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Zeitüberschreitung bei der Anfrage" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zeitüberschreitung bei der Anfrage" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Request timed out" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request timed out" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Request timed out" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request timed out" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Request timed out" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request timed out" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Tiempo de espera agotado" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tiempo de espera agotado" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Request timed out" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request timed out" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "요청 시간 초과됨" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "요청 시간 초과됨" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Request timed out" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request timed out" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Request timed out" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request timed out" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Request timed out" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request timed out" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Solicitação expirou" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitação expirou" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Solicitação expirou" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request timed out" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Request timed out" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitação expirou" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Request timed out" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request timed out" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kërkesës i mbaroi koha" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërkesës i mbaroi koha" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การร้องขอหมดเวลา" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การร้องขอหมดเวลา" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การร้องขอหมดเวลา" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การร้องขอหมดเวลา" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İstek zaman aşımına uğradı" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstek zaman aşımına uğradı" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Request timed out" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request timed out" } } } }, - "Request was cancelled because the server certificate was rejected.": { - "comment": "OCErrorRequestServerCertificateRejected", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled because the server certificate was rejected." + "Request was cancelled because the server certificate was rejected." : { + "comment" : "OCErrorRequestServerCertificateRejected", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled because the server certificate was rejected." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Anfrage wurde storniert, weil das Serverzertifikat abgelehnt wurde." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Anfrage wurde storniert, weil das Serverzertifikat abgelehnt wurde." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled because the server certificate was rejected." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled because the server certificate was rejected." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled because the server certificate was rejected." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled because the server certificate was rejected." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled because the server certificate was rejected." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled because the server certificate was rejected." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La solicitud fue cancelada porque el certificado del servidor fue rechazado." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La solicitud fue cancelada porque el certificado del servidor fue rechazado." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "La demande a été annulée car le certificat du serveur a été rejeté." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La demande a été annulée car le certificat du serveur a été rejeté." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "서버 인증서가 거부되어 요청이 취소되었습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "서버 인증서가 거부되어 요청이 취소되었습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled because the server certificate was rejected." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled because the server certificate was rejected." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled because the server certificate was rejected." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled because the server certificate was rejected." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled because the server certificate was rejected." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled because the server certificate was rejected." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled because the server certificate was rejected." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled because the server certificate was rejected." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled because the server certificate was rejected." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled because the server certificate was rejected." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A solicitação foi cancelada porque o certificado do servidor foi rejeitado." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A solicitação foi cancelada porque o certificado do servidor foi rejeitado." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A solicitação foi cancelada porque o certificado do servidor foi rejeitado." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled because the server certificate was rejected." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled because the server certificate was rejected." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A solicitação foi cancelada porque o certificado do servidor foi rejeitado." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Запрос был отменён, так как сертификат сервера был отклонён." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрос был отменён, так как сертификат сервера был отклонён." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kërkesa u anulua, ngaqë dëshmi e shërbyesit u hodh poshtë." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërkesa u anulua, ngaqë dëshmi e shërbyesit u hodh poshtë." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "คำขอถูกยกเลิกเนื่องจากใบรับรองเซิร์ฟเวอร์ถูกปฏิเสธ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำขอถูกยกเลิกเนื่องจากใบรับรองเซิร์ฟเวอร์ถูกปฏิเสธ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "คำขอถูกยกเลิกเนื่องจากใบรับรองเซิร์ฟเวอร์ถูกปฏิเสธ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำขอถูกยกเลิกเนื่องจากใบรับรองเซิร์ฟเวอร์ถูกปฏิเสธ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sunucu sertifikası reddedildiğinden ötürü istek iptal edildi." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunucu sertifikası reddedildiğinden ötürü istek iptal edildi." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "由于服务器证书被拒绝,请求被取消" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "由于服务器证书被拒绝,请求被取消" } } } }, - "Request was cancelled.": { - "comment": "OCErrorRequestCancelled", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled." + "Request was cancelled." : { + "comment" : "OCErrorRequestCancelled", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Anfrage wurde abgebrochen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Anfrage wurde abgebrochen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La solicitud fue cancelada." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La solicitud fue cancelada." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "La demande a été annulée." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La demande a été annulée." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "요청이 취소되었습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "요청이 취소되었습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Pedido cancelado." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pedido cancelado." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Pedido cancelado." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was cancelled." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Request was cancelled." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pedido cancelado." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Запрос был отменён." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрос был отменён." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kërkesa u anulua." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërkesa u anulua." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "คำขอถูกยกเลิก" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำขอถูกยกเลิก" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "คำขอถูกยกเลิก" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำขอถูกยกเลิก" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İstek iptal edildi." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstek iptal edildi." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "请求已取消。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "请求已取消。" } } } }, - "Request was dropped by the NSURLSession.": { - "comment": "OCErrorRequestDroppedByURLSession", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Request was dropped by the NSURLSession." + "Request was dropped by the NSURLSession." : { + "comment" : "OCErrorRequestDroppedByURLSession", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was dropped by the NSURLSession." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Anfrage wurde von der NSURLSession verworfen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Anfrage wurde von der NSURLSession verworfen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Request was dropped by the NSURLSession." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was dropped by the NSURLSession." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Request was dropped by the NSURLSession." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was dropped by the NSURLSession." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Request was dropped by the NSURLSession." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was dropped by the NSURLSession." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La solicitud fue retirada por NSURLSession." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La solicitud fue retirada por NSURLSession." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "La demande a été abandonnée par la NSURLSession." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La demande a été abandonnée par la NSURLSession." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "요청이 NSURL 세션에서 삭제되었습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "요청이 NSURL 세션에서 삭제되었습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Request was dropped by the NSURLSession." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was dropped by the NSURLSession." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Request was dropped by the NSURLSession." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was dropped by the NSURLSession." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Request was dropped by the NSURLSession." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was dropped by the NSURLSession." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Request was dropped by the NSURLSession." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was dropped by the NSURLSession." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Request was dropped by the NSURLSession." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was dropped by the NSURLSession." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A solicitação foi descartada pela NSURLSession." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A solicitação foi descartada pela NSURLSession." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A solicitação foi descartada pela NSURLSession." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was dropped by the NSURLSession." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Request was dropped by the NSURLSession." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A solicitação foi descartada pela NSURLSession." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Запрос был отброшен NSURLSession." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрос был отброшен NSURLSession." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kërkesa u hodh tej nga NSURLSession." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërkesa u hodh tej nga NSURLSession." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "คำร้องขอถูกยกเลิกแล้วโดย NSURLSession" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำร้องขอถูกยกเลิกแล้วโดย NSURLSession" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "คำร้องขอถูกยกเลิกแล้วโดย NSURLSession" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำร้องขอถูกยกเลิกแล้วโดย NSURLSession" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İstek NSURLSession tarafından iptal edildi." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstek NSURLSession tarafından iptal edildi." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Request was dropped by the NSURLSession." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was dropped by the NSURLSession." } } } }, - "Request was removed before scheduling.": { - "comment": "OCErrorRequestRemovedBeforeScheduling", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Request was removed before scheduling." + "Request was removed before scheduling." : { + "comment" : "OCErrorRequestRemovedBeforeScheduling", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was removed before scheduling." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Anfrage wurde vor der Ausführung entfernt." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Anfrage wurde vor der Ausführung entfernt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Request was removed before scheduling." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was removed before scheduling." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Request was removed before scheduling." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was removed before scheduling." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Request was removed before scheduling." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was removed before scheduling." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Solicitud fue eliminada antes de la programación." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Solicitud fue eliminada antes de la programación." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "La demande a été supprimée avant la planification." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La demande a été supprimée avant la planification." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "예약하기 전에 요청이 제거되었습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "예약하기 전에 요청이 제거되었습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Request was removed before scheduling." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was removed before scheduling." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Request was removed before scheduling." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was removed before scheduling." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Request was removed before scheduling." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was removed before scheduling." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Request was removed before scheduling." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was removed before scheduling." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Request was removed before scheduling." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was removed before scheduling." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A solicitação foi removida antes do agendamento." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A solicitação foi removida antes do agendamento." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A solicitação foi removida antes do agendamento." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was removed before scheduling." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Request was removed before scheduling." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A solicitação foi removida antes do agendamento." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Запрос был отменён до постановки на выполнение." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Запрос был отменён до постановки на выполнение." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kërkesa u hoq para se të planifikohej." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kërkesa u hoq para se të planifikohej." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "คำขอถูกลบออกก่อนกำหนดเวลา" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำขอถูกลบออกก่อนกำหนดเวลา" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "คำขอถูกลบออกก่อนกำหนดเวลา" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คำขอถูกลบออกก่อนกำหนดเวลา" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İstek, iş planlanmadan önce silindi." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstek, iş planlanmadan önce silindi." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Request was removed before scheduling." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request was removed before scheduling." } } } }, - "Required value missing.": { - "comment": "OCErrorRequiredValueMissing", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "Required value missing." : { + "comment" : "OCErrorRequiredValueMissing", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Erforderlicher Wert fehlt." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erforderlicher Wert fehlt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Valor obrigatório ausente." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valor obrigatório ausente." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Valor obrigatório ausente." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Valor obrigatório ausente." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Mungon vlerë e domosdoshme" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mungon vlerë e domosdoshme" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Required value missing." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Required value missing." } } } }, - "Reschedule": { - "comment": "Reschedule a Sync Action ", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Reschedule" + "Reschedule" : { + "comment" : "Reschedule a Sync Action ", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reschedule" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Erneut ausführen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erneut ausführen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Reschedule" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reschedule" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Reschedule" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reschedule" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Reschedule" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reschedule" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Reprogramar" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reprogramar" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Reschedule" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reschedule" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "재예약" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "재예약" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Reschedule" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reschedule" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Reschedule" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reschedule" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Reschedule" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reschedule" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Reprogramar " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reprogramar " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Reprogramar " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reschedule" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Reschedule" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reprogramar " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Reschedule" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reschedule" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Riplanifikoje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riplanifikoje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำหนดเวลาใหม่" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำหนดเวลาใหม่" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำหนดเวลาใหม่" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำหนดเวลาใหม่" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yeniden planla" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeniden planla" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Reschedule" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reschedule" } } } }, - "Resolution of private link failed.": { - "comment": "OCErrorPrivateLinkResolutionFailed", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Resolution of private link failed." + "Resolution of private link failed." : { + "comment" : "OCErrorPrivateLinkResolutionFailed", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution of private link failed." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Auflösung des privaten Links fehlgeschlagen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auflösung des privaten Links fehlgeschlagen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Resolution of private link failed." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution of private link failed." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Resolution of private link failed." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution of private link failed." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Resolution of private link failed." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution of private link failed." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Falló la resolución del enlace privado." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Falló la resolución del enlace privado." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Resolution of private link failed." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution of private link failed." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "개인 링크 확인에 실패함" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "개인 링크 확인에 실패함" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Resolution of private link failed." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution of private link failed." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Resolution of private link failed." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution of private link failed." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Resolution of private link failed." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution of private link failed." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A resolução do linque privado falhou. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A resolução do linque privado falhou. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A resolução do linque privado falhou. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution of private link failed." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Resolution of private link failed." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A resolução do linque privado falhou. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Resolution of private link failed." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution of private link failed." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ftillimi i lidhjes private dështoi." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ftillimi i lidhjes private dështoi." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การแก้ไขลิงก์ส่วนตัวล้มเหลว" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การแก้ไขลิงก์ส่วนตัวล้มเหลว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การแก้ไขลิงก์ส่วนตัวล้มเหลว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การแก้ไขลิงก์ส่วนตัวล้มเหลว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Özel bağlantının çözümlenmesi başarısız oldu." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Özel bağlantının çözümlenmesi başarısız oldu." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Resolution of private link failed." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resolution of private link failed." } } } }, - "Resource does not exist.": { - "comment": "OCErrorResourceDoesNotExist", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "Resource does not exist." : { + "comment" : "OCErrorResourceDoesNotExist", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ressource existiert nicht." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ressource existiert nicht." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O recurso não existe." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O recurso não existe." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O recurso não existe." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O recurso não existe." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Burimi s’ekziston." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burimi s’ekziston." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Resource does not exist." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource does not exist." } } } }, - "Resource not found.": { - "comment": "OCDAVErrorNotFoundOCErrorResourceNotFound", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Resource not found." + "Resource not found." : { + "comment" : "OCDAVErrorNotFoundOCErrorResourceNotFound", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource not found." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ressource nicht gefunden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ressource nicht gefunden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Resource not found." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource not found." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Resource not found." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource not found." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Resource not found." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource not found." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Recurso no encontrado." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recurso no encontrado." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Resource not found." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource not found." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "리소스를 찾을 수 없습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "리소스를 찾을 수 없습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Resource not found." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource not found." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Resource not found." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource not found." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Resource not found." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource not found." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Recurso não encontrado. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recurso não encontrado. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Recurso não encontrado. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource not found." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Resource not found." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recurso não encontrado. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Resource not found." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource not found." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Burimi s’u gjet." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Burimi s’u gjet." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบทรัพยากร" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบทรัพยากร" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบทรัพยากร" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบทรัพยากร" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kaynak bulunamadı." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaynak bulunamadı." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Resource not found." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Resource not found." } } } }, - "Response was in an unknown format.": { - "comment": "OCErrorResponseUnknownFormat", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Response was in an unknown format." + "Response was in an unknown format." : { + "comment" : "OCErrorResponseUnknownFormat", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Response was in an unknown format." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Antwort hat ein unbekanntes Format." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Antwort hat ein unbekanntes Format." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Response was in an unknown format." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Response was in an unknown format." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Response was in an unknown format." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Response was in an unknown format." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Response was in an unknown format." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Response was in an unknown format." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La respuesta en formato desconocido." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La respuesta en formato desconocido." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "La réponse était dans un format inconnu." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La réponse était dans un format inconnu." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "알 수 없는 응답 형식입니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알 수 없는 응답 형식입니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Response was in an unknown format." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Response was in an unknown format." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Response was in an unknown format." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Response was in an unknown format." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Response was in an unknown format." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Response was in an unknown format." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Response was in an unknown format." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Response was in an unknown format." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Response was in an unknown format." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Response was in an unknown format." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A resposta estava em um formato desconhecido." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A resposta estava em um formato desconhecido." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A resposta estava em um formato desconhecido." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Response was in an unknown format." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Response was in an unknown format." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A resposta estava em um formato desconhecido." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Ответ был в неизвестном формате." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ответ был в неизвестном формате." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Përgjigja qe në një format të panjohur." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përgjigja qe në një format të panjohur." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "มีการตอบสนองในรูปแบบที่ไม่รู้จัก" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "มีการตอบสนองในรูปแบบที่ไม่รู้จัก" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "มีการตอบสนองในรูปแบบที่ไม่รู้จัก" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "มีการตอบสนองในรูปแบบที่ไม่รู้จัก" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yanıt bilinmeyen bir dosya biçiminde." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yanıt bilinmeyen bir dosya biçiminde." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "响应的格式未知。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "响应的格式未知。" } } } }, - "Retrieving capabilities…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "Retrieving capabilities…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Empfange Fähigkeiten…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Empfange Fähigkeiten…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Retrieving capabilities…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving capabilities…" } } } }, - "Retrieving file list for %@…": { - "comment": "Retrieving file list", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Retrieving file list for %@…" + "Retrieving file list for %@…" : { + "comment" : "Retrieving file list", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving file list for %@…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Dateiliste abrufen für %@…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dateiliste abrufen für %@…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Retrieving file list for %@…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving file list for %@…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Retrieving file list for %@…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving file list for %@…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Retrieving file list for %@…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving file list for %@…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Recuperando lista de archivo para %@…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recuperando lista de archivo para %@…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Récupération de la liste des fichiers pour %@…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Récupération de la liste des fichiers pour %@…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@에 대한 파일 목록 검색 중... " + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@에 대한 파일 목록 검색 중... " } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Retrieving file list for %@…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving file list for %@…" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Retrieving file list for %@…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving file list for %@…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Retrieving file list for %@…" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving file list for %@…" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Retrieving file list for %@…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving file list for %@…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Retrieving file list for %@…" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving file list for %@…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Recuperando lista de arquivos para %@…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recuperando lista de arquivos para %@…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Recuperando lista de arquivos para %@…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving file list for %@…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Retrieving file list for %@…" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recuperando lista de arquivos para %@…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Получение списка файлов для %@…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Получение списка файлов для %@…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po merret listë kartelash për %@…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po merret listë kartelash për %@…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังเรียกดูรายการไฟล์สำหรับ %@..." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังเรียกดูรายการไฟล์สำหรับ %@..." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังเรียกดูรายการไฟล์สำหรับ %@..." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังเรียกดูรายการไฟล์สำหรับ %@..." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@öğesinin dosya listesi alınıyor..." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@öğesinin dosya listesi alınıyor..." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "正在获取文件列表 %@…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "正在获取文件列表 %@…" } } } }, - "Retrieving items for %@": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Retrieving items for %@" + "Retrieving items for %@" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving items for %@" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Abrufen von Elementen für %@" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Abrufen von Elementen für %@" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Retrieving items for %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving items for %@" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Retrieving items for %@" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving items for %@" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Retrieving items for %@" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving items for %@" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Recuperando elementos para %@" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recuperando elementos para %@" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Retrieving items for %@" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving items for %@" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "%@에 대한 항목을 검색하는 중" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@에 대한 항목을 검색하는 중" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Retrieving items for %@" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving items for %@" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Retrieving items for %@" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving items for %@" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Retrieving items for %@" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving items for %@" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Recuperando itens para %@" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recuperando itens para %@" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Recuperando itens para %@" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving items for %@" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Retrieving items for %@" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Recuperando itens para %@" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Retrieving items for %@" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving items for %@" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po merren objekte për %@" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po merren objekte për %@" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังดึงรายการสำหรับ %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังดึงรายการสำหรับ %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังดึงรายการสำหรับ %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังดึงรายการสำหรับ %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@ için ögeler alınıyor" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ için ögeler alınıyor" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Retrieving items for %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving items for %@" } } } }, - "Retrieving metadata…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "Retrieving metadata…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Empfange Metadaten…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Empfange Metadaten…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Retrieving metadata…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retrieving metadata…" } } } }, - "Retry": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Retry" + "Retry" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Erneut versuchen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Erneut versuchen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Retry" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Retry" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Retry" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Reintentar" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reintentar" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Retry" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "다시 시도" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다시 시도" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Retry" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Retry" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Retry" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Repetir" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Repetir" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Repetir" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Retry" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Repetir" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Retry" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Riprovo" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Riprovo" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ลองใหม่อีกครั้ง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลองใหม่อีกครั้ง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ลองใหม่อีกครั้ง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ลองใหม่อีกครั้ง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yeniden Dene" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeniden Dene" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Retry" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Retry" } } } }, - "Running": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Running" + "Running" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Running" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "In Ausführung" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "In Ausführung" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Running" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Running" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Running" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Running" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Running" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Running" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Ejecutandose" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ejecutandose" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Running" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Running" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "실행 중" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "실행 중" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Running" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Running" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Running" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Running" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Running" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Running" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Executando" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Executando" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Executando" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Running" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Running" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Executando" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Running" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Running" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po xhiron" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po xhiron" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังรัน" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังรัน" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังรัน" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังรัน" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Çalışıyor" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çalışıyor" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Running" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Running" } } } }, - "Scheduled folder scans": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Scheduled folder scans" + "Scheduled folder scans" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scheduled folder scans" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Geplante Ordner-Scans" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Geplante Ordner-Scans" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Scheduled folder scans" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scheduled folder scans" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Scheduled folder scans" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scheduled folder scans" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Scheduled folder scans" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scheduled folder scans" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Programar análisis de carpetas" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Programar análisis de carpetas" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Scheduled folder scans" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scheduled folder scans" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "예약된 폴더 검사" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "예약된 폴더 검사" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Scheduled folder scans" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scheduled folder scans" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Scheduled folder scans" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scheduled folder scans" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Scheduled folder scans" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scheduled folder scans" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Verificações programadas de pasta" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verificações programadas de pasta" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Verificações programadas de pasta" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scheduled folder scans" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Scheduled folder scans" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Verificações programadas de pasta" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Scheduled folder scans" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scheduled folder scans" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kontrolle të planifikuar dosjesh" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kontrolle të planifikuar dosjesh" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "สแกนโฟลเดอร์กำหนดการแล้ว" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "สแกนโฟลเดอร์กำหนดการแล้ว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "สแกนโฟลเดอร์กำหนดการแล้ว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "สแกนโฟลเดอร์กำหนดการแล้ว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Planlanan klasör taramaları" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Planlanan klasör taramaları" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Scheduled folder scans" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scheduled folder scans" } } } }, - "Server detection failed because of too many redirects.": { - "comment": "OCErrorServerTooManyRedirects", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed because of too many redirects." + "Server detection failed because of too many redirects." : { + "comment" : "OCErrorServerTooManyRedirects", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed because of too many redirects." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Servererkennung ist aufgrund von zu vielen Umleitungen fehlgeschlagen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Servererkennung ist aufgrund von zu vielen Umleitungen fehlgeschlagen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed because of too many redirects." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed because of too many redirects." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed because of too many redirects." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed because of too many redirects." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed because of too many redirects." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed because of too many redirects." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La detección del servidor falló debido a demasiadas redirecciones." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La detección del servidor falló debido a demasiadas redirecciones." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "La détection du serveur a échoué en raison d'un trop grand nombre de redirections." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La détection du serveur a échoué en raison d'un trop grand nombre de redirections." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "너무 많은 리디렉션으로 서버 감지에 실패했습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "너무 많은 리디렉션으로 서버 감지에 실패했습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed because of too many redirects." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed because of too many redirects." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed because of too many redirects." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed because of too many redirects." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed because of too many redirects." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed because of too many redirects." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed because of too many redirects." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed because of too many redirects." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed because of too many redirects." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed because of too many redirects." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A detecção do servidor falhou devido a muitos redirecionamentos." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A detecção do servidor falhou devido a muitos redirecionamentos." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A detecção do servidor falhou devido a muitos redirecionamentos." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed because of too many redirects." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed because of too many redirects." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A detecção do servidor falhou devido a muitos redirecionamentos." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Определение сервера не прошло из-за слишком большого количества перенаправлений." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Определение сервера не прошло из-за слишком большого количества перенаправлений." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Zbulimi i shërbyesit dështoi për shkak të shumë ridrejtimeve." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zbulimi i shërbyesit dështoi për shkak të shumë ridrejtimeve." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเนื่องจากมีการเปลี่ยนเส้นทางมากเกินไป" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเนื่องจากมีการเปลี่ยนเส้นทางมากเกินไป" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเนื่องจากมีการเปลี่ยนเส้นทางมากเกินไป" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเนื่องจากมีการเปลี่ยนเส้นทางมากเกินไป" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Çok sayıda yönlendirme içeren bağlantı olduğundan sunucu algılama başarısız oldu." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Çok sayıda yönlendirme içeren bağlantı olduğundan sunucu algılama başarısız oldu." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "由于跳转次数过多,服务器检测失败。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "由于跳转次数过多,服务器检测失败。" } } } }, - "Server detection failed, i.e. when the server at a URL is not an ownCloud instance.": { - "comment": "OCErrorServerDetectionFailed", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." : { + "comment" : "OCErrorServerDetectionFailed", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Servererkennung ist fehlgeschlagen, was z.B. passiert, wenn der Server unter der URL keine ownCloud-Instanz ist." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Servererkennung ist fehlgeschlagen, was z.B. passiert, wenn der Server unter der URL keine ownCloud-Instanz ist." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La detección del servidor falló, p.e. cuando la dirección URL del servidor no contiene una instancia de ownCloud." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La detección del servidor falló, p.e. cuando la dirección URL del servidor no contiene una instancia de ownCloud." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "La détection du serveur a échoué, c.-à-d lorsque le serveur d'une URL n'est pas une instance ownCloud." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "La détection du serveur a échoué, c.-à-d lorsque le serveur d'une URL n'est pas une instance ownCloud." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "서버 감지에 실패했습니다. URL의 서버가 클라우드 인스턴스가 아닙니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "서버 감지에 실패했습니다. URL의 서버가 클라우드 인스턴스가 아닙니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A detecção do servidor falhou, ou seja, quando o servidor em uma URL não é uma instância do ownCloud." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A detecção do servidor falhou, ou seja, quando o servidor em uma URL não é uma instância do ownCloud." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A detecção do servidor falhou, ou seja, quando o servidor em uma URL não é uma instância do ownCloud." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A detecção do servidor falhou, ou seja, quando o servidor em uma URL não é uma instância do ownCloud." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Не прошло определение сервера, то есть сервер по ссылке не является экземпляром ownCloud." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не прошло определение сервера, то есть сервер по ссылке не является экземпляром ownCloud." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Zbulimi i shërbyesit dështoi, domethënë, kur shërbyesi te një URL s’është instancë ownCloud." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zbulimi i shërbyesit dështoi, domethënë, kur shërbyesi te një URL s’është instancë ownCloud." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเช่น เมื่อใช้ URL ของเซิร์ฟเวอร์ที่ไม่ใช่อินสแตนซ์ของ ownCloud" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเช่น เมื่อใช้ URL ของเซิร์ฟเวอร์ที่ไม่ใช่อินสแตนซ์ของ ownCloud" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเช่น เมื่อใช้ URL ของเซิร์ฟเวอร์ที่ไม่ใช่อินสแตนซ์ของ ownCloud" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเช่น เมื่อใช้ URL ของเซิร์ฟเวอร์ที่ไม่ใช่อินสแตนซ์ของ ownCloud" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sunucu algılama başarısız oldu, bu durum örneğin URL'deki sunucu ownCloud örneği olmadığında olduğu gibi." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunucu algılama başarısız oldu, bu durum örneğin URL'deki sunucu ownCloud örneği olmadığında olduğu gibi." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "服务器检测失败,可能由于此 URL 上运行的不是 ownCloud 示例。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "服务器检测失败,可能由于此 URL 上运行的不是 ownCloud 示例。" } } } }, - "Server doesn't seem to support any authentication method supported by this app.": { - "comment": "OCErrorServerNoSupportedAuthMethods", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Server doesn't seem to support any authentication method supported by this app." + "Server doesn't seem to support any authentication method supported by this app." : { + "comment" : "OCErrorServerNoSupportedAuthMethods", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server doesn't seem to support any authentication method supported by this app." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Der Server scheint keine Authentifizierungsmethoden dieser Anwendung zu unterstützen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der Server scheint keine Authentifizierungsmethoden dieser Anwendung zu unterstützen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Server doesn't seem to support any authentication method supported by this app." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server doesn't seem to support any authentication method supported by this app." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Server doesn't seem to support any authentication method supported by this app." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server doesn't seem to support any authentication method supported by this app." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Server doesn't seem to support any authentication method supported by this app." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server doesn't seem to support any authentication method supported by this app." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "El servidor parece no dar soporte a ningún método de autenticación soportado por esta aplicación." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "El servidor parece no dar soporte a ningún método de autenticación soportado por esta aplicación." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Le serveur ne semble supporter aucune méthode d'authentification prise en charge par cette application." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le serveur ne semble supporter aucune méthode d'authentification prise en charge par cette application." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "서버가 이 앱에서 지원하는 인증 방법을 지원하지 않습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "서버가 이 앱에서 지원하는 인증 방법을 지원하지 않습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Server doesn't seem to support any authentication method supported by this app." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server doesn't seem to support any authentication method supported by this app." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Server doesn't seem to support any authentication method supported by this app." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server doesn't seem to support any authentication method supported by this app." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Server doesn't seem to support any authentication method supported by this app." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server doesn't seem to support any authentication method supported by this app." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Server doesn't seem to support any authentication method supported by this app." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server doesn't seem to support any authentication method supported by this app." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Server doesn't seem to support any authentication method supported by this app." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server doesn't seem to support any authentication method supported by this app." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O servidor não parece suportar nenhum método de autenticação suportado por este aplicativo." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O servidor não parece suportar nenhum método de autenticação suportado por este aplicativo." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O servidor não parece suportar nenhum método de autenticação suportado por este aplicativo." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server doesn't seem to support any authentication method supported by this app." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Server doesn't seem to support any authentication method supported by this app." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O servidor não parece suportar nenhum método de autenticação suportado por este aplicativo." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Похоже, сервер не поддерживает ни один из методов аутентификации, которые поддерживает данное приложение." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Похоже, сервер не поддерживает ни один из методов аутентификации, которые поддерживает данное приложение." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Shërbyesi nuk duket se mbulon ndonjë metodë mirëfilltësimi të mbuluar nga ky aplikacion." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shërbyesi nuk duket se mbulon ndonjë metodë mirëfilltësimi të mbuluar nga ky aplikacion." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์ดูเหมือนจะไม่รองรับวิธีการรับรองความถูกต้องใดๆ ที่แอปนี้สนับสนุน" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์ดูเหมือนจะไม่รองรับวิธีการรับรองความถูกต้องใดๆ ที่แอปนี้สนับสนุน" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์ดูเหมือนจะไม่รองรับวิธีการรับรองความถูกต้องใดๆ ที่แอปนี้สนับสนุน" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์ดูเหมือนจะไม่รองรับวิธีการรับรองความถูกต้องใดๆ ที่แอปนี้สนับสนุน" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sunucu, bu uygulamanın desteklediği hiç bir doğrulama yöntemini desteklemiyor." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunucu, bu uygulamanın desteklediği hiç bir doğrulama yöntemini desteklemiyor." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "服务器不支持此应用支持的任何验证方式。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "服务器不支持此应用支持的任何验证方式。" } } } }, - "Server down for maintenance": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance" + "Server down for maintenance" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Server heruntergefahren für Wartungsarbeiten" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server heruntergefahren für Wartungsarbeiten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Servidor inactivo por mantenimiento" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Servidor inactivo por mantenimiento" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Serveur en cours de maintenance" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Serveur en cours de maintenance" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "유지보수를 위해 서버가 중단됨" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "유지보수를 위해 서버가 중단됨" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Servidor inativo para manutenção" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Servidor inativo para manutenção" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Servidor inativo para manutenção" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Servidor inativo para manutenção" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Сервер не работает, находится на обслуживании" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сервер не работает, находится на обслуживании" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Shërbyesi jashtë funksionimi, për mirëmbajtje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shërbyesi jashtë funksionimi, për mirëmbajtje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bakım dolayısıyla sunucu kapalı" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bakım dolayısıyla sunucu kapalı" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "服务器正在维护" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "服务器正在维护" } } } }, - "Server down for maintenance.": { - "comment": "OCDAVErrorServiceUnavailable", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance." + "Server down for maintenance." : { + "comment" : "OCDAVErrorServiceUnavailable", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Server heruntergefahren für Wartungsarbeiten." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server heruntergefahren für Wartungsarbeiten." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Servidor inactivo por mantenimiento." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Servidor inactivo por mantenimiento." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Serveur indisponible pour maintenance." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Serveur indisponible pour maintenance." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "유지 관리를 위해 서버가 다운되었습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "유지 관리를 위해 서버가 다운되었습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Servidor desativado para manutenção." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Servidor desativado para manutenção." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Servidor desativado para manutenção." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server down for maintenance." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Server down for maintenance." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Servidor desativado para manutenção." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Сервер не работает, находится на обслуживании." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сервер не работает, находится на обслуживании." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Shërbyes jashtë funksionimi, për mirëmbajtje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shërbyes jashtë funksionimi, për mirëmbajtje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bakım dolayısıyla sunucu kapalı." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bakım dolayısıyla sunucu kapalı." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "服务器正在维护。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "服务器正在维护。" } } } }, - "Server redirection to bad/invalid URL.": { - "comment": "OCErrorServerBadRedirection", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Server redirection to bad/invalid URL." + "Server redirection to bad/invalid URL." : { + "comment" : "OCErrorServerBadRedirection", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server redirection to bad/invalid URL." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Serverumleitung auf schlechte/ungültige URL." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Serverumleitung auf schlechte/ungültige URL." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Server redirection to bad/invalid URL." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server redirection to bad/invalid URL." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Server redirection to bad/invalid URL." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server redirection to bad/invalid URL." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Server redirection to bad/invalid URL." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server redirection to bad/invalid URL." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Redireccionamiento del servidor a una URL incorrecta/inválida." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redireccionamiento del servidor a una URL incorrecta/inválida." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Redirection du serveur vers une URL incorrecte / non valide." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirection du serveur vers une URL incorrecte / non valide." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "잘못된 URL로 서버 리디렉션" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "잘못된 URL로 서버 리디렉션" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Server redirection to bad/invalid URL." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server redirection to bad/invalid URL." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Server redirection to bad/invalid URL." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server redirection to bad/invalid URL." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Server redirection to bad/invalid URL." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server redirection to bad/invalid URL." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Server redirection to bad/invalid URL." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server redirection to bad/invalid URL." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Server redirection to bad/invalid URL." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server redirection to bad/invalid URL." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Redirecionamento de servidor para URL errado/inválido." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirecionamento de servidor para URL errado/inválido." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Redirecionamento de servidor para URL errado/inválido." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server redirection to bad/invalid URL." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Server redirection to bad/invalid URL." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Redirecionamento de servidor para URL errado/inválido." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Пенерапнавление сервера на плохую или недопустимую ссылку." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Пенерапнавление сервера на плохую или недопустимую ссылку." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ridrejtim shërbyesi te URL e keqe/e pavlefshme." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ridrejtim shërbyesi te URL e keqe/e pavlefshme." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์เปลี่ยนเส้นทางไปยัง URL ที่ไม่ถูกต้อง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์เปลี่ยนเส้นทางไปยัง URL ที่ไม่ถูกต้อง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์เปลี่ยนเส้นทางไปยัง URL ที่ไม่ถูกต้อง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์เปลี่ยนเส้นทางไปยัง URL ที่ไม่ถูกต้อง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sunucu kötü/geçersiz bir yönlendirmesi içeriyor." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunucu kötü/geçersiz bir yönlendirmesi içeriyor." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "服务端跳转至非法或无效的 URL。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "服务端跳转至非法或无效的 URL。" } } } }, - "Server returns status %ld": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Server returns status %ld" + "Server returns status %ld" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server returns status %ld" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Server gibt Status %ld zurück " + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server gibt Status %ld zurück " } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Server returns status %ld" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server returns status %ld" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Server returns status %ld" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server returns status %ld" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Server returns status %ld" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server returns status %ld" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "El servidor devuelve el estado %ld" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "El servidor devuelve el estado %ld" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Server returns status %ld" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server returns status %ld" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "서버가 응답을 반환함: %ld" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "서버가 응답을 반환함: %ld" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Server returns status %ld" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server returns status %ld" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Server returns status %ld" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server returns status %ld" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Server returns status %ld" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server returns status %ld" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O servidor retorna ao status %ld" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O servidor retorna ao status %ld" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O servidor retorna ao status %ld" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server returns status %ld" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Server returns status %ld" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O servidor retorna ao status %ld" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Server returns status %ld" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server returns status %ld" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Shërbyesi u përgjigj me gjendje %ld" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shërbyesi u përgjigj me gjendje %ld" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์ตอบกลับสถานะ %ld" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์ตอบกลับสถานะ %ld" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์ตอบกลับสถานะ %ld" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์ตอบกลับสถานะ %ld" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sunucu %ld durumunu döndürüyor" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sunucu %ld durumunu döndürüyor" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Server returns status %ld" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server returns status %ld" } } } }, - "Server software %@ not supported.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "Server software %@ not supported." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ nicht unterstützt" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ nicht unterstützt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Server software %@ not supported." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Server software %@ not supported." } } } }, - "Set detailed permissions": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "Set detailed permissions" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Detaillierte Rechte festlegen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Detaillierte Rechte festlegen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Definir permissões detalhadas" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir permissões detalhadas" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Definir permissões detalhadas" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Definir permissões detalhadas" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Caktoni leje të hollësishme" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Caktoni leje të hollësishme" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Set detailed permissions" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Set detailed permissions" } } } }, - "Share not found.": { - "comment": "OCErrorShareNotFound", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Share not found." + "Share not found." : { + "comment" : "OCErrorShareNotFound", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share not found." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Freigabe nicht gefunden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Freigabe nicht gefunden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Share not found." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share not found." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Share not found." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share not found." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Share not found." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share not found." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Compatido NO encontrado" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compatido NO encontrado" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Share not found." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share not found." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "공유를 찾을 수 없음" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "공유를 찾을 수 없음" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Share not found." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share not found." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Share not found." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share not found." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Share not found." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share not found." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Compartilhamento não encontrado." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartilhamento não encontrado." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Compartilhamento não encontrado." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share not found." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Share not found." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartilhamento não encontrado." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Share not found." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share not found." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "S’u gjet pjesë." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "S’u gjet pjesë." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบการแชร์" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบการแชร์" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบการแชร์" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบการแชร์" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Paylaşım bulunamadı" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paylaşım bulunamadı" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Share not found." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share not found." } } } }, - "Shared with me": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "Shared with me" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Mit mir geteilt" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mit mir geteilt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Compartido conmigo" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartido conmigo" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Compartilhou comigo" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartilhou comigo" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Compartilhou comigo" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartilhou comigo" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ndarë me mua" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndarë me mua" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Benimle paylaşılmış" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benimle paylaşılmış" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Shared with me" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared with me" } } } }, - "Shares": { - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Shares" + "Shares" : { + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Freigaben" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Freigaben" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Shares" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Shares" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Shares" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Compartidos" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartidos" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Shares" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "공유" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "공유" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Shares" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Shares" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Shares" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Compartilhamentos" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartilhamentos" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Compartilhamentos" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Shares" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartilhamentos" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Shares" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Pjesë" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pjesë" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "แชร์" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "แชร์" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "แชร์" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "แชร์" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Paylaşımlar" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paylaşımlar" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Shares" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares" } } } }, - "Shares are unavailable.": { - "comment": "OCErrorShareUnavailable", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Shares are unavailable." + "Shares are unavailable." : { + "comment" : "OCErrorShareUnavailable", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares are unavailable." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Freigaben nicht verfügbar." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Freigaben nicht verfügbar." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Shares are unavailable." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares are unavailable." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Shares are unavailable." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares are unavailable." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Shares are unavailable." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares are unavailable." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Compartidos No disponibles" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartidos No disponibles" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Shares are unavailable." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares are unavailable." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "공유할 수 없음" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "공유할 수 없음" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Shares are unavailable." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares are unavailable." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Shares are unavailable." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares are unavailable." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Shares are unavailable." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares are unavailable." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Os compartilhamentos não estão indisponíveis." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os compartilhamentos não estão indisponíveis." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Os compartilhamentos não estão indisponíveis." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares are unavailable." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Shares are unavailable." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Os compartilhamentos não estão indisponíveis." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Shares are unavailable." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares are unavailable." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Pjesët s’janë të passhme." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pjesët s’janë të passhme." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "แชร์ไม่พร้อมใช้งาน" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "แชร์ไม่พร้อมใช้งาน" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "แชร์ไม่พร้อมใช้งาน" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "แชร์ไม่พร้อมใช้งาน" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Paylaşımlar kullanılabilir değil" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paylaşımlar kullanılabilir değil" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Shares are unavailable." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shares are unavailable." } } } }, - "Sharing requires an active connection.": { - "comment": "Sharing", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "Sharing requires an active connection." : { + "comment" : "Sharing", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Freigabe erfordert eine aktive Verbindung." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Freigabe erfordert eine aktive Verbindung." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Compartir necesita una conexión activa." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Compartir necesita una conexión activa." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O compartilhamento requer uma conexão ativa." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O compartilhamento requer uma conexão ativa." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O compartilhamento requer uma conexão ativa." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O compartilhamento requer uma conexão ativa." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ndarja me të tjerë lyp një lidhje aktive" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ndarja me të tjerë lyp një lidhje aktive" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Paylaşım etkin bir bağlantı gerektirir." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paylaşım etkin bir bağlantı gerektirir." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Sharing requires an active connection." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing requires an active connection." } } } }, - "Standard error output": { - "comment": "Logging", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Standard error output" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Standardfehlerausgabe" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Standard error output" - } - }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Standard error output" + "special characters" : { + "comment" : "Password Policy", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Standard error output" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sonderzeichen" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Salida de error estándar" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Sortie d'erreur standard" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "표준 오류 출력" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Standard error output" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Standard error output" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Standard error output" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Standard error output" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Standard error output" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Saída de erro padrão" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Saída de erro padrão" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Standard error output" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Вывод на стандартную диагностику" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Output standard gabimesh" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ข้อมูลข้อผิดพลาดมาตรฐาน" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ข้อมูลข้อผิดพลาดมาตรฐาน" - } - }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Standart hata çıktısı" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "标准错误输出" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "special characters" } } } }, - "State": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "State" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Status" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "State" + "Standard error output" : { + "comment" : "Logging", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard error output" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "State" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standardfehlerausgabe" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "State" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard error output" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Estado" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard error output" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "State" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard error output" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "상태" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Salida de error estándar" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "State" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sortie d'erreur standard" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "State" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "표준 오류 출력" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "State" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard error output" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Estado" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard error output" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Estado" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard error output" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "State" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard error output" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "State" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard error output" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Gjendje" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saída de erro padrão" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "สถานะ" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standard error output" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "สถานะ" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Saída de erro padrão" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Durum" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Вывод на стандартную диагностику" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "State" - } - } - } - }, - "Sync Record ID": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Sync Datensatz-ID" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" - } - }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" - } - }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" - } - }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Sincronizar ID de registro" - } - }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" - } - }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "기록 ID 동기화" - } - }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" - } - }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" - } - }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" - } - }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "ID de registro de sincronização " - } - }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "ID de registro de sincronização " - } - }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" - } - }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Output standard gabimesh" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Njëkohëso ID Zëri" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อมูลข้อผิดพลาดมาตรฐาน" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อมูลข้อผิดพลาดมาตรฐาน" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Standart hata çıktısı" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Senkronize Kayıt ID" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Sync Record ID" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "标准错误输出" } } } }, - "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "State" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "State" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die von Ihnen angegebene URL verwendet das HTTP- und nicht das HTTPS-Schema, sodass Ihre Kommunikation nicht verschlüsselt wäre." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Status" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "State" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "State" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "State" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La URL usa HTTP en lugar de HTTPS. Si Vd. continua, la comunicación no será encriptada." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estado" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "State" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "제공한 URL은 HTTPS 구성표 대신 HTTP를 사용하므로, 통신이 암호화되지 않습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "상태" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "State" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "State" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "State" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O URL que você forneceu usa o esquema HTTP, e não o HTTPS, logo sua comunicação não será criptografada." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estado" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O URL que você forneceu usa o esquema HTTP, e não o HTTPS, logo sua comunicação não será criptografada." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "State" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Estado" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "State" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "URL-ja që dhatë përdor HTTP, në vend se skemën HTTPS, ndaj komunikimi juaj s’do të jetë i fshehtëzuar." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Gjendje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "คถุณกำลังใช้งาน URL HTTP แทนที่จะเป็นรูปแบบ HTTPS ดังนั้นการสื่อสารของคุณจะไม่ถูกเข้ารหัส" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "สถานะ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "คถุณกำลังใช้งาน URL HTTP แทนที่จะเป็นรูปแบบ HTTPS ดังนั้นการสื่อสารของคุณจะไม่ถูกเข้ารหัส" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "สถานะ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sağladığınız URL, HTTPS şeması yerine HTTP kullanır, bu nedenle iletişiminiz şifrelenmez." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Durum" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "State" } } } }, - "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "Sync Record ID" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die von Ihnen angegebene URL verwendet das HTTP- und nicht das HTTPS-Schema. Wenn Sie fortfahren, wird Ihre Kommunikation nicht verschlüsselt." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Datensatz-ID" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La URL usa HTTP en lugar de HTTPS. Si Vd. continua, la comunicación no será encriptada." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sincronizar ID de registro" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "제공한 URL은 HTTPS 구성표 대신 HTTP를 사용합니다. 계속하면 통신이 암호화되지 않습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "기록 ID 동기화" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O URL fornecido por você usa o HTTP em vez do esquema HTTPS. Se você continuar, sua comunicação não será criptografada." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID de registro de sincronização " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O URL fornecido por você usa o HTTP em vez do esquema HTTPS. Se você continuar, sua comunicação não será criptografada." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "ID de registro de sincronização " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "URL-ja që dhatë përdor HTTP, në vend se skemën HTTPS. Nëse vazhdoni, komunikimi juaj s’do të jetë i fshehtëzuar." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Njëkohëso ID Zëri" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "URL ที่คุณระบุใช้โปรโตคอล HTTP หากคุณดำเนินการต่อการสื่อสารของคุณจะไม่ถูกเข้ารหัส (แนะนำให้ใช้ HTTPS แทน)" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "URL ที่คุณระบุใช้โปรโตคอล HTTP หากคุณดำเนินการต่อการสื่อสารของคุณจะไม่ถูกเข้ารหัส (แนะนำให้ใช้ HTTPS แทน)" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sağladığınız URL, HTTPS şeması yerine HTTP'yi kullanır. Devam ederseniz, iletişiminiz şifrelenmeyecektir." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Senkronize Kayıt ID" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sync Record ID" } } } }, - "The action couldn't be performed on the targeted item because the client lacks permissions.": { - "comment": "OCErrorItemInsufficientPermissions", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permissions." + "The action couldn't be performed on the targeted item because the client lacks permissions." : { + "comment" : "OCErrorItemInsufficientPermissions", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Aktion konnte am Zielelement nicht ausgeführt werden, da dem Client die Berechtigungen fehlen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Aktion konnte am Zielelement nicht ausgeführt werden, da dem Client die Berechtigungen fehlen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permissions." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permissions." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permissions." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La acción no se pudo realizar en el elemento de destino porque el cliente carece de permisos." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La acción no se pudo realizar en el elemento de destino porque el cliente carece de permisos." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "L'action n'a pas pu être effectuée sur l'élément ciblé car le client ne dispose pas des autorisations." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'action n'a pas pu être effectuée sur l'élément ciblé car le client ne dispose pas des autorisations." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "클라이언트에 권한이 없기 때문에 대상 항목에 대해 작업을 수행할 수 없습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "클라이언트에 권한이 없기 때문에 대상 항목에 대해 작업을 수행할 수 없습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permissions." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permissions." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permissions." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A ação não pôde ser executada no item de destino porque o cliente não tem permissões." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A ação não pôde ser executada no item de destino porque o cliente não tem permissões." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A ação não pôde ser executada no item de destino porque o cliente não tem permissões." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permissions." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A ação não pôde ser executada no item de destino porque o cliente não tem permissões." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Не удалось выполнить действие над указанным элементом, так как у клиента не хватает разрешений." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не удалось выполнить действие над указанным элементом, так как у клиента не хватает разрешений." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Veprimi s’u krye dot mbi objektin e synuar, ngaqë klientit i mungojnë lejet." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veprimi s’u krye dot mbi objektin e synuar, ngaqë klientit i mungojnë lejet." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไคลเอนต์ไม่มีสิทธิ์ดำเนินการกับรายการเป้าหมาย" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไคลเอนต์ไม่มีสิทธิ์ดำเนินการกับรายการเป้าหมาย" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไคลเอนต์ไม่มีสิทธิ์ดำเนินการกับรายการเป้าหมาย" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไคลเอนต์ไม่มีสิทธิ์ดำเนินการกับรายการเป้าหมาย" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İstemci tarafında izin yetersizliği olduğundan bu işlem hedefteki öge üzerinde uygulanamaz." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İstemci tarafında izin yetersizliği olduğundan bu işlem hedefteki öge üzerinde uygulanamaz." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "由于客户端缺少权限,此操作无法在指定的项目上完成。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "由于客户端缺少权限,此操作无法在指定的项目上完成。" } } } }, - "The action couldn't be performed on the targeted item because the client lacks permisssions.": { - "comment": "OCErrorItemInsufficientPermissions", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "The action couldn't be performed on the targeted item because the client lacks permisssions." : { + "comment" : "OCErrorItemInsufficientPermissions", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Aktion konnte für das Zielelement nicht ausgeführt werden, da dem Client die entsprechenden Berechtigungen fehlen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Aktion konnte für das Zielelement nicht ausgeführt werden, da dem Client die entsprechenden Berechtigungen fehlen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." } } } }, - "The certificate for %@ has previously been rejected by the user.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "The certificate for %@ has previously been rejected by the user." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Das Zertifikat für %@ wurde zuvor vom Benutzer abgelehnt." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Zertifikat für %@ wurde zuvor vom Benutzer abgelehnt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %@ has previously been rejected by the user." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %@ has previously been rejected by the user." } } } }, - "The certificate for %@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %@.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "The certificate for %@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %@." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Das Zertifikat für %1$@ besteht die TLS-Validierung aber erfüllt nicht die Akzeptanzregeln zum Ersetzen des Zertifikats für %2$@." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Zertifikat für %1$@ besteht die TLS-Validierung aber erfüllt nicht die Akzeptanzregeln zum Ersetzen des Zertifikats für %2$@." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } } } }, - "The certificate is invalid or contains errors": { - "comment": "OCErrorCertificateInvalid", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The certificate is invalid or contains errors" + "The certificate is invalid or contains errors" : { + "comment" : "OCErrorCertificateInvalid", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate is invalid or contains errors" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Das Zertifikat ist ungültig oder enthält Fehler" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Zertifikat ist ungültig oder enthält Fehler" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The certificate is invalid or contains errors" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate is invalid or contains errors" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The certificate is invalid or contains errors" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate is invalid or contains errors" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The certificate is invalid or contains errors" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate is invalid or contains errors" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "El certificado es inválido o contiene errores" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "El certificado es inválido o contiene errores" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Le certificat n'est pas valide ou contient des erreurs" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le certificat n'est pas valide ou contient des erreurs" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "인증서가 잘못되었거나 오류를 포함하고 있습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "인증서가 잘못되었거나 오류를 포함하고 있습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The certificate is invalid or contains errors" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate is invalid or contains errors" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "The certificate is invalid or contains errors" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate is invalid or contains errors" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The certificate is invalid or contains errors" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate is invalid or contains errors" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "The certificate is invalid or contains errors" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate is invalid or contains errors" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The certificate is invalid or contains errors" + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate is invalid or contains errors" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O certificado é inválido ou contém erros" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O certificado é inválido ou contém erros" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O certificado é inválido ou contém erros" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The certificate is invalid or contains errors" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The certificate is invalid or contains errors" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O certificado é inválido ou contém erros" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Сертификат неверен или содержит ошибки." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сертификат неверен или содержит ошибки." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Dëshmia është e pavlefshme ose përmban gabime" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dëshmia është e pavlefshme ose përmban gabime" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ใบรับรองไม่ถูกต้องหรือมีข้อผิดพลาด" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ใบรับรองไม่ถูกต้องหรือมีข้อผิดพลาด" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ใบรับรองไม่ถูกต้องหรือมีข้อผิดพลาด" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ใบรับรองไม่ถูกต้องหรือมีข้อผิดพลาด" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sertifika geçersiz ya da hatalar barındırmakta" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sertifika geçersiz ya da hatalar barındırmakta" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "证书无效或存在错误。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "证书无效或存在错误。" } } } }, - "The connection is redirected from %@ to %@.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "The connection is redirected from %@ to %@." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Verbindung wird von %1$@ nach %2$@ umgeleitet." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Verbindung wird von %1$@ nach %2$@ umgeleitet." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "The connection is redirected from %1$@ to %2$@." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "The connection is redirected from %1$@ to %2$@." } } } }, - "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Der Inhalt der Datei auf dem Server hat sich seit dem Start des Downloads geändert - oder die Datei ist auf dem Server nicht mehr verfügbar." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der Inhalt der Datei auf dem Server hat sich seit dem Start des Downloads geändert - oder die Datei ist auf dem Server nicht mehr verfügbar." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "El contenido del archivo en el servidor ha cambiado desde que se inició la descarga, o el archivo ya no está disponible en el servidor." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "El contenido del archivo en el servidor ha cambiado desde que se inició la descarga, o el archivo ya no está disponible en el servidor." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "다운로드를 시작한 후 서버의 파일 내용이 변경되었거나 서버에서 파일을 더 이상 사용할 수 없습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다운로드를 시작한 후 서버의 파일 내용이 변경되었거나 서버에서 파일을 더 이상 사용할 수 없습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O conteúdo do arquivo no servidor mudou desde o início da tarefa de baixar o arquivo - ou o arquivo não está mais disponível no servidor. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O conteúdo do arquivo no servidor mudou desde o início da tarefa de baixar o arquivo - ou o arquivo não está mais disponível no servidor. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O conteúdo do arquivo no servidor mudou desde o início da tarefa de baixar o arquivo - ou o arquivo não está mais disponível no servidor. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O conteúdo do arquivo no servidor mudou desde o início da tarefa de baixar o arquivo - ou o arquivo não está mais disponível no servidor. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Lënda e kartelës te shërbyesi ka ndryshuar që nga fillimi i shkarkimit - ose kartela s’është më e passhme që prej shërbyesit." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lënda e kartelës te shërbyesi ka ndryshuar që nga fillimi i shkarkimit - ose kartela s’është më e passhme që prej shërbyesit." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เนื้อหาของไฟล์บนเซิร์ฟเวอร์มีการเปลี่ยนแปลงตั้งแต่เริ่มดาวน์โหลด - หรือไฟล์ไม่พร้อมใช้งานบนเซิร์ฟเวอร์อีกต่อไป" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เนื้อหาของไฟล์บนเซิร์ฟเวอร์มีการเปลี่ยนแปลงตั้งแต่เริ่มดาวน์โหลด - หรือไฟล์ไม่พร้อมใช้งานบนเซิร์ฟเวอร์อีกต่อไป" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เนื้อหาของไฟล์บนเซิร์ฟเวอร์มีการเปลี่ยนแปลงตั้งแต่เริ่มดาวน์โหลด - หรือไฟล์ไม่พร้อมใช้งานบนเซิร์ฟเวอร์อีกต่อไป" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เนื้อหาของไฟล์บนเซิร์ฟเวอร์มีการเปลี่ยนแปลงตั้งแต่เริ่มดาวน์โหลด - หรือไฟล์ไม่พร้อมใช้งานบนเซิร์ฟเวอร์อีกต่อไป" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İndirme başladığından beri sunucudaki dosyanın içeriği değişti - veya dosya artık sunucuda mevcut değil." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İndirme başladığından beri sunucudaki dosyanın içeriği değişti - veya dosya artık sunucuda mevcut değil." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } } } }, - "The destination item has not been found.": { - "comment": "OCErrorItemDestinationNotFound", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "The destination item has not been found." : { + "comment" : "OCErrorItemDestinationNotFound", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Das Ziel-Element wurde nicht gefunden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Ziel-Element wurde nicht gefunden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "L'élément de destination n'a pas été trouvé." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'élément de destination n'a pas été trouvé." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Не найден целевой элемент." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не найден целевой элемент." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "The destination item has not been found." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The destination item has not been found." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "未找到目标项目。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "未找到目标项目。" } } } }, - "The downloaded file's checksum does not match the checksum provided by the server.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The downloaded file's checksum does not match the checksum provided by the server." + "The downloaded file's checksum does not match the checksum provided by the server." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The downloaded file's checksum does not match the checksum provided by the server." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Prüfsumme der heruntergeladenen Datei stimmt nicht mit der vom Server bereitgestellten Prüfsumme überein." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Prüfsumme der heruntergeladenen Datei stimmt nicht mit der vom Server bereitgestellten Prüfsumme überein." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The downloaded file's checksum does not match the checksum provided by the server." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The downloaded file's checksum does not match the checksum provided by the server." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The downloaded file's checksum does not match the checksum provided by the server." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The downloaded file's checksum does not match the checksum provided by the server." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The downloaded file's checksum does not match the checksum provided by the server." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The downloaded file's checksum does not match the checksum provided by the server." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La suma de comprobación del archivo descargado no coincide con la suma de comprobación proporcionada por el servidor." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La suma de comprobación del archivo descargado no coincide con la suma de comprobación proporcionada por el servidor." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "The downloaded file's checksum does not match the checksum provided by the server." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The downloaded file's checksum does not match the checksum provided by the server." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "다운로드한 파일의 체크섬이 서버에서 제공한 체크섬과 일치하지 않습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "다운로드한 파일의 체크섬이 서버에서 제공한 체크섬과 일치하지 않습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The downloaded file's checksum does not match the checksum provided by the server." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The downloaded file's checksum does not match the checksum provided by the server." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The downloaded file's checksum does not match the checksum provided by the server." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The downloaded file's checksum does not match the checksum provided by the server." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The downloaded file's checksum does not match the checksum provided by the server." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The downloaded file's checksum does not match the checksum provided by the server." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A soma de verificação do arquivo baixado não corresponde à soma de verificação fornecida pelo servidor. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A soma de verificação do arquivo baixado não corresponde à soma de verificação fornecida pelo servidor. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A soma de verificação do arquivo baixado não corresponde à soma de verificação fornecida pelo servidor. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The downloaded file's checksum does not match the checksum provided by the server." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The downloaded file's checksum does not match the checksum provided by the server." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A soma de verificação do arquivo baixado não corresponde à soma de verificação fornecida pelo servidor. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "The downloaded file's checksum does not match the checksum provided by the server." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "The downloaded file's checksum does not match the checksum provided by the server." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Checksum-i i kartelës së shkarkuar nuk përputhet me checksum-in e dhënë nga shërbyesi." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Checksum-i i kartelës së shkarkuar nuk përputhet me checksum-in e dhënë nga shërbyesi." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบทรัพยากร" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบทรัพยากร" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบทรัพยากร" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบทรัพยากร" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İndirilen dosyanın sağlama toplamı, sunucu tarafından sağlanan sağlama toplamı ile eşleşmiyor." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İndirilen dosyanın sağlama toplamı, sunucu tarafından sağlanan sağlama toplamı ile eşleşmiyor." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "The downloaded file's checksum does not match the checksum provided by the server." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "The downloaded file's checksum does not match the checksum provided by the server." } } } }, - "The file no longer exists on the server in this location.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "The file no longer exists on the server in this location." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Die Datei existiert auf dem Server nicht mehr an diesem Ort." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die Datei existiert auf dem Server nicht mehr an diesem Ort." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "The file no longer exists on the server in this location." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "The file no longer exists on the server in this location." } } } }, - "The logged in user is not matching the required user ID.": { - "comment": "OCErrorAuthorizationNotMatchingRequiredUserID", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The logged in user is not matching the required user ID." + "The logged in user is not matching the required user ID." : { + "comment" : "OCErrorAuthorizationNotMatchingRequiredUserID", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The logged in user is not matching the required user ID." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Der angemeldete Benutzer stimmt nicht mit der erforderlichen Benutzer-ID überein." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der angemeldete Benutzer stimmt nicht mit der erforderlichen Benutzer-ID überein." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The logged in user is not matching the required user ID." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The logged in user is not matching the required user ID." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The logged in user is not matching the required user ID." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The logged in user is not matching the required user ID." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The logged in user is not matching the required user ID." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The logged in user is not matching the required user ID." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "El usuario que inició sesión no coincide con el ID de usuario requerido." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "El usuario que inició sesión no coincide con el ID de usuario requerido." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "The logged in user is not matching the required user ID." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The logged in user is not matching the required user ID." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "로그인한 사용자가 요구된 사용자 ID와 일치하지 않습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "로그인한 사용자가 요구된 사용자 ID와 일치하지 않습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The logged in user is not matching the required user ID." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The logged in user is not matching the required user ID." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The logged in user is not matching the required user ID." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The logged in user is not matching the required user ID." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The logged in user is not matching the required user ID." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The logged in user is not matching the required user ID." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O usuário conectado não corresponde ao ID de usuário necessário. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O usuário conectado não corresponde ao ID de usuário necessário. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O usuário conectado não corresponde ao ID de usuário necessário. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The logged in user is not matching the required user ID." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The logged in user is not matching the required user ID." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O usuário conectado não corresponde ao ID de usuário necessário. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "The logged in user is not matching the required user ID." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "The logged in user is not matching the required user ID." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Përdoruesi i futur nuk përputhet me ID-në e kërkuar të përdoruesit." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përdoruesi i futur nuk përputhet me ID-në e kërkuar të përdoruesit." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ผู้ใช้ที่ล็อกอินไม่ตรงกับ ID ผู้ใช้ที่ต้องการ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ผู้ใช้ที่ล็อกอินไม่ตรงกับ ID ผู้ใช้ที่ต้องการ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ผู้ใช้ที่ล็อกอินไม่ตรงกับ ID ผู้ใช้ที่ต้องการ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ผู้ใช้ที่ล็อกอินไม่ตรงกับ ID ผู้ใช้ที่ต้องการ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Oturum açan kullanıcı, gerekli kullanıcı kimliğiyle eşleşmiyor." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oturum açan kullanıcı, gerekli kullanıcı kimliğiyle eşleşmiyor." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "The logged in user is not matching the required user ID." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "The logged in user is not matching the required user ID." } } } }, - "The operation on the targeted item is not allowed.": { - "comment": "OCErrorItemOperationForbidden", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The operation on the targeted item is not allowed." + "The operation on the targeted item is not allowed." : { + "comment" : "OCErrorItemOperationForbidden", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation on the targeted item is not allowed." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Der Vorgang am Zielelement ist nicht erlaubt." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der Vorgang am Zielelement ist nicht erlaubt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The operation on the targeted item is not allowed." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation on the targeted item is not allowed." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The operation on the targeted item is not allowed." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation on the targeted item is not allowed." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The operation on the targeted item is not allowed." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation on the targeted item is not allowed." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La operación en el artículo apuntado no está permitida." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La operación en el artículo apuntado no está permitida." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "L'opération sur l'élément ciblé n'est pas autorisée." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'opération sur l'élément ciblé n'est pas autorisée." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "대상 항목에 대한 작업이 허용되지 않습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대상 항목에 대한 작업이 허용되지 않습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The operation on the targeted item is not allowed." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation on the targeted item is not allowed." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "The operation on the targeted item is not allowed." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation on the targeted item is not allowed." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The operation on the targeted item is not allowed." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation on the targeted item is not allowed." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "The operation on the targeted item is not allowed." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation on the targeted item is not allowed." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The operation on the targeted item is not allowed." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation on the targeted item is not allowed." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A operação no item de destino não é permitida." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A operação no item de destino não é permitida." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A operação no item de destino não é permitida." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation on the targeted item is not allowed." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The operation on the targeted item is not allowed." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A operação no item de destino não é permitida." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Операция над указанным элементом не разрешена." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Операция над указанным элементом не разрешена." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Veprimi s’është i lejueshëm mbi objektin e synuar." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veprimi s’është i lejueshëm mbi objektin e synuar." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่อนุญาตให้ดำเนินการกับรายการเป้าหมาย" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่อนุญาตให้ดำเนินการกับรายการเป้าหมาย" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่อนุญาตให้ดำเนินการกับรายการเป้าหมาย" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่อนุญาตให้ดำเนินการกับรายการเป้าหมาย" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Hedeflenen öğe üzerinde işleme izin verilmiyor." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hedeflenen öğe üzerinde işleme izin verilmiyor." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "不允许在指定的项目上进行操作。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "不允许在指定的项目上进行操作。" } } } }, - "The operation was cancelled.": { - "comment": "OCErrorCancelled", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The operation was cancelled." + "The operation was cancelled." : { + "comment" : "OCErrorCancelled", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation was cancelled." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Der Vorgang wurde abgebrochen." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der Vorgang wurde abgebrochen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The operation was cancelled." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation was cancelled." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The operation was cancelled." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation was cancelled." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The operation was cancelled." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation was cancelled." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La operación fue cancelada." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La operación fue cancelada." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "L'opération a été annulée." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'opération a été annulée." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "작업이 취소되었습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "작업이 취소되었습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The operation was cancelled." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation was cancelled." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "The operation was cancelled." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation was cancelled." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The operation was cancelled." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation was cancelled." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "The operation was cancelled." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation was cancelled." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The operation was cancelled." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation was cancelled." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A operação foi cancelada." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A operação foi cancelada." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A operação foi cancelada." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The operation was cancelled." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The operation was cancelled." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A operação foi cancelada." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Операция была отменена." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Операция была отменена." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Veprimi u anulua." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veprimi u anulua." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "การดำเนินการถูกยกเลิก" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การดำเนินการถูกยกเลิก" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "การดำเนินการถูกยกเลิก" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "การดำเนินการถูกยกเลิก" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "İşlem iptal edildi." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "İşlem iptal edildi." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "该操作已取消。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "该操作已取消。" } } } }, - "The provided path is not normalized.": { - "comment": "OCErrorUnnormalizedPath", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The provided path is not normalized." + "The provided path is not normalized." : { + "comment" : "OCErrorUnnormalizedPath", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The provided path is not normalized." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Der angegebene Pfad ist nicht normalisiert." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Der angegebene Pfad ist nicht normalisiert." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The provided path is not normalized." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The provided path is not normalized." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The provided path is not normalised." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The provided path is not normalised." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The provided path is not normalised." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The provided path is not normalised." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "La ruta proporcionada no está normalizada." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La ruta proporcionada no está normalizada." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "The provided path is not normalized." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The provided path is not normalized." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "제공된 경로가 정규화되지 않았습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "제공된 경로가 정규화되지 않았습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The provided path is not normalized." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The provided path is not normalized." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The provided path is not normalized." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The provided path is not normalized." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The provided path is not normalized." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The provided path is not normalized." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O caminho fornecido não está normalizado. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O caminho fornecido não está normalizado. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O caminho fornecido não está normalizado. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The provided path is not normalized." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The provided path is not normalized." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O caminho fornecido não está normalizado. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "The provided path is not normalized." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "The provided path is not normalized." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Shtegu i dhënë s’është i normalizuar." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shtegu i dhënë s’është i normalizuar." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Path ที่ระบุไม่ได้ทำให้เป็นค่าปกติ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Path ที่ระบุไม่ได้ทำให้เป็นค่าปกติ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Path ที่ระบุไม่ได้ทำให้เป็นค่าปกติ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Path ที่ระบุไม่ได้ทำให้เป็นค่าปกติ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Sağlanan yol normalleştirilmedi." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sağlanan yol normalleştirilmedi." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "The provided path is not normalized." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "The provided path is not normalized." } } } }, - "The target directory %@ doesn't seem to exist.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The target directory %@ doesn't seem to exist." + "The target directory %@ doesn't seem to exist." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target directory %@ doesn't seem to exist." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Das Zielverzeichnis %@ scheint nicht zu existieren." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Zielverzeichnis %@ scheint nicht zu existieren." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The target directory %@ doesn't seem to exist." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target directory %@ doesn't seem to exist." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The target directory %@ doesn't seem to exist." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target directory %@ doesn't seem to exist." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The target directory %@ doesn't seem to exist." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target directory %@ doesn't seem to exist." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Parece que no existe el directorio destino %@." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parece que no existe el directorio destino %@." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Le répertoire cible %@ ne semble pas exister." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Le répertoire cible %@ ne semble pas exister." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "대상 디렉터리 %@이(가) 존재하지 않습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대상 디렉터리 %@이(가) 존재하지 않습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The target directory %@ doesn't seem to exist." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target directory %@ doesn't seem to exist." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "The target directory %@ doesn't seem to exist." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target directory %@ doesn't seem to exist." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The target directory %@ doesn't seem to exist." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target directory %@ doesn't seem to exist." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "The target directory %@ doesn't seem to exist." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target directory %@ doesn't seem to exist." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The target directory %@ doesn't seem to exist." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target directory %@ doesn't seem to exist." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O diretório de destino %@ parece não existir." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O diretório de destino %@ parece não existir." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O diretório de destino %@ parece não existir." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target directory %@ doesn't seem to exist." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The target directory %@ doesn't seem to exist." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O diretório de destino %@ parece não existir." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Похоже, целевой каталог %@ не существует." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Похоже, целевой каталог %@ не существует." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Drejtoria objektiv %@ s’duket se ekziston." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Drejtoria objektiv %@ s’duket se ekziston." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบไดเร็กทอรี %@" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบไดเร็กทอรี %@" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบไดเร็กทอรี %@" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบไดเร็กทอรี %@" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Hedef klasörü %@ bulunamadı." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hedef klasörü %@ bulunamadı." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "目标目录 %@ 似乎不存在。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "目标目录 %@ 似乎不存在。" } } } }, - "The target location has not been found.": { - "comment": "OCErrorItemDestinationNotFound", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "The target location has not been found." : { + "comment" : "OCErrorItemDestinationNotFound", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Das Ziel wurde nicht gefunden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Ziel wurde nicht gefunden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O local de destino não foi encontrado." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O local de destino não foi encontrado." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O local de destino não foi encontrado." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O local de destino não foi encontrado." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Vendndodhja e synuar nuk u gjet." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vendndodhja e synuar nuk u gjet." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "The target location has not been found." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "The target location has not been found." } } } }, - "The targeted item has changed.": { - "comment": "OCErrorItemChanged", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has changed." + "The targeted item has changed." : { + "comment" : "OCErrorItemChanged", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has changed." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Das Zielelement hat sich geändert." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Zielelement hat sich geändert." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has changed." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has changed." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has changed." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has changed." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has changed." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has changed." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "El elemento de destino ha cambiado." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "El elemento de destino ha cambiado." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "L'élément ciblé a changé." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'élément ciblé a changé." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "대상 항목이 변경되었습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대상 항목이 변경되었습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has changed." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has changed." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has changed." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has changed." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has changed." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has changed." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has changed." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has changed." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has changed." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has changed." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O item referenciadoado foi alterado." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O item referenciadoado foi alterado." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O item referenciadoado foi alterado." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has changed." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has changed." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O item referenciadoado foi alterado." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Указанный элемент изменился." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Указанный элемент изменился." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Objekti i synuar ka ndryshuar." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekti i synuar ka ndryshuar." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "รายการเป้าหมายมีการเปลี่ยนแปลง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายการเป้าหมายมีการเปลี่ยนแปลง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "รายการเป้าหมายมีการเปลี่ยนแปลง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายการเป้าหมายมีการเปลี่ยนแปลง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Seçili öge değiştirildi." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seçili öge değiştirildi." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "目标项目已被更改。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "目标项目已被更改。" } } } }, - "The targeted item has not been found.": { - "comment": "OCErrorItemNotFound", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has not been found." + "The targeted item has not been found." : { + "comment" : "OCErrorItemNotFound", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has not been found." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Das Zielelement wurde nicht gefunden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Das Zielelement wurde nicht gefunden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has not been found." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has not been found." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has not been found." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has not been found." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has not been found." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has not been found." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "El elemento apuntado no ha sido encontrado." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "El elemento apuntado no ha sido encontrado." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "L'élément ciblé n'a pas été trouvé." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "L'élément ciblé n'a pas été trouvé." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "대상 항목을 찾을 수 없습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "대상 항목을 찾을 수 없습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has not been found." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has not been found." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has not been found." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has not been found." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has not been found." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has not been found." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has not been found." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has not been found." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has not been found." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has not been found." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O item de destino não foi encontrado." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O item de destino não foi encontrado." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O item de destino não foi encontrado." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The targeted item has not been found." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "The targeted item has not been found." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O item de destino não foi encontrado." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Не найден указанный элемент." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Не найден указанный элемент." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Objekti i synuar nuk u gjet." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekti i synuar nuk u gjet." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบรายการเป้าหมาย" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบรายการเป้าหมาย" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่พบรายการเป้าหมาย" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่พบรายการเป้าหมาย" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Seçili öge bulunamadı." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Seçili öge bulunamadı." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "未找到目标项目。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "未找到目标项目。" } } } }, - "There already is an item at the destination of this action.": { - "comment": "OCErrorItemAlreadyExists", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "There already is an item at the destination of this action." - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Am Ziel dieser Aktion befindet sich bereits ein Element." + "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "There already is an item at the destination of this action." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die von Ihnen angegebene URL verwendet das HTTP- und nicht das HTTPS-Schema, sodass Ihre Kommunikation nicht verschlüsselt wäre." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "There already is an item at the destination of this action." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "There already is an item at the destination of this action." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Ya hay un elemento en el destino de esta acción." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Il y a déjà un élément à la destination de cette action." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La URL usa HTTP en lugar de HTTPS. Si Vd. continua, la comunicación no será encriptada." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "현재 작업의 대상에 항목이 이미 있습니다." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "There already is an item at the destination of this action." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "제공한 URL은 HTTPS 구성표 대신 HTTP를 사용하므로, 통신이 암호화되지 않습니다." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "There already is an item at the destination of this action." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "There already is an item at the destination of this action." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "There already is an item at the destination of this action." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "There already is an item at the destination of this action." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O URL que você forneceu usa o esquema HTTP, e não o HTTPS, logo sua comunicação não será criptografada." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Já existe um item no destino desta ação." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Já existe um item no destino desta ação." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O URL que você forneceu usa o esquema HTTP, e não o HTTPS, logo sua comunicação não será criptografada." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "There already is an item at the destination of this action." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "В месте назначения этого действия уже есть элемент." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL-ja që dhatë përdor HTTP, në vend se skemën HTTPS, ndaj komunikimi juaj s’do të jetë i fshehtëzuar." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ka tashmë një objekt te destinacioni për këtë veprim." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คถุณกำลังใช้งาน URL HTTP แทนที่จะเป็นรูปแบบ HTTPS ดังนั้นการสื่อสารของคุณจะไม่ถูกเข้ารหัส" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "มีการกระทำรายการนี้อยู่ที่ปลายทางแล้ว" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คถุณกำลังใช้งาน URL HTTP แทนที่จะเป็นรูปแบบ HTTPS ดังนั้นการสื่อสารของคุณจะไม่ถูกเข้ารหัส" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "มีการกระทำรายการนี้อยู่ที่ปลายทางแล้ว" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sağladığınız URL, HTTPS şeması yerine HTTP kullanır, bu nedenle iletişiminiz şifrelenmez." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bu işlemin hedefinde zaten bir öğe var." - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "There already is an item at the destination of this action." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } } } }, - "This feature is currently not implemented": { - "comment": "OCErrorFeatureNotImplemented", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "This feature is currently not implemented" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Diese Funktion ist derzeit nicht implementiert." + "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This feature is currently not implemented" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Die von Ihnen angegebene URL verwendet das HTTP- und nicht das HTTPS-Schema. Wenn Sie fortfahren, wird Ihre Kommunikation nicht verschlüsselt." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "This feature is currently not implemented" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "This feature is currently not implemented" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Esta función no está actualmente implementada" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Cette fonctionnalité n'est actuellement pas implémentée" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "La URL usa HTTP en lugar de HTTPS. Si Vd. continua, la comunicación no será encriptada." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "이 기능은 현재 구현되지 않았습니다." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "This feature is currently not implemented" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "제공한 URL은 HTTPS 구성표 대신 HTTP를 사용합니다. 계속하면 통신이 암호화되지 않습니다." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "This feature is currently not implemented" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "This feature is currently not implemented" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "This feature is currently not implemented" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "This feature is currently not implemented" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O URL fornecido por você usa o HTTP em vez do esquema HTTPS. Se você continuar, sua comunicação não será criptografada." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Este recurso não está atualmente implementado" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Este recurso não está atualmente implementado" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O URL fornecido por você usa o HTTP em vez do esquema HTTPS. Se você continuar, sua comunicação não será criptografada." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "This feature is currently not implemented" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Эта возможность в настоящий момент не реализована" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL-ja që dhatë përdor HTTP, në vend se skemën HTTPS. Nëse vazhdoni, komunikimi juaj s’do të jetë i fshehtëzuar." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kjo veçori hëpërhë s’është sendërtuar" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ที่คุณระบุใช้โปรโตคอล HTTP หากคุณดำเนินการต่อการสื่อสารของคุณจะไม่ถูกเข้ารหัส (แนะนำให้ใช้ HTTPS แทน)" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ยังไม่เปิดใช้งานคุณลักษณะนี้ในปัจจุบัน" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL ที่คุณระบุใช้โปรโตคอล HTTP หากคุณดำเนินการต่อการสื่อสารของคุณจะไม่ถูกเข้ารหัส (แนะนำให้ใช้ HTTPS แทน)" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ยังไม่เปิดใช้งานคุณลักษณะนี้ในปัจจุบัน" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sağladığınız URL, HTTPS şeması yerine HTTP'yi kullanır. Devam ederseniz, iletişiminiz şifrelenmeyecektir." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bu özellik henüz eklenmedi" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "此功能未实装" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } } } }, - "This feature is not supported for this item.": { - "comment": "OCErrorFeatureNotSupportedForItem", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this item." + "There already is an item at the destination of this action." : { + "comment" : "OCErrorItemAlreadyExists", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "There already is an item at the destination of this action." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Diese Funktion wird für dieses Element nicht unterstützt." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Am Ziel dieser Aktion befindet sich bereits ein Element." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this item." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "There already is an item at the destination of this action." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this item." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "There already is an item at the destination of this action." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this item." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "There already is an item at the destination of this action." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Esta función no es compatible con este elemento." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ya hay un elemento en el destino de esta acción." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Cette fonctionnalité n'est pas prise en charge pour cet élément." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Il y a déjà un élément à la destination de cette action." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "이 항목은이 기능을 지원하지 않습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "현재 작업의 대상에 항목이 이미 있습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this item." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "There already is an item at the destination of this action." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this item." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "There already is an item at the destination of this action." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this item." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "There already is an item at the destination of this action." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this item." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "There already is an item at the destination of this action." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this item." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "There already is an item at the destination of this action." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Este recurso não é suportado para este item." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Já existe um item no destino desta ação." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Este recurso não é suportado para este item." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "There already is an item at the destination of this action." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this item." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Já existe um item no destino desta ação." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Эта возможность не поддерживается для данного элемента." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "В месте назначения этого действия уже есть элемент." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kjo veçori nuk mbulohet për këtë objekt." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ka tashmë një objekt te destinacioni për këtë veprim." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "คุณสมบัตินี้ไม่รองรับสำหรับรายการนี้" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "มีการกระทำรายการนี้อยู่ที่ปลายทางแล้ว" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "คุณสมบัตินี้ไม่รองรับสำหรับรายการนี้" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "มีการกระทำรายการนี้อยู่ที่ปลายทางแล้ว" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bu özellik seçili öğe için desteklenmez." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu işlemin hedefinde zaten bir öğe var." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "此项不支持此功能。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "There already is an item at the destination of this action." } } } }, - "This feature is not supported for this server (version).": { - "comment": "OCErrorFeatureNotSupportedByServer", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this server (version)." + "This feature is currently not implemented" : { + "comment" : "OCErrorFeatureNotImplemented", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is currently not implemented" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Diese Funktion wird für diesen Server bzw. in dieser Version nicht unterstützt." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Funktion ist derzeit nicht implementiert." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this server (version)." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is currently not implemented" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this server (version)." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is currently not implemented" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this server (version)." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is currently not implemented" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Esta función no está soportada en este servidor (versión)." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta función no está actualmente implementada" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Cette fonctionnalité n'est pas supportée pour ce serveur (version)." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cette fonctionnalité n'est actuellement pas implémentée" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "이 기능은 현재 서버(버전)에서 지원되지 않습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 기능은 현재 구현되지 않았습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this server (version)." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is currently not implemented" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this server (version)." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is currently not implemented" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this server (version)." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is currently not implemented" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this server (version)." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is currently not implemented" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this server (version)." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is currently not implemented" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Este recurso não é suportado para este (versão) servidor." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este recurso não está atualmente implementado" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Este recurso não é suportado para este (versão) servidor." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is currently not implemented" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "This feature is not supported for this server (version)." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este recurso não está atualmente implementado" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Эта возможность не поддерживается для данного сервера (версия)." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эта возможность в настоящий момент не реализована" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kjo veçori nuk mbulohet për këtë shërbyes (version)." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kjo veçori hëpërhë s’është sendërtuar" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์ยังไม่รองรับคุณสมบัตินี้" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยังไม่เปิดใช้งานคุณลักษณะนี้ในปัจจุบัน" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์ยังไม่รองรับคุณสมบัตินี้" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยังไม่เปิดใช้งานคุณลักษณะนี้ในปัจจุบัน" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bu özellik bu sunucu versiyonu tarafından desteklenmez." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu özellik henüz eklenmedi" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "此功能不受此服务器 (版本) 支持。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "此功能未实装" } } } }, - "This file is currently being processed and is not yet available for use. Please try again shortly.": { - "comment": "App Provider", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "This feature is not supported for this item." : { + "comment" : "OCErrorFeatureNotSupportedForItem", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this item." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Funktion wird für dieses Element nicht unterstützt." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Diese Datei wird derzeit verarbeitet und kann noch nicht verwendet werden. Bitte versuchen Sie es in Kürze erneut." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this item." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this item." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this item." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta función no es compatible con este elemento." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cette fonctionnalité n'est pas prise en charge pour cet élément." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 항목은이 기능을 지원하지 않습니다." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this item." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this item." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this item." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this item." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Este arquivo está sendo processado e ainda não está disponível para uso. Tente novamente em breve." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this item." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Este arquivo está sendo processado e ainda não está disponível para uso. Tente novamente em breve." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este recurso não é suportado para este item." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this item." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este recurso não é suportado para este item." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Kjo kartelë aktualisht po përpunohet dhe s’është ende e lirë për përdorim. Ju lutemi, riprovoni pas pak." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эта возможность не поддерживается для данного элемента." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kjo veçori nuk mbulohet për këtë objekt." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณสมบัตินี้ไม่รองรับสำหรับรายการนี้" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณสมบัตินี้ไม่รองรับสำหรับรายการนี้" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu özellik seçili öğe için desteklenmez." + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "此项不支持此功能。" } } } }, - "This server runs an unsupported version (%@). Version %@ or later is required by this app.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "This feature is not supported for this server (version)." : { + "comment" : "OCErrorFeatureNotSupportedByServer", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this server (version)." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Auf diesem Server wird eine nicht unterstützte Version (%@) ausgeführt. Die Version %@ oder höher wird von dieser App benötigt." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Funktion wird für diesen Server bzw. in dieser Version nicht unterstützt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this server (version)." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this server (version)." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this server (version)." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Este servidor ejecuta una versión no soportada (%@). La versión %@o posterior es necesaria para utilizar esta aplicación." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta función no está soportada en este servidor (versión)." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Ce serveur exécute une version non supporté (%@). La version %@ou une version ultérieure est requise par cette application." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cette fonctionnalité n'est pas supportée pour ce serveur (version)." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "이 서버는 지원되지 않는 버전(%@)을 실행합니다. 이 앱에는 버전 %@ 이상이 필요합니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 기능은 현재 서버(버전)에서 지원되지 않습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this server (version)." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this server (version)." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this server (version)." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this server (version)." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this server (version)." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Este servidor roda uma versão não suportada ( %@ ). Versão %@ ou superior, é requerida para rodar este aplicativo." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este recurso não é suportado para este (versão) servidor." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Este servidor roda uma versão não suportada ( %@ ). Versão %@ ou superior, é requerida para rodar este aplicativo." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "This feature is not supported for this server (version)." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este recurso não é suportado para este (versão) servidor." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "На сервере работает неподдерживаемая версия (%@). Для данного приложения требуется версия %@ или позже." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эта возможность не поддерживается для данного сервера (версия)." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ky shërbyes xhiron një version të pambuluar (%@). Ky aplikacion lyp versionin %@ ose të mëvonshëm." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kjo veçori nuk mbulohet për këtë shërbyes (version)." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์นี้กำลังใช้เวอร์ชันที่ไม่ได้รับการสนับสนุน (%@) เวอร์ชัน %@ หรือเก่ากว่าที่แอปนี้ต้องการ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์ยังไม่รองรับคุณสมบัตินี้" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เซิร์ฟเวอร์นี้กำลังใช้เวอร์ชันที่ไม่ได้รับการสนับสนุน (%@) เวอร์ชัน %@ หรือเก่ากว่าที่แอปนี้ต้องการ" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์ยังไม่รองรับคุณสมบัตินี้" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bu sunucu desteklenmeyen%@sürümünü çalıştırmakta, fakat uygulama için %@versiyonu gerekmektedir." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu özellik bu sunucu versiyonu tarafından desteklenmez." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "此功能不受此服务器 (版本) 支持。" } } } }, - "This server version is not supported.": { - "comment": "OCErrorServerVersionNotSupported", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "This server version is not supported." - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Diese Server-Version wird nicht unterstützt." + "This file is currently being processed and is not yet available for use. Please try again shortly." : { + "comment" : "App Provider", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This server version is not supported." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Datei wird derzeit verarbeitet und kann noch nicht verwendet werden. Bitte versuchen Sie es in Kürze erneut." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "This server version is not supported." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "This server version is not supported." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Esta versión del servidor no es compatible." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Cette version de serveur n'est pas supportée." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "이 서버 버전은 지원되지 않습니다." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "This server version is not supported." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "This server version is not supported." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "This server version is not supported." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "This server version is not supported." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "This server version is not supported." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este arquivo está sendo processado e ainda não está disponível para uso. Tente novamente em breve." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Esta versão do servidor não é suportada." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Esta versão do servidor não é suportada." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este arquivo está sendo processado e ainda não está disponível para uso. Tente novamente em breve." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "This server version is not supported." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Эта версия сервера не поддерживается." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kjo kartelë aktualisht po përpunohet dhe s’është ende e lirë për përdorim. Ju lutemi, riprovoni pas pak." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ky version shërbyesi nuk mbulohet." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ยังไม่รองรับเซิร์ฟเวอร์เวอร์ชันนี้" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ยังไม่รองรับเซิร์ฟเวอร์เวอร์ชันนี้" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bu sunucu versiyonu desteklenmiyor." - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "不支持的服务器版本。" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." } } } }, - "Thumbnail database size": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Thumbnail database size" + "This server runs an unsupported version (%@). Version %@ or later is required by this app." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Auf diesem Server wird eine nicht unterstützte Version (%@) ausgeführt. Die Version %@ oder höher wird von dieser App benötigt." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Größe der Miniaturbild-Datenbank" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Thumbnail database size" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Thumbnail database size" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Thumbnail database size" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este servidor ejecuta una versión no soportada (%@). La versión %@o posterior es necesaria para utilizar esta aplicación." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Tamaño de la base de datos de miniaturas" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ce serveur exécute une version non supporté (%@). La version %@ou une version ultérieure est requise par cette application." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Thumbnail database size" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 서버는 지원되지 않는 버전(%@)을 실행합니다. 이 앱에는 버전 %@ 이상이 필요합니다." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "데이터베이스 크기 미리 보기 그림" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Thumbnail database size" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Thumbnail database size" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Thumbnail database size" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Tamanho do banco de dados de miniaturas " + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Tamanho do banco de dados de miniaturas " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este servidor roda uma versão não suportada ( %@ ). Versão %@ ou superior, é requerida para rodar este aplicativo." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Thumbnail database size" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Thumbnail database size" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Este servidor roda uma versão não suportada ( %@ ). Versão %@ ou superior, é requerida para rodar este aplicativo." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Madhësi baze të dhënash miniaturash" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "На сервере работает неподдерживаемая версия (%@). Для данного приложения требуется версия %@ или позже." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ขนาดฐานข้อมูลภาพขนาดย่อ" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ky shërbyes xhiron një version të pambuluar (%@). Ky aplikacion lyp versionin %@ ose të mëvonshëm." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ขนาดฐานข้อมูลภาพขนาดย่อ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์นี้กำลังใช้เวอร์ชันที่ไม่ได้รับการสนับสนุน (%@) เวอร์ชัน %@ หรือเก่ากว่าที่แอปนี้ต้องการ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Küçük resim veritabanı boyutu" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เซิร์ฟเวอร์นี้กำลังใช้เวอร์ชันที่ไม่ได้รับการสนับสนุน (%@) เวอร์ชัน %@ หรือเก่ากว่าที่แอปนี้ต้องการ" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Thumbnail database size" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sunucu desteklenmeyen%@sürümünü çalıştırmakta, fakat uygulama için %@versiyonu gerekmektedir." + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." } } } }, - "Timestamp": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Timestamp" + "This server version is not supported." : { + "comment" : "OCErrorServerVersionNotSupported", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server version is not supported." + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Diese Server-Version wird nicht unterstützt." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Zeitstempel" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server version is not supported." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Timestamp" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server version is not supported." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Timestamp" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server version is not supported." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Timestamp" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta versión del servidor no es compatible." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Marca de tiempo" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cette version de serveur n'est pas supportée." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Timestamp" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 서버 버전은 지원되지 않습니다." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "타임 스탬프" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server version is not supported." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Timestamp" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server version is not supported." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Timestamp" + "nb-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server version is not supported." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Timestamp" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server version is not supported." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Carimbo de tempo " + "nn-NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server version is not supported." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Carimbo de tempo " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta versão do servidor não é suportada." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Timestamp" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "This server version is not supported." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Timestamp" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esta versão do servidor não é suportada." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Vulë kohore" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Эта версия сервера не поддерживается." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ประทับเวลา" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ky version shërbyesi nuk mbulohet." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ประทับเวลา" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยังไม่รองรับเซิร์ฟเวอร์เวอร์ชันนี้" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Zaman damgası" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ยังไม่รองรับเซิร์ฟเวอร์เวอร์ชันนี้" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Timestamp" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu sunucu versiyonu desteklenmiyor." + } + }, + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "不支持的服务器版本。" } } } }, - "Too few {{localizedName}}": { - "comment": "Password Policy", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "Thumbnail database size" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail database size" + } + }, + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Größe der Miniaturbild-Datenbank" + } + }, + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail database size" + } + }, + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail database size" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Zu wenige {{localizedName}}" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail database size" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamaño de la base de datos de miniaturas" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail database size" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터베이스 크기 미리 보기 그림" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail database size" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail database size" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail database size" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamanho do banco de dados de miniaturas " } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail database size" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tamanho do banco de dados de miniaturas " } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail database size" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Madhësi baze të dhënash miniaturash" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ขนาดฐานข้อมูลภาพขนาดย่อ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ขนาดฐานข้อมูลภาพขนาดย่อ" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Küçük resim veritabanı boyutu" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Too few {{localizedName}}" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Thumbnail database size" } } } }, - "Too many {{localizedName}}": { - "comment": "Password Policy", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "Timestamp" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timestamp" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Zu viele {{localizedName}}" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zeitstempel" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timestamp" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timestamp" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timestamp" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Marca de tiempo" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timestamp" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "타임 스탬프" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timestamp" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timestamp" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timestamp" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carimbo de tempo " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timestamp" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carimbo de tempo " } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timestamp" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vulë kohore" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Too many {{localizedName}}" - } - } - } - }, - "Total Items": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Total Items" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Elemente insgesamt" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Total Items" - } - }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Total Items" - } - }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Total Items" - } - }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Artículos totales" - } - }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Total Items" - } - }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "모든 항목" - } - }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Total Items" - } - }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Total Items" - } - }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Total Items" - } - }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Total de Itens" - } - }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Total de Itens" - } - }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Total Items" - } - }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Total Items" - } - }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Objekte gjithsej" - } - }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "รายการทั้งหมด" - } - }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "รายการทั้งหมด" - } - }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Toplam Öge" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Total Items" - } - } - } - }, - "URL": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "es": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "URL" - } - } - } - }, - "UUID": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "es": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "UUID" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ประทับเวลา" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "UUID" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ประทับเวลา" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "UUID" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zaman damgası" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "UUID" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "UUID" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Timestamp" } } } }, - "Unknown share type.": { - "comment": "OCErrorShareUnknownType", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Unknown share type." - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Unbekannter Freigabetyp." - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Unknown share type." - } - }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Unknown share type." + "Too few {{localizedName}}" : { + "comment" : "Password Policy", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Unknown share type." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zu wenige {{localizedName}}" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Tipo de compartido desconocido." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Unknown share type." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "알 수 없는 공유 유형" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Unknown share type." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Unknown share type." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Unknown share type." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Tipo de compartilhamento desconhecido." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Tipo de compartilhamento desconhecido." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Unknown share type." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Unknown share type." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Lloj i panjohur pjese." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ประเภทการแชร์ที่ไม่รู้จัก" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ประเภทการแชร์ที่ไม่รู้จัก" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bilinmeyen paylaşım türü." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Unknown share type." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too few {{localizedName}}" } } } }, - "Unknown user": { - "comment": "OCErrorUnknownUser", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Unknown user" + "Too many {{localizedName}}" : { + "comment" : "Password Policy", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Unbekannter Benutzer" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zu viele {{localizedName}}" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Unknown user" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Unknown user" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Unknown user" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Usuario desconocido" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Unknown user" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "알려지지 않은 사용자" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Unknown user" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Unknown user" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Unknown user" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Usuário desconhecido" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Usuário desconhecido" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Unknown user" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Unknown user" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Përdorues i panjohur" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่รู้จักผู้ใช้" - } - }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่รู้จักผู้ใช้" - } - }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bilinmeyen kullanıcı" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Unknown user" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Too many {{localizedName}}" } } } }, - "Update failed with status code %lu": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Update mit Status-Code %lu fehlgeschlagen." - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Update failed with status code %lu" - } - } - } - }, - "Updating metadata for '%@'…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Aktualisiere Metadaten für ‚%@‘…" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" - } - }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" - } - }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" - } - }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" - } - }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" - } - }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" - } - }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" - } - }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" + "Total Items" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total Items" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Elemente insgesamt" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total Items" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total Items" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total Items" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Artículos totales" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total Items" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Updating metadata for '%@'…" - } - } - } - }, - "Updating share…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Freigabe aktualisieren…" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" - } - }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" - } - }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "모든 항목" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total Items" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total Items" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total Items" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total de Itens" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total Items" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total de Itens" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total Items" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Objekte gjithsej" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายการทั้งหมด" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "รายการทั้งหมด" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Toplam Öge" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Updating share…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Total Items" } } } }, - "Upgrading database…": { - "comment": "Database upgrades", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Upgrading database…" + "Unknown share type." : { + "comment" : "OCErrorShareUnknownType", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown share type." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Aktualisiere Datenbank…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unbekannter Freigabetyp." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Upgrading database…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown share type." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Upgrading database…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown share type." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Upgrading database…" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown share type." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Actualizando la base de datos…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de compartido desconocido." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Upgrading database…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown share type." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "데이터베이스 업그레이드 중..." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알 수 없는 공유 유형" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Upgrading database…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown share type." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Upgrading database…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown share type." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Upgrading database…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown share type." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Atualizando banco de dados... " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de compartilhamento desconhecido." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Atualizando banco de dados... " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown share type." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Upgrading database…" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tipo de compartilhamento desconhecido." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Upgrading database…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown share type." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po përmirësohet baza e të dhënave…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lloj i panjohur pjese." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังอัปเกรดฐานข้อมูล..." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ประเภทการแชร์ที่ไม่รู้จัก" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังอัปเกรดฐานข้อมูล..." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ประเภทการแชร์ที่ไม่รู้จัก" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Veritabanı güncelleniyor..." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinmeyen paylaşım türü." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Upgrading database…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown share type." } } } }, - "Upload, edit, delete, download and preview": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "Unknown user" : { + "comment" : "OCErrorUnknownUser", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown user" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Hochladen, Bearbeiten, Löschen, Herunterladen und Vorschau" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unbekannter Benutzer" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown user" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown user" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown user" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuario desconocido" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown user" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "알려지지 않은 사용자" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown user" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown user" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown user" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Carregar, editar, excluir, baixar e visualizar" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuário desconhecido" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Carregar, editar, excluir, baixar e visualizar" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown user" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usuário desconhecido" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown user" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ngarkoni, përpunoni, fshini, shkarkoni dhe bëni paraparje" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Përdorues i panjohur" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่รู้จักผู้ใช้" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่รู้จักผู้ใช้" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bilinmeyen kullanıcı" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download and preview" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown user" } } } }, - "Upload, edit, delete, download, preview and share": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "Update failed with status code %lu" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Hochladen, Bearbeiten, Löschen, Herunterladen, Vorschau und Teilen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update mit Status-Code %lu fehlgeschlagen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Carregar, editar, excluir, baixar, visualizar e compartilhar" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Carregar, editar, excluir, baixar, visualizar e compartilhar" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ngarkoni, përpunoni, fshini, shkarkoni, bëni paraparje dhe ndani me të tjerë" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" - } - }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" - } - }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Upload, edit, delete, download, preview and share" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update failed with status code %lu" } } } }, - "Uploader": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Uploader" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Uploader" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Uploader" - } - }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "Updating metadata for '%@'…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualisiere Metadaten für ‚%@‘…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Enviador" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Enviador" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ngarkues" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Uploader" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating metadata for '%@'…" } } } }, - "Uploading %@…": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "Updating share…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Lade %@ hoch…" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Freigabe aktualisieren…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Uploading %@…" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Updating share…" } } } }, - "Uploads to this folder are not allowed.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Uploads to this folder are not allowed." + "Upgrading database…" : { + "comment" : "Database upgrades", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrading database…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Uploads in diesen Ordner sind nicht erlaubt." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aktualisiere Datenbank…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Uploads to this folder are not allowed." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrading database…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Uploads to this folder are not allowed." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrading database…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Uploads to this folder are not allowed." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrading database…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "No se permiten cargas a esta carpeta." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Actualizando la base de datos…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Uploads to this folder are not allowed." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrading database…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "이 폴더를 업로드하는 것은 허용되지 않습니다." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "데이터베이스 업그레이드 중..." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Uploads to this folder are not allowed." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrading database…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Uploads to this folder are not allowed." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrading database…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Uploads to this folder are not allowed." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrading database…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "O envio para esta pasta não é permitido. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atualizando banco de dados... " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "O envio para esta pasta não é permitido. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrading database…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Uploads to this folder are not allowed." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Atualizando banco de dados... " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Uploads to this folder are not allowed." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrading database…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Nuk lejohen ngarkime te kjo dosje." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po përmirësohet baza e të dhënave…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่อนุญาตให้อัปโหลดไปยังโฟลเดอร์นี้" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังอัปเกรดฐานข้อมูล..." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ไม่อนุญาตให้อัปโหลดไปยังโฟลเดอร์นี้" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังอัปเกรดฐานข้อมูล..." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bu klasöre yüklemelere izin verilmez." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Veritabanı güncelleniyor..." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Uploads to this folder are not allowed." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrading database…" } } } }, - "Use Origin URL as URL": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Use Origin URL as URL" + "Upload, edit, delete, download and preview" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ursprungs-URL als URL verwenden" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hochladen, Bearbeiten, Löschen, Herunterladen und Vorschau" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Use Origin URL as URL" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Use Origin URL as URL" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Use Origin URL as URL" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Usar URL de origen como URL" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Use Origin URL as URL" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "기존 URL을 URL로 사용" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Use Origin URL as URL" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Use Origin URL as URL" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Use Origin URL as URL" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Use a Original URL como URL " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregar, editar, excluir, baixar e visualizar" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Use a Original URL como URL " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Use Origin URL as URL" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregar, editar, excluir, baixar e visualizar" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Use Origin URL as URL" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Si URL përdor URL-në e Origjinës" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngarkoni, përpunoni, fshini, shkarkoni dhe bëni paraparje" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ใช้ URL ต้นทางเป็น URL" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ใช้ URL ต้นทางเป็น URL" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kaynak URL'yi URL olarak kullan" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Use Origin URL as URL" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download and preview" } } } }, - "User Name": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "User Name" + "Upload, edit, delete, download, preview and share" : { + "extractionState" : "stale", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Benutzername" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hochladen, Bearbeiten, Löschen, Herunterladen, Vorschau und Teilen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "User Name" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "User Name" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "User Name" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Nombre de usuario" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "User Name" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "사용자 이름" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "User Name" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "User Name" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "User Name" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Nome do Usuário " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregar, editar, excluir, baixar, visualizar e compartilhar" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Nome do Usuário " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "User Name" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Carregar, editar, excluir, baixar, visualizar e compartilhar" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "User Name" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Emër përdoruesi" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngarkoni, përpunoni, fshini, shkarkoni, bëni paraparje dhe ndani me të tjerë" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ชื่อผู้ใช้" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ชื่อผู้ใช้" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kullanıcı Adı" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "User Name" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload, edit, delete, download, preview and share" } } } }, - "UserInfo": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "UserInfo" + "Uploader" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Benutzer-Informationen" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "UserInfo" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "UserInfo" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "UserInfo" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Información de usuario" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "UserInfo" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "사용자정보" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "UserInfo" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "UserInfo" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "UserInfo" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Informação do Usuário " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviador" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Informação do Usuário " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "UserInfo" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enviador" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "UserInfo" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Hollësi Përdoruesi" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ngarkues" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "ข้อมูลผู้ใช้" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "ข้อมูลผู้ใช้" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "UserInfo" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "UserInfo" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploader" } } } }, - "Vacuum": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Vacuum" + "Uploading %@…" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Vakuum" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Lade %@ hoch…" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Vacuum" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Vacuum" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Vacuum" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Aspiradora" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Vacuum" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "진공" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Vacuum" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Vacuum" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Vacuum" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Vácuo " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Vácuo " + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Vacuum" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Vacuum" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Zbrazëti" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เครื่องดูดฝุ่น" - } - }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เครื่องดูดฝุ่น" - } - }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Vakum" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Vacuum" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading %@…" } } } }, - "Viewer": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "Uploads to this folder are not allowed." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploads to this folder are not allowed." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Betrachter" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploads in diesen Ordner sind nicht erlaubt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploads to this folder are not allowed." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploads to this folder are not allowed." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploads to this folder are not allowed." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "No se permiten cargas a esta carpeta." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploads to this folder are not allowed." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "이 폴더를 업로드하는 것은 허용되지 않습니다." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploads to this folder are not allowed." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploads to this folder are not allowed." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploads to this folder are not allowed." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Visualizador" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O envio para esta pasta não é permitido. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Visualizador" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploads to this folder are not allowed." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "O envio para esta pasta não é permitido. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploads to this folder are not allowed." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Parës" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nuk lejohen ngarkime te kjo dosje." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่อนุญาตให้อัปโหลดไปยังโฟลเดอร์นี้" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ไม่อนุญาตให้อัปโหลดไปยังโฟลเดอร์นี้" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bu klasöre yüklemelere izin verilmez." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploads to this folder are not allowed." } } } }, - "Wait Conditions": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Wait Conditions" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Wartebedingungen" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Wait Conditions" - } - }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Wait Conditions" + "upper-case characters" : { + "comment" : "Password Policy", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Wait Conditions" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Großbuchstaben" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Condiciones de espera" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Wait Conditions" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "조건 대기" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Wait Conditions" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Wait Conditions" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Wait Conditions" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Condições de Espera " + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Condições de Espera " + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Wait Conditions" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Wait Conditions" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Wait Conditions" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "เงื่อนไขการรอ" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "เงื่อนไขการรอ" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Bekleme Koşulları" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Wait Conditions" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "upper-case characters" } } } }, - "Waiting for metadata refresh": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Waiting for metadata refresh" + "URL" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Warten auf Aktualisierung der Metadaten" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Waiting for metadata refresh" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Waiting for metadata refresh" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Waiting for metadata refresh" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Esperando la actualización de los metadatos" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Waiting for metadata refresh" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "메타데이터 새로고침을 대기 중" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Waiting for metadata refresh" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Waiting for metadata refresh" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Waiting for metadata refresh" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Aguardando atualização de metadados " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Aguardando atualização de metadados " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Waiting for metadata refresh" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Waiting for metadata refresh" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po pritet për rifreskimin e tejtëdhënave" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังรอการรีเฟรชข้อมูล metadata" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังรอการรีเฟรชข้อมูล metadata" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Metadata yenilemesi bekleniyor" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Waiting for metadata refresh" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } } } }, - "Waiting for user": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Waiting for user" + "Use Origin URL as URL" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Origin URL as URL" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Warten auf den Benutzer" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ursprungs-URL als URL verwenden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Waiting for user" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Origin URL as URL" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Waiting for user" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Origin URL as URL" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Waiting for user" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Origin URL as URL" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Esperando al usuario" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Usar URL de origen como URL" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Waiting for user" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Origin URL as URL" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "사용자 대기 중" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "기존 URL을 URL로 사용" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Waiting for user" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Origin URL as URL" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Waiting for user" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Origin URL as URL" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Waiting for user" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Origin URL as URL" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Esperando pelo usuário " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use a Original URL como URL " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Esperando pelo usuário " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Origin URL as URL" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Waiting for user" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use a Original URL como URL " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Waiting for user" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Origin URL as URL" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po pritet për përdorues" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Si URL përdor URL-në e Origjinës" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังรอผู้ใช้" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ใช้ URL ต้นทางเป็น URL" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังรอผู้ใช้" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ใช้ URL ต้นทางเป็น URL" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Kullanıcı bekleniyor" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kaynak URL'yi URL olarak kullan" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Waiting for user" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use Origin URL as URL" } } } }, - "Waiting to retry (%ld of %ld)": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Waiting to retry (%ld of %ld)" + "User Name" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "User Name" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Warten auf Neuversuch (%ld von %ld)" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benutzername" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Waiting to retry (%ld of %ld)" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "User Name" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Waiting to retry (%ld of %ld)" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "User Name" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Waiting to retry (%ld of %ld)" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "User Name" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Esperando reintentar (%ld de %ld)" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nombre de usuario" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Waiting to retry (%ld of %ld)" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "User Name" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "재시도 대기 중 (%ld / %ld)" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 이름" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Waiting to retry (%ld of %ld)" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "User Name" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Waiting to retry (%ld of %ld)" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "User Name" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Waiting to retry (%ld of %ld)" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "User Name" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Esperando para tentar novamente (%ld de %ld)" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome do Usuário " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Esperando para tentar novamente (%ld de %ld)" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "User Name" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Waiting to retry (%ld of %ld)" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nome do Usuário " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Waiting to retry (%ld of %ld)" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "User Name" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Po pritet të riprovohet (%ld nga %ld)" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Emër përdoruesi" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังรอเพื่อลองใหม่ (%ld จาก %ld)" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ชื่อผู้ใช้" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "กำลังรอเพื่อลองใหม่ (%ld จาก %ld)" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ชื่อผู้ใช้" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yeniden denenmeyi bekliyor (%ld / %ld)" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcı Adı" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Waiting to retry (%ld of %ld)" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "User Name" } } } }, - "Web finger response lacks server instance relation.": { - "comment": "OCErrorWebFingerLacksServerInstanceRelation", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "UserInfo" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "UserInfo" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Webfinger-Antwort fehlt Bezug zur Serverinstanz." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Benutzer-Informationen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "UserInfo" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "UserInfo" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "UserInfo" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Información de usuario" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "UserInfo" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자정보" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "UserInfo" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "UserInfo" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "UserInfo" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "A resposta do dedo da Web carece de relação de instância do servidor." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informação do Usuário " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "A resposta do dedo da Web carece de relação de instância do servidor." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "UserInfo" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Informação do Usuário " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "UserInfo" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hollësi Përdoruesi" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อมูลผู้ใช้" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "ข้อมูลผู้ใช้" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "UserInfo" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "Web finger response lacks server instance relation." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "UserInfo" } } } }, - "You logged in as user %@, but must log in as user %@. Please retry.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "You logged in as user %@, but must log in as user %@. Please retry." + "UUID" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Sie haben sich als Benutzer %@ angemeldet, müssen sich aber als Benutzer %@ anmelden. Bitte versuchen Sie es erneut." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You logged in as user %@, but must log in as user %@. Please retry." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "You logged in as user %@, but must log in as user %@. Please retry." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "You logged in as user %@, but must log in as user %@. Please retry." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Ha iniciado sesión como usuario %@, pero debe iniciar sesión como usuario %@. Por favor, inténtalo de nuevo." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "You logged in as user %@, but must log in as user %@. Please retry." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "사용자 %@으로 로그인했지만 사용자 %@으로 로그인해야 합니다. 다시 시도하십시오." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "You logged in as user %@, but must log in as user %@. Please retry." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "You logged in as user %@, but must log in as user %@. Please retry." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "You logged in as user %@, but must log in as user %@. Please retry." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Você efetuou login como usuário %@, mas deve efetuar login como usuário %@. Por favor tente novamente. " + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Você efetuou login como usuário %@, mas deve efetuar login como usuário %@. Por favor tente novamente. " + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "You logged in as user %@, but must log in as user %@. Please retry." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "You logged in as user %@, but must log in as user %@. Please retry." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Hytë si përdoruesi %@, por duhet të hyni si një përdorues %@. Ju lutemi, riprovoni." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "คุณเข้าสู่ระบบในฐานะผู้ใช้ %@ แต่จำเป็นต้องเข้าสู่ระบบในฐานะผู้ใช้ %@ โปรดลองอีกครั้ง" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "คุณเข้าสู่ระบบในฐานะผู้ใช้ %@ แต่จำเป็นต้องเข้าสู่ระบบในฐานะผู้ใช้ %@ โปรดลองอีกครั้ง" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "%@ kullanıcısı olarak giriş yaptınız, ancak %@ kullanıcısı olarak giriş yapmalısınız. Lütfen tekrar deneyiniz." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "You logged in as user %@, but must log in as user %@. Please retry." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "UUID" } } } }, - "characters": { - "comment": "OCPasswordPolicyRule+StandardRules", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Zeichen" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "es": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "characters" - } - } - } - }, - "copy": { - "comment": "Copies", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "copy" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Kopie" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "copy" - } - }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "copy" - } - }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "copy" - } - }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Copiar" - } - }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "copy" - } - }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "복사" - } - }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "copy" - } - }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "copy" - } - }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "copy" - } - }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "copiar" - } - }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "copiar" - } - }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "copy" - } - }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "copy" - } - }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "kopjoje" + "Vacuum" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vacuum" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "คัดลอก" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vakuum" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "คัดลอก" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vacuum" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "kopyala" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "copy" - } - } - } - }, - "digits": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "digits" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vacuum" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Ziffern" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vacuum" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "digits" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aspiradora" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "digits" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vacuum" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "digits" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "진공" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "digits" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vacuum" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "digits" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vacuum" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "digits" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vacuum" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "digits" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vácuo " } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "digits" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vacuum" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "digits" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vácuo " } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "digits" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vacuum" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "digits" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Zbrazëti" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "digits" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เครื่องดูดฝุ่น" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "digits" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เครื่องดูดฝุ่น" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "digits" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vakum" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "digits" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Vacuum" } } } }, - "itemProperty.isFavorite": { - "comment": "Item property name (via -localizedNameForProperty:)", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Favorite" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Favorit" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Favorite" + "Viewer" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Favourite" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Betrachter" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Favourite" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Favorito" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Ajouter aux favoris" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "즐겨찾기" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Favorite" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Favorite" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Favorite" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Favorite" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Favorite" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Favorito" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visualizador" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Favorito" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Favorite" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Visualizador" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "В избранное" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Vëre Si të Parapëlqyer" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Parës" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "รายการโปรด" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "รายการโปรด" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Favorilere ekle" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "收藏" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } } } }, - "itemProperty.lastModified": { - "comment": "Item property name (via -localizedNameForProperty:)", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Last modified" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Letzte Änderung" + "Wait Conditions" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait Conditions" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Last modified" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wartebedingungen" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Last modified" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait Conditions" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Last modified" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait Conditions" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Ultima modificación" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait Conditions" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Dernière modification" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Condiciones de espera" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "최종 수정됨" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait Conditions" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Last modified" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "조건 대기" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Last modified" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait Conditions" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Last modified" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait Conditions" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Last modified" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait Conditions" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Last modified" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Condições de Espera " } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Última modificação" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait Conditions" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Última modificação" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Condições de Espera " } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Last modified" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait Conditions" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Последнее изменение" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait Conditions" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Ndryshuar së fundi më" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เงื่อนไขการรอ" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "แก้ไขครั้งล่าสุด" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "เงื่อนไขการรอ" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "แก้ไขครั้งล่าสุด" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bekleme Koşulları" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Son değiştirme" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "最后更改" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait Conditions" } } } }, - "itemProperty.localAttributes": { - "comment": "Item property name (via -localizedNameForProperty:)", - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "Local attributes" + "Waiting for metadata refresh" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for metadata refresh" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Lokale Eigenschaften" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warten auf Aktualisierung der Metadaten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Local attributes" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for metadata refresh" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "Local attributes" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for metadata refresh" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "Local attributes" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for metadata refresh" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "Atributos locales" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esperando la actualización de los metadatos" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "Attributs locaux" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for metadata refresh" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "로컬 속성" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "메타데이터 새로고침을 대기 중" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "Local attributes" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for metadata refresh" } }, - "nb-NO": { - "stringUnit": { - "state": "translated", - "value": "Local attributes" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for metadata refresh" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "Local attributes" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for metadata refresh" } }, - "nn-NO": { - "stringUnit": { - "state": "translated", - "value": "Local attributes" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aguardando atualização de metadados " } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "Local attributes" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for metadata refresh" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "Atributos locais" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Aguardando atualização de metadados " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "Atributos locais" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for metadata refresh" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "Local attributes" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po pritet për rifreskimin e tejtëdhënave" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "Локальные атрибуты" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังรอการรีเฟรชข้อมูล metadata" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "Atribute lokale" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังรอการรีเฟรชข้อมูล metadata" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "แอตทริบิวต์ต้นทาง" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Metadata yenilemesi bekleniyor" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "แอตทริบิวต์ต้นทาง" - } - }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "Yerel öznitelikler" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "本地属性" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for metadata refresh" } } } }, - "lower-case characters": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Kleinbuchstaben" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - }, - "es": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" + "Waiting for user" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for user" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warten auf den Benutzer" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for user" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "lower-case characters" - } - } - } - }, - "special characters": { - "comment": "Password Policy", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Sonderzeichen" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "es": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "special characters" - } - } - } - }, - "upper-case characters": { - "comment": "Password Policy", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for user" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "Großbuchstaben" + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for user" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esperando al usuario" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for user" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 대기 중" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for user" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for user" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for user" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esperando pelo usuário " } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for user" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esperando pelo usuário " } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for user" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po pritet për përdorues" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังรอผู้ใช้" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังรอผู้ใช้" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Kullanıcı bekleniyor" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "upper-case characters" + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting for user" } } } }, - "{{itemName}} can't be copied into itself.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "Waiting to retry (%ld of %ld)" : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting to retry (%ld of %ld)" } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} kann nicht in sich selbst kopiert werden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Warten auf Neuversuch (%ld von %ld)" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting to retry (%ld of %ld)" } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting to retry (%ld of %ld)" } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting to retry (%ld of %ld)" } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esperando reintentar (%ld de %ld)" } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting to retry (%ld of %ld)" } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "재시도 대기 중 (%ld / %ld)" } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting to retry (%ld of %ld)" } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting to retry (%ld of %ld)" } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting to retry (%ld of %ld)" } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} não pode ser copiado para si mesmo." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esperando para tentar novamente (%ld de %ld)" } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} não pode ser copiado para si mesmo." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting to retry (%ld of %ld)" } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Esperando para tentar novamente (%ld de %ld)" } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting to retry (%ld of %ld)" } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} s’mund të kopjohet te vetja." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Po pritet të riprovohet (%ld nga %ld)" } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังรอเพื่อลองใหม่ (%ld จาก %ld)" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "กำลังรอเพื่อลองใหม่ (%ld จาก %ld)" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yeniden denenmeyi bekliyor (%ld / %ld)" } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be copied into itself." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting to retry (%ld of %ld)" } } } }, - "{{itemName}} can't be moved into itself.": { - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "Web finger response lacks server instance relation." : { + "comment" : "OCErrorWebFingerLacksServerInstanceRelation", + "extractionState" : "manual", + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} kann nicht in sich selbst verschoben werden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Webfinger-Antwort fehlt Bezug zur Serverinstanz." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} não pode ser movido para si mesmo." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A resposta do dedo da Web carece de relação de instância do servidor." } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} não pode ser movido para si mesmo." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "A resposta do dedo da Web carece de relação de instância do servidor." } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} s’mund të kalohet te vetvetja." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} can't be moved into itself." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web finger response lacks server instance relation." } } } }, - "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing.": { - "extractionState": "manual", - "localizations": { - "cs": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "You logged in as user %@, but must log in as user %@. Please retry." : { + "localizations" : { + "cs" : { + "stringUnit" : { + "state" : "translated", + "value" : "You logged in as user %@, but must log in as user %@. Please retry." } }, - "de": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} wird auf dem Server verarbeitet und kann bis zum Ende der Verarbeitung nicht heruntergeladen werden." + "de" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sie haben sich als Benutzer %@ angemeldet, müssen sich aber als Benutzer %@ anmelden. Bitte versuchen Sie es erneut." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You logged in as user %@, but must log in as user %@. Please retry." } }, - "en-GB": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "en_GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "You logged in as user %@, but must log in as user %@. Please retry." } }, - "en_GB": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "en-GB" : { + "stringUnit" : { + "state" : "translated", + "value" : "You logged in as user %@, but must log in as user %@. Please retry." } }, - "es": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "es" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ha iniciado sesión como usuario %@, pero debe iniciar sesión como usuario %@. Por favor, inténtalo de nuevo." } }, - "fr": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "You logged in as user %@, but must log in as user %@. Please retry." } }, - "ko": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "ko" : { + "stringUnit" : { + "state" : "translated", + "value" : "사용자 %@으로 로그인했지만 사용자 %@으로 로그인해야 합니다. 다시 시도하십시오." } }, - "mk": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "mk" : { + "stringUnit" : { + "state" : "translated", + "value" : "You logged in as user %@, but must log in as user %@. Please retry." } }, - "nb_NO": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "nb_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "You logged in as user %@, but must log in as user %@. Please retry." } }, - "nn_NO": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "nn_NO" : { + "stringUnit" : { + "state" : "translated", + "value" : "You logged in as user %@, but must log in as user %@. Please retry." } }, - "pt-BR": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} é atualmente processado no servidor e não pode ser baixado até que termine o processamento." + "pt_BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você efetuou login como usuário %@, mas deve efetuar login como usuário %@. Por favor tente novamente. " } }, - "pt_BR": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} é atualmente processado no servidor e não pode ser baixado até que termine o processamento." + "pt_PT" : { + "stringUnit" : { + "state" : "translated", + "value" : "You logged in as user %@, but must log in as user %@. Please retry." } }, - "pt_PT": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "pt-BR" : { + "stringUnit" : { + "state" : "translated", + "value" : "Você efetuou login como usuário %@, mas deve efetuar login como usuário %@. Por favor tente novamente. " } }, - "ru": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "ru" : { + "stringUnit" : { + "state" : "translated", + "value" : "You logged in as user %@, but must log in as user %@. Please retry." } }, - "sq": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} aktualisht po përpunohet te shërbyesi dhe s’mund të shkarkohet, deri sa të përfundojë procesi." + "sq" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hytë si përdoruesi %@, por duhet të hyni si një përdorues %@. Ju lutemi, riprovoni." } }, - "th-TH": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "th_TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณเข้าสู่ระบบในฐานะผู้ใช้ %@ แต่จำเป็นต้องเข้าสู่ระบบในฐานะผู้ใช้ %@ โปรดลองอีกครั้ง" } }, - "th_TH": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "th-TH" : { + "stringUnit" : { + "state" : "translated", + "value" : "คุณเข้าสู่ระบบในฐานะผู้ใช้ %@ แต่จำเป็นต้องเข้าสู่ระบบในฐานะผู้ใช้ %@ โปรดลองอีกครั้ง" } }, - "tr": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "tr" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ kullanıcısı olarak giriş yaptınız, ancak %@ kullanıcısı olarak giriş yapmalısınız. Lütfen tekrar deneyiniz." } }, - "zh-Hans": { - "stringUnit": { - "state": "translated", - "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "zh-Hans" : { + "stringUnit" : { + "state" : "translated", + "value" : "You logged in as user %@, but must log in as user %@. Please retry." } } } } }, - "version": "1.0" -} + "version" : "1.0" +} \ No newline at end of file diff --git a/ownCloudSDK/ownCloudSDK.h b/ownCloudSDK/ownCloudSDK.h index 88c3fdbe..50e3e9cf 100644 --- a/ownCloudSDK/ownCloudSDK.h +++ b/ownCloudSDK/ownCloudSDK.h @@ -230,6 +230,7 @@ FOUNDATION_EXPORT const unsigned char ownCloudSDKVersionString[]; #import #import #import +#import #import #import From 2edadc06935f49e0d5cb3b7174f9ee93d599d86d Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Sun, 24 Nov 2024 12:24:27 +0100 Subject: [PATCH 3/7] - fix conflict --- ownCloudSDK/Resources/Localizable.xcstrings | 46481 +++++++----------- 1 file changed, 17965 insertions(+), 28516 deletions(-) diff --git a/ownCloudSDK/Resources/Localizable.xcstrings b/ownCloudSDK/Resources/Localizable.xcstrings index 78dc2be1..9906861f 100644 --- a/ownCloudSDK/Resources/Localizable.xcstrings +++ b/ownCloudSDK/Resources/Localizable.xcstrings @@ -1,36526 +1,25975 @@ { - "sourceLanguage" : "en", - "strings" : { - "\"%@\" has been modified locally" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" has been modified locally" + "sourceLanguage": "en", + "strings": { + "\"%@\" has been modified locally": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" has been modified locally" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" wurde lokal geändert" + "de": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" wurde lokal geändert" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" has been modified locally" + "en": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" has been modified locally" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" has been modified locally" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" has been modified locally" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" has been modified locally" + "es": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" ha sido modificada localmente" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" ha sido modificada localmente" + "fr": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" has been modified locally" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" has been modified locally" + "ko": { + "stringUnit": { + "state": "translated", + "value": "\"%@\"이(가) 로컬로 수정되었습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\"이(가) 로컬로 수정되었습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" has been modified locally" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" has been modified locally" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" foi modificado localmente " } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" has been modified locally" + "ru": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" has been modified locally" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" has been modified locally" + "sq": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" është ndryshuar lokalisht" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" foi modificado localmente " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" ได้รับการแก้ไขแล้วในเครื่อง" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" has been modified locally" + "tr": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" yerel olarak değiştirildi" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" foi modificado localmente " + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" has been modified locally" + } + } + } + }, + "\"%@\" metadata for %@ couldn't be updated": { + "comment": "Update", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" metadata for %@ couldn't be updated" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" has been modified locally" + "de": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" Metadaten für %@ konnten nicht aktualisiert werden" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" është ndryshuar lokalisht" + "en": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" metadata for %@ couldn't be updated" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" ได้รับการแก้ไขแล้วในเครื่อง" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" metadata for %@ couldn't be updated" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" ได้รับการแก้ไขแล้วในเครื่อง" + "es": { + "stringUnit": { + "state": "translated", + "value": "Metadatos \"%@\" para %@no pudo ser actualizado" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" yerel olarak değiştirildi" + "fr": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" métadonnées pour %@ n'ont pas pu être mises à jour" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" has been modified locally" + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@에 대한 \"%@\" 메타데이터를 업데이트할 수 없습니다." } - } - } - }, - "\"%@\" metadata for %@ couldn't be updated" : { - "comment" : "Update", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata for %@ couldn't be updated" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" metadata for %@ couldn't be updated" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" Metadaten für %@ konnten nicht aktualisiert werden" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" metadata for %@ couldn't be updated" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata for %@ couldn't be updated" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" metadata for %@ couldn't be updated" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata for %@ couldn't be updated" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" metadados para %@ não puderam ser atualizados" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata for %@ couldn't be updated" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Не удалсоь обновить метаданные \"%@\" для %@" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Metadatos \"%@\" para %@no pudo ser actualizado" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Tejtëdhënat \"%@\" për %@ s’u përditësuan dot" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" métadonnées pour %@ n'ont pas pu être mises à jour" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" metadata สำหรับ %@ ไม่สามารถอัปเดตได้" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@에 대한 \"%@\" 메타데이터를 업데이트할 수 없습니다." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@dosyasının \"%@\" üstverisi güncellenemedi" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata for %@ couldn't be updated" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" metadata for %@ couldn't be updated" + } + } + } + }, + "\"%@\" was modified locally before the download completed.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" was modified locally before the download completed." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata for %@ couldn't be updated" + "de": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" wurde lokal geändert, bevor der Download abgeschlossen war." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata for %@ couldn't be updated" + "en": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" was modified locally before the download completed." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata for %@ couldn't be updated" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" was modified locally before the download completed." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata for %@ couldn't be updated" + "es": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" se modificó localmente antes de que se completara la descarga." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadados para %@ não puderam ser atualizados" + "fr": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" was modified locally before the download completed." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata for %@ couldn't be updated" + "ko": { + "stringUnit": { + "state": "translated", + "value": "다운로드가 완료되기 전에 \"%@\"이(가) 로컬에서 수정되었습니다." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadados para %@ não puderam ser atualizados" + "mk": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" was modified locally before the download completed." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Не удалсоь обновить метаданные \"%@\" для %@" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" foi modificado localmente antes da conclusão de baixar o arquivo. " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tejtëdhënat \"%@\" për %@ s’u përditësuan dot" + "ru": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" was modified locally before the download completed." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata สำหรับ %@ ไม่สามารถอัปเดตได้" + "sq": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" qe ndryshuar lokalisht përpara se të plotësohej shkarkimi." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata สำหรับ %@ ไม่สามารถอัปเดตได้" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" ได้ถูกแก้ไขในเครื่องก่อนที่การดาวน์โหลดจะเสร็จสมบูรณ์" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@dosyasının \"%@\" üstverisi güncellenemedi" + "tr": { + "stringUnit": { + "state": "translated", + "value": "İndirme tamamlanmadan önce \"%@\" yerel olarak değiştirildi." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" metadata for %@ couldn't be updated" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "\"%@\" was modified locally before the download completed." } } } }, - "\"%@\" was modified locally before the download completed." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" was modified locally before the download completed." + "%@ (error %ld)": { + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld)" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" wurde lokal geändert, bevor der Download abgeschlossen war." + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ (Fehler %ld)" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" was modified locally before the download completed." + "en": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld)" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" was modified locally before the download completed." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld)" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" was modified locally before the download completed." + "es": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld)" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" se modificó localmente antes de que se completara la descarga." + "fr": { + "stringUnit": { + "state": "translated", + "value": "%@ (erreur% ld)" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" was modified locally before the download completed." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@ (오류 %ld)" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "다운로드가 완료되기 전에 \"%@\"이(가) 로컬에서 수정되었습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld)" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" was modified locally before the download completed." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld)" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" was modified locally before the download completed." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld)" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" was modified locally before the download completed." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "%@ (erro %ld)" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" foi modificado localmente antes da conclusão de baixar o arquivo. " + "ru": { + "stringUnit": { + "state": "translated", + "value": "%@ (ошибка %ld)" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" was modified locally before the download completed." + "sq": { + "stringUnit": { + "state": "translated", + "value": "%@ (gabim %ld)" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" foi modificado localmente antes da conclusão de baixar o arquivo. " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "%@ (ข้อผิดพลาด %ld)" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" was modified locally before the download completed." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@ (hata %ld)" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" qe ndryshuar lokalisht përpara se të plotësohej shkarkimi." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "%@ (错误 %ld)" } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" ได้ถูกแก้ไขในเครื่องก่อนที่การดาวน์โหลดจะเสร็จสมบูรณ์" + } + } + }, + "%@ (error %ld, %@)": { + "comment": "OC Errors", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld, %@)" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" ได้ถูกแก้ไขในเครื่องก่อนที่การดาวน์โหลดจะเสร็จสมบูรณ์" + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ (Fehler %ld, %@)" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İndirme tamamlanmadan önce \"%@\" yerel olarak değiştirildi." + "en": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld, %@)" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "\"%@\" was modified locally before the download completed." - } - } - } - }, - "{{itemName}} can't be copied into itself." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld, %@)" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} kann nicht in sich selbst kopiert werden." + "es": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld, %@)" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "fr": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld, %@)" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@ (오류 %ld, %@)" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "mk": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld, %@)" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld, %@)" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ (error %ld, %@)" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "%@ (erro %ld, %@)" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "ru": { + "stringUnit": { + "state": "translated", + "value": "%@ (ошибка %ld, %@)" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "sq": { + "stringUnit": { + "state": "translated", + "value": "%@ (gabim %ld, %@)" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "%@(ข้อผิดพลาด %ld, %@)" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} não pode ser copiado para si mesmo." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@ (hata %ld, %@)" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "%@ (错误 %ld, %@)" } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} não pode ser copiado para si mesmo." + } + } + }, + "%@ already exists": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%@ already exists" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ existiert bereits" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} s’mund të kopjohet te vetja." + "en": { + "stringUnit": { + "state": "translated", + "value": "%@ already exists" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "%@ already exists" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "es": { + "stringUnit": { + "state": "translated", + "value": "%@ ya existe" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." + "fr": { + "stringUnit": { + "state": "translated", + "value": "%@ existe déjà" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be copied into itself." - } - } - } - }, - "{{itemName}} can't be moved into itself." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@이(가) 이미 존재합니다" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} kann nicht in sich selbst verschoben werden." + "mk": { + "stringUnit": { + "state": "translated", + "value": "%@ already exists" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ already exists" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ already exists" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "%@ já existe" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "ru": { + "stringUnit": { + "state": "translated", + "value": "%@ уже существует" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "sq": { + "stringUnit": { + "state": "translated", + "value": "%@ ekziston tashmë" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "%@มีอยู่แล้ว " } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@ zaten mevcut" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "%@ 已存在" + } + } + } + }, + "%@ can't be copied to %@.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%@ can't be copied to %@." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ kann nicht nach %@ kopiert werden." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} não pode ser movido para si mesmo." + "en": { + "stringUnit": { + "state": "translated", + "value": "%@ can't be copied to %@." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "%@ can't be copied to %@." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} não pode ser movido para si mesmo." + "es": { + "stringUnit": { + "state": "translated", + "value": "%@ no se puede copiar en %@." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "fr": { + "stringUnit": { + "state": "translated", + "value": "%@ne peut pas être copié vers%@." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} s’mund të kalohet te vetvetja." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@을(를) %@으로 복사할 수 없습니다." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "mk": { + "stringUnit": { + "state": "translated", + "value": "%@ can't be copied to %@." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ can't be copied to %@." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ can't be copied to %@." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} can't be moved into itself." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "%@ não pode ser copiado para %@." } - } - } - }, - "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." : { - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + }, + "ru": { + "stringUnit": { + "state": "translated", + "value": "%@ невозможно скопировать в %@." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} wird auf dem Server verarbeitet und kann bis zum Ende der Verarbeitung nicht heruntergeladen werden." + "sq": { + "stringUnit": { + "state": "translated", + "value": "%@ s’mund të kopjohet te %@." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่สามารถคัดลอก %@ ไปที่ %@" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@, %@konumuna kopyalanamaz." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "%@ 无法被拷贝到 %@" + } + } + } + }, + "%@ can't be moved to %@.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%@ can't be moved to %@." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ kann nicht nach %@ verschoben werden." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "en": { + "stringUnit": { + "state": "translated", + "value": "%@ can't be moved to %@." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "%@ can't be moved to %@." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "es": { + "stringUnit": { + "state": "translated", + "value": "%@ no se puede mover a %@." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "fr": { + "stringUnit": { + "state": "translated", + "value": "%@ ne peut pas être déplacé vers %@." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@을(를) %@으로 이동할 수 없습니다." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} é atualmente processado no servidor e não pode ser baixado até que termine o processamento." + "mk": { + "stringUnit": { + "state": "translated", + "value": "%@ can't be moved to %@." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ can't be moved to %@." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} é atualmente processado no servidor e não pode ser baixado até que termine o processamento." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ can't be moved to %@." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "%@ não pode ser movido para %@." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} aktualisht po përpunohet te shërbyesi dhe s’mund të shkarkohet, deri sa të përfundojë procesi." + "ru": { + "stringUnit": { + "state": "translated", + "value": "%@ невозможно переместить в %@." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "sq": { + "stringUnit": { + "state": "translated", + "value": "%@ s’mund të kalohet te %@." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่สามารถย้าย %@ ไปที่ %@" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@, %@konumuna taşınamaz." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "%@ 无法被移动到 %@" } } } }, - "%@ (error %ld, %@)" : { - "comment" : "OC Errors", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld, %@)" + "%@ can't be renamed to %@.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be renamed to %@." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (Fehler %ld, %@)" + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ konnte nicht in %@ umbenannt werden." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld, %@)" + "en": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be renamed to %@." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld, %@)" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be renamed to %@." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld, %@)" + "es": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be renamed to %@." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld, %@)" + "fr": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be renamed to %@." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld, %@)" + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be renamed to %@." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (오류 %ld, %@)" + "mk": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be renamed to %@." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld, %@)" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "%@ não pôde ser renomeado para %@." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld, %@)" + "ru": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be renamed to %@." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld, %@)" + "sq": { + "stringUnit": { + "state": "translated", + "value": "%@ s’u emërtua dot si %@." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld, %@)" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be renamed to %@." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld, %@)" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be renamed to %@." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (erro %ld, %@)" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be renamed to %@." + } + } + } + }, + "%@ changed on the server. Really delete it?": { + "comment": "Delete", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%@ changed on the server. Really delete it?" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld, %@)" + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ wurde auf dem Server verändert. Soll es wirklich gelöscht werden?" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (erro %ld, %@)" + "en": { + "stringUnit": { + "state": "translated", + "value": "%@ changed on the server. Really delete it?" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (ошибка %ld, %@)" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "%@ changed on the server. Really delete it?" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (gabim %ld, %@)" + "es": { + "stringUnit": { + "state": "translated", + "value": "%@ cambió en el servidor. ¿Está seguro de querer eliminarlo?" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@(ข้อผิดพลาด %ld, %@)" + "fr": { + "stringUnit": { + "state": "translated", + "value": "%@ changé sur le serveur. Voulez-vous vraiment le supprimer?" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@(ข้อผิดพลาด %ld, %@)" + "ko": { + "stringUnit": { + "state": "translated", + "value": "서버에서 %@이(가) 변경되었습니다. 정말로 삭제하시겠습니까?" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (hata %ld, %@)" + "mk": { + "stringUnit": { + "state": "translated", + "value": "%@ changed on the server. Really delete it?" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (错误 %ld, %@)" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ changed on the server. Really delete it?" } - } - } - }, - "%@ (error %ld)" : { - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld)" + }, + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ changed on the server. Really delete it?" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (Fehler %ld)" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "%@ mudou no servidor. Realmente deletar?" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld)" + "ru": { + "stringUnit": { + "state": "translated", + "value": "%@ изменилось на сервере. Действительно удалить?" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld)" + "sq": { + "stringUnit": { + "state": "translated", + "value": "%@ ndryshoi te shërbyesi. Të fshihet vërtet?" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld)" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "%@ได้เปลี่ยนเซิร์ฟเวอร์แล้ว ต้องการลบ?" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld)" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@sunucu tarafında değiştirilmiş. Silmekten emin misiniz?" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (erreur% ld)" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "%@ 在服务器端已改变。确定要删除吗?" + } + } + } + }, + "%@ couldn't be deleted": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be deleted" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (오류 %ld)" + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ konnte nicht gelöscht werden" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld)" + "en": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be deleted" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld)" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be deleted" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld)" + "es": { + "stringUnit": { + "state": "translated", + "value": "%@ no se pudo eliminar" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld)" + "fr": { + "stringUnit": { + "state": "translated", + "value": "%@ n'a pas pu être supprimé" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld)" + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@을(를) 삭제할 수 없습니다" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (erro %ld)" + "mk": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be deleted" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (error %ld)" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be deleted" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (erro %ld)" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ couldn't be deleted" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (ошибка %ld)" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "%@ não pôde ser excluído" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (gabim %ld)" + "ru": { + "stringUnit": { + "state": "translated", + "value": "%@ удалить не удалось" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (ข้อผิดพลาด %ld)" + "sq": { + "stringUnit": { + "state": "translated", + "value": "%@ s’u fshi dot" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (ข้อผิดพลาด %ld)" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "%@ไม่สามารถลบได้ " } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (hata %ld)" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@silinemedi" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ (错误 %ld)" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "%@ 无法删除" } } } }, - "%@ already exists" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ already exists" + "%@ couldn't be renamed to %@.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%1$@ couldn't be renamed to %2$@." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ existiert bereits" + "de": { + "stringUnit": { + "state": "translated", + "value": "%1$@ konnte nicht in %2$@ umbenannt werden." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ already exists" + "en": { + "stringUnit": { + "state": "translated", + "value": "%1$@ couldn't be renamed to %2$@." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ already exists" + "es": { + "stringUnit": { + "state": "translated", + "value": "%1$@ couldn't be renamed to %2$@." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ already exists" + "fr": { + "stringUnit": { + "state": "translated", + "value": "%1$@ couldn't be renamed to %2$@." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ ya existe" + "ko": { + "stringUnit": { + "state": "translated", + "value": "%1$@ couldn't be renamed to %2$@." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ existe déjà" + "mk": { + "stringUnit": { + "state": "translated", + "value": "%1$@ couldn't be renamed to %2$@." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@이(가) 이미 존재합니다" + "ru": { + "stringUnit": { + "state": "translated", + "value": "%1$@ couldn't be renamed to %2$@." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ already exists" + "sq": { + "stringUnit": { + "state": "translated", + "value": "%1$@ couldn't be renamed to %2$@." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ already exists" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%1$@ couldn't be renamed to %2$@." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ already exists" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "%1$@ couldn't be renamed to %2$@." } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ already exists" + } + } + }, + "%@ has changed on the server since you requested its deletion.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%@ has changed on the server since you requested its deletion." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ already exists" + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ wurde auf dem Server verändert, seitdem Sie die Löschung angefragt haben." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ já existe" + "en": { + "stringUnit": { + "state": "translated", + "value": "%@ has changed on the server since you requested its deletion." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ already exists" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "%@ has changed on the server since you requested its deletion." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ já existe" + "es": { + "stringUnit": { + "state": "translated", + "value": "%@ cambió en el servidor desde que solicitó su eliminación." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ уже существует" + "fr": { + "stringUnit": { + "state": "translated", + "value": "%@ a changé sur le serveur depuis que vous avez demandé sa suppression." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ ekziston tashmë" + "ko": { + "stringUnit": { + "state": "translated", + "value": "삭제 요청으로 서버에서 %@이(가) 변경되었습니다" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@มีอยู่แล้ว " + "mk": { + "stringUnit": { + "state": "translated", + "value": "%@ has changed on the server since you requested its deletion." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@มีอยู่แล้ว " + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ has changed on the server since you requested its deletion." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ zaten mevcut" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ has changed on the server since you requested its deletion." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ 已存在" - } - } - } - }, - "%@ can't be copied to %@." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be copied to %@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "%@ mudou no servidor desde que você solicitou sua exclusão." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ kann nicht nach %@ kopiert werden." + "ru": { + "stringUnit": { + "state": "translated", + "value": "%@ изменилось на сервер с того момента, как вы запросили его удаление." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be copied to %@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "%@ ka ndryshuar te shërbyesi, që nga koha që kërkuat fshirjen e tij." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be copied to %@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "%@ ได้เปลี่ยนเซิร์ฟเวอร์แล้วตั้งแต่คุณขอให้ลบ" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be copied to %@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@silinmesini istediğinizden beri sunucu tarafında değişmiş durumda." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ no se puede copiar en %@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "自从你发出删除请求之后 %@ 在服务器端发生了改变。" } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ne peut pas être copié vers%@." + } + } + }, + "%@ not found": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%@ not found" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@을(를) %@으로 복사할 수 없습니다." + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ nicht gefunden" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be copied to %@." + "en": { + "stringUnit": { + "state": "translated", + "value": "%@ not found" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be copied to %@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "%@ not found" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be copied to %@." + "es": { + "stringUnit": { + "state": "translated", + "value": "%@ no encontrado" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be copied to %@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "%@pas trouvé" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be copied to %@." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@을(를) 찾을 수 없습니다." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ não pode ser copiado para %@." + "mk": { + "stringUnit": { + "state": "translated", + "value": "%@ not found" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be copied to %@." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ not found" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ não pode ser copiado para %@." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ not found" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ невозможно скопировать в %@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "%@ não encontrado" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ s’mund të kopjohet te %@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "%@ не найдено" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถคัดลอก %@ ไปที่ %@" + "sq": { + "stringUnit": { + "state": "translated", + "value": "%@ s’u gjet" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถคัดลอก %@ ไปที่ %@" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่พบ %@" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@, %@konumuna kopyalanamaz." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@bulunamadı" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ 无法被拷贝到 %@" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "%@ 未找到" } } } }, - "%@ can't be moved to %@." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be moved to %@." + "%@ wasn't found at %@.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%@ wasn't found at %@." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ kann nicht nach %@ verschoben werden." + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ wurde nicht gefunden auf %@" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be moved to %@." + "en": { + "stringUnit": { + "state": "translated", + "value": "%@ wasn't found at %@." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be moved to %@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "%@ wasn't found at %@." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be moved to %@." + "es": { + "stringUnit": { + "state": "translated", + "value": "%@ no se encontró en %@." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ no se puede mover a %@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "%@ n'a pas été trouvé à %@" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ ne peut pas être déplacé vers %@." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@을(를) %@에서 찾을 수 없습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@을(를) %@으로 이동할 수 없습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "%@ wasn't found at %@." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be moved to %@." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ wasn't found at %@." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be moved to %@." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "%@ wasn't found at %@." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be moved to %@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "%@ não foi encontrado em %@." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be moved to %@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "%@ не найдено в %@." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be moved to %@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "%@ s’u gjet te %@." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ não pode ser movido para %@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่พบ %@ ที่ %@" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ can't be moved to %@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@, %@konumunda bulunamadı." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ não pode ser movido para %@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "%@ 未在 %@ 处找到。" + } + } + } + }, + "%lu files in %lu folders": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "%lu files in %lu folders" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ невозможно переместить в %@." + "de": { + "stringUnit": { + "state": "translated", + "value": "%lu Dateien in %lu Ordnern" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ s’mund të kalohet te %@." + "en": { + "stringUnit": { + "state": "translated", + "value": "%lu files in %lu folders" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถย้าย %@ ไปที่ %@" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "%lu files in %lu folders" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถย้าย %@ ไปที่ %@" + "es": { + "stringUnit": { + "state": "translated", + "value": "%lu files in %lu folders" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@, %@konumuna taşınamaz." + "fr": { + "stringUnit": { + "state": "translated", + "value": "%lu files in %lu folders" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ 无法被移动到 %@" + "ko": { + "stringUnit": { + "state": "translated", + "value": "%lu files in %lu folders" } - } - } - }, - "%@ can't be renamed to %@." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "%lu files in %lu folders" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ konnte nicht in %@ umbenannt werden." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "%lu arquivos em pastas %lu" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "%lu files in %lu folders" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "%lu kartela në %lu dosje" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "%lu files in %lu folders" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%lu files in %lu folders" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "%lu files in %lu folders" + } + } + } + }, + "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "de": { + "stringUnit": { + "state": "translated", + "value": "Eine geänderte, unsynchronisierte Version von \"%@\" ist auf Ihrem Gerät vorhanden. Wenn Sie die Datei vom Server herunterladen, wird die lokale Datei überschrieben und die Änderungen gehen verloren." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "en": { + "stringUnit": { + "state": "translated", + "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "A modified, unsynchronised version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "es": { + "stringUnit": { + "state": "translated", + "value": "Hay una versión modificada y no sincronizada de \"%@\" en su dispositivo. La descarga del archivo del servidor lo sobrescribirá y se perderán las modificaciones." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ não pôde ser renomeado para %@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "ko": { + "stringUnit": { + "state": "translated", + "value": "장치에 \"%@\"의 수정되고 동기화되지 않은 버전이 있습니다. 서버에서 파일을 다운로드하면 파일을 덮어쓰고 수정 내용이 손실됩니다." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ não pôde ser renomeado para %@." + "mk": { + "stringUnit": { + "state": "translated", + "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Uma versão modificada e não sincronizada de \"%@\" está presente em seu dispositivo. Baixar o arquivo do servidor irá sobrescrevê-lo e as modificações serão perdidas. " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ s’u emërtua dot si %@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Në pajisjen tuaj është i pranishëm një version i ndryshuar, i panjëkohësuar, i \"%@\". Shkarkimi i kartelës prej shërbyesit do ta mbishkruajë dhe ndryshimet do të humbasin." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การแก้ไขและไม่ได้ถูกประสานข้อมูลของเวอร์ชัน \"%@\" จะแสดงอยู่บนอุปกรณ์ของคุณ การดาวน์โหลดไฟล์จากเซิร์ฟเวอร์จะเขียนทับไฟล์ดังกล่าวและการแก้ไขจะสูญหายไป" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Cihazınızda değiştirilmiş, senkronize edilmemiş bir \"%@\" sürümü var. Dosyayı sunucudan indirmek üzerine yazacak ve değişiklikler kaybolacaktır." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be renamed to %@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." } } } }, - "%@ changed on the server. Really delete it?" : { - "comment" : "Delete", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ changed on the server. Really delete it?" + "A newer version already exists.": { + "comment": "OCErrorNewerVersionExists", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "A newer version already exists." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wurde auf dem Server verändert. Soll es wirklich gelöscht werden?" + "de": { + "stringUnit": { + "state": "translated", + "value": "Es existiert bereits eine neuere Version." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ changed on the server. Really delete it?" + "en": { + "stringUnit": { + "state": "translated", + "value": "A newer version already exists." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ changed on the server. Really delete it?" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "A newer version already exists." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ changed on the server. Really delete it?" + "es": { + "stringUnit": { + "state": "translated", + "value": "Una nueva versión ya existe." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ cambió en el servidor. ¿Está seguro de querer eliminarlo?" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Une version plus récente existe déjà." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ changé sur le serveur. Voulez-vous vraiment le supprimer?" + "ko": { + "stringUnit": { + "state": "translated", + "value": "최신 버전이 이미 존재합니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "서버에서 %@이(가) 변경되었습니다. 정말로 삭제하시겠습니까?" + "mk": { + "stringUnit": { + "state": "translated", + "value": "A newer version already exists." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ changed on the server. Really delete it?" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "A newer version already exists." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ changed on the server. Really delete it?" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "A newer version already exists." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ changed on the server. Really delete it?" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Uma versão mais nova já existe." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ changed on the server. Really delete it?" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Уже существует более свежая версия." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ changed on the server. Really delete it?" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ka tashmë një version më të ri." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ mudou no servidor. Realmente deletar?" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "มีเวอร์ชันใหม่ออกมาแล้ว" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ changed on the server. Really delete it?" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Daha yeni bir versiyon halen mevcut." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ mudou no servidor. Realmente deletar?" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "更新的版本已存在。" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ изменилось на сервере. Действительно удалить?" + } + } + }, + "A running operation prevents execution.": { + "comment": "OCErrorRunningOperation", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "A running operation prevents execution." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ ndryshoi te shërbyesi. Të fshihet vërtet?" + "de": { + "stringUnit": { + "state": "translated", + "value": "Ein laufender Vorgang verhindert die Ausführung." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ได้เปลี่ยนเซิร์ฟเวอร์แล้ว ต้องการลบ?" + "en": { + "stringUnit": { + "state": "translated", + "value": "A running operation prevents execution." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ได้เปลี่ยนเซิร์ฟเวอร์แล้ว ต้องการลบ?" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "A running operation prevents execution." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@sunucu tarafında değiştirilmiş. Silmekten emin misiniz?" + "es": { + "stringUnit": { + "state": "translated", + "value": "Una operación en ejecución impide la ejecución." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ 在服务器端已改变。确定要删除吗?" - } - } - } - }, - "%@ couldn't be deleted" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be deleted" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Une opération en cours empêche l'exécution." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ konnte nicht gelöscht werden" + "ko": { + "stringUnit": { + "state": "translated", + "value": "구동중인 작업이 실행을 방지합니다." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be deleted" + "mk": { + "stringUnit": { + "state": "translated", + "value": "A running operation prevents execution." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be deleted" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "A running operation prevents execution." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be deleted" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "A running operation prevents execution." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ no se pudo eliminar" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Uma outra operação em execução impede a execução." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ n'a pas pu être supprimé" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Запуску мешает выполняемая операция." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@을(를) 삭제할 수 없습니다" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ekzekutimin e pengon një veprim në xhirim e sipër." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be deleted" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การดำเนินการที่ทำงานอยู่จะป้องกันการดำเนินการอื่น ๆ" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be deleted" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Çalışan bir işlem yürütmeyi engelliyor." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be deleted" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "一个正在进行的操作阻止了执行。" } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be deleted" + } + } + }, + "Accepting share…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Accepting share…" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be deleted" + "de": { + "stringUnit": { + "state": "translated", + "value": "Akzeptiere Freigabe…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ não pôde ser excluído" + "en": { + "stringUnit": { + "state": "translated", + "value": "Accepting share…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ couldn't be deleted" + "es": { + "stringUnit": { + "state": "translated", + "value": "Accepting share…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ não pôde ser excluído" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Accepting share…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ удалить не удалось" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Accepting share…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ s’u fshi dot" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Accepting share…" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ไม่สามารถลบได้ " + "ru": { + "stringUnit": { + "state": "translated", + "value": "Accepting share…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ไม่สามารถลบได้ " + "sq": { + "stringUnit": { + "state": "translated", + "value": "Accepting share…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@silinemedi" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Accepting share…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ 无法删除" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Accepting share…" } } } }, - "%@ couldn't be renamed to %@." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "Action": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Action" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ konnte nicht in %2$@ umbenannt werden." + "de": { + "stringUnit": { + "state": "translated", + "value": "Aktion" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "en": { + "stringUnit": { + "state": "translated", + "value": "Action" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Action" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "es": { + "stringUnit": { + "state": "translated", + "value": "Acción" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Action" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "ko": { + "stringUnit": { + "state": "translated", + "value": "동작" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Action" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Ação" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Action" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Veprim" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การกระทำ" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Eylem" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Action" + } + } + } + }, + "Action ID": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Action ID" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "de": { + "stringUnit": { + "state": "translated", + "value": "Aktions-ID" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "en": { + "stringUnit": { + "state": "translated", + "value": "Action ID" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "%1$@ couldn't be renamed to %2$@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Action ID" } - } - } - }, - "%@ has changed on the server since you requested its deletion." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ has changed on the server since you requested its deletion." + }, + "es": { + "stringUnit": { + "state": "translated", + "value": "ID de acción" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wurde auf dem Server verändert, seitdem Sie die Löschung angefragt haben." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Action ID" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ has changed on the server since you requested its deletion." + "ko": { + "stringUnit": { + "state": "translated", + "value": "작업 ID" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ has changed on the server since you requested its deletion." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Action ID" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ has changed on the server since you requested its deletion." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "ID da ação " } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ cambió en el servidor desde que solicitó su eliminación." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Action ID" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ a changé sur le serveur depuis que vous avez demandé sa suppression." + "sq": { + "stringUnit": { + "state": "translated", + "value": "ID Veprimi" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "삭제 요청으로 서버에서 %@이(가) 변경되었습니다" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "รหัสการดำเนินการ" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ has changed on the server since you requested its deletion." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Action ID" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ has changed on the server since you requested its deletion." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Action ID" + } + } + } + }, + "Allow cellular access": { + "comment": "Cellular Switches", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Allow cellular access" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ has changed on the server since you requested its deletion." + "de": { + "stringUnit": { + "state": "translated", + "value": "Mobilfunkdaten verwenden" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ has changed on the server since you requested its deletion." + "en": { + "stringUnit": { + "state": "translated", + "value": "Allow cellular access" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ has changed on the server since you requested its deletion." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Allow cellular access" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ mudou no servidor desde que você solicitou sua exclusão." + "es": { + "stringUnit": { + "state": "translated", + "value": "Permitir el acceso celular" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ has changed on the server since you requested its deletion." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Allow cellular access" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ mudou no servidor desde que você solicitou sua exclusão." + "ko": { + "stringUnit": { + "state": "translated", + "value": "무선 접근 허용" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ изменилось на сервер с того момента, как вы запросили его удаление." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Allow cellular access" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ ka ndryshuar te shërbyesi, që nga koha që kërkuat fshirjen e tij." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Permitir acesso do celular " } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ ได้เปลี่ยนเซิร์ฟเวอร์แล้วตั้งแต่คุณขอให้ลบ" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Allow cellular access" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ ได้เปลี่ยนเซิร์ฟเวอร์แล้วตั้งแต่คุณขอให้ลบ" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Lejo hyrje nga celulari" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@silinmesini istediğinizden beri sunucu tarafında değişmiş durumda." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "อนุญาตการเข้าถึงเครือข่ายมือถือ" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "自从你发出删除请求之后 %@ 在服务器端发生了改变。" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Hücresel erişime izin ver" + } + }, + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Allow cellular access" } } } }, - "%@ not found" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ not found" + "An error occured trying to validate the certificate for %@.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "An error occured trying to validate the certificate for %@." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ nicht gefunden" + "de": { + "stringUnit": { + "state": "translated", + "value": "Bei der Überprüfung des Zertifikats für %@ ist ein Fehler aufgetreten." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ not found" + "en": { + "stringUnit": { + "state": "translated", + "value": "An error occured trying to validate the certificate for %@." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ not found" + "es": { + "stringUnit": { + "state": "translated", + "value": "An error occured trying to validate the certificate for %@." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ not found" + "fr": { + "stringUnit": { + "state": "translated", + "value": "An error occured trying to validate the certificate for %@." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ no encontrado" + "ko": { + "stringUnit": { + "state": "translated", + "value": "An error occured trying to validate the certificate for %@." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@pas trouvé" + "mk": { + "stringUnit": { + "state": "translated", + "value": "An error occured trying to validate the certificate for %@." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@을(를) 찾을 수 없습니다." + "ru": { + "stringUnit": { + "state": "translated", + "value": "An error occured trying to validate the certificate for %@." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ not found" + "sq": { + "stringUnit": { + "state": "translated", + "value": "An error occured trying to validate the certificate for %@." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ not found" + "tr": { + "stringUnit": { + "state": "translated", + "value": "An error occured trying to validate the certificate for %@." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ not found" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "An error occured trying to validate the certificate for %@." } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ not found" + } + } + }, + "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ not found" + "de": { + "stringUnit": { + "state": "translated", + "value": "Beim Ausführen einer Aktion (\"%@\") ist ein Problem aufgetreten. Die Aktion wurde aus der Warteschlange für die Synchronisation entfernt und wurde eventuell nicht vollständig durchgeführt. Falls Logging aktiviert ist, wurde das Problem protokolliert." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ não encontrado" + "en": { + "stringUnit": { + "state": "translated", + "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ not found" + "es": { + "stringUnit": { + "state": "translated", + "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ não encontrado" + "fr": { + "stringUnit": { + "state": "translated", + "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ не найдено" + "ko": { + "stringUnit": { + "state": "translated", + "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ s’u gjet" + "mk": { + "stringUnit": { + "state": "translated", + "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบ %@" + "ru": { + "stringUnit": { + "state": "translated", + "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบ %@" + "sq": { + "stringUnit": { + "state": "translated", + "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@bulunamadı" + "tr": { + "stringUnit": { + "state": "translated", + "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ 未找到" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." } } } }, - "%@ wasn't found at %@." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wasn't found at %@." + "An exception occured.": { + "comment": "OCErrorException", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "An exception occured." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wurde nicht gefunden auf %@" + "de": { + "stringUnit": { + "state": "translated", + "value": "Eine Ausnahme ist aufgetreten." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wasn't found at %@." + "en": { + "stringUnit": { + "state": "translated", + "value": "An exception occured." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wasn't found at %@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "An exception occurred." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wasn't found at %@." + "es": { + "stringUnit": { + "state": "translated", + "value": "Se produjo una excepción." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ no se encontró en %@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Une exception s'est produite." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ n'a pas été trouvé à %@" + "ko": { + "stringUnit": { + "state": "translated", + "value": "예외가 발생했습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@을(를) %@에서 찾을 수 없습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "An exception occured." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wasn't found at %@." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "An exception occured." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wasn't found at %@." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "An exception occured." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wasn't found at %@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Uma exceção ocorreu." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wasn't found at %@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Произошло исключение." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wasn't found at %@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ndodhi një përjashtim." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ não foi encontrado em %@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "มีข้อยกเว้นเกิดขึ้น" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ wasn't found at %@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bir istisna meydana geldi." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ não foi encontrado em %@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "发生了一个异常。" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ не найдено в %@." + } + } + }, + "An operation failed due to outdated cache information.": { + "comment": "OCErrorOutdatedCache", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "An operation failed due to outdated cache information." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ s’u gjet te %@." + "de": { + "stringUnit": { + "state": "translated", + "value": "Ein Vorgang ist aufgrund veralteter Cache-Informationen fehlgeschlagen." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบ %@ ที่ %@" + "en": { + "stringUnit": { + "state": "translated", + "value": "An operation failed due to outdated cache information." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบ %@ ที่ %@" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "An operation failed due to outdated cache information." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@, %@konumunda bulunamadı." + "es": { + "stringUnit": { + "state": "translated", + "value": "Error en una operación debido a información de caché desactualizada." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ 未在 %@ 处找到。" - } - } - } - }, - "%lu files in %lu folders" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Une opération a échoué en raison d'informations de cache obsolètes." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu Dateien in %lu Ordnern" + "ko": { + "stringUnit": { + "state": "translated", + "value": "캐시 정보가 오래되어 작업에 실패했습니다." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "mk": { + "stringUnit": { + "state": "translated", + "value": "An operation failed due to outdated cache information." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "An operation failed due to outdated cache information." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "An operation failed due to outdated cache information." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Uma operação falhou devido a informações de cache desatualizadas." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Операция не прошла из-за устаревшей информации в кэше." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Një veprim dështoi për shkak hollësish të vjetruara fshehtine." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การดำเนินการล้มเหลวเนื่องจากข้อมูลแคชที่ล้าสมัย" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Eski önbellek bilgileri nedeniyle bir işlem başarısız oldu." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "操作因过期的缓存信息失败。" } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu arquivos em pastas %lu" + } + } + }, + "Another item named %@ already exists in %@.": { + "comment": "Upload", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Another item named %@ already exists in %@." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "de": { + "stringUnit": { + "state": "translated", + "value": "Ein anderes Element mit dem Namen %@ existiert bereits in %@." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu arquivos em pastas %lu" + "en": { + "stringUnit": { + "state": "translated", + "value": "Another item named %@ already exists in %@." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Another item named %@ already exists in %@." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu kartela në %lu dosje" + "es": { + "stringUnit": { + "state": "translated", + "value": "Otro elemento llamado %@ya existe en %@." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Another item named %@ already exists in %@." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@항목이 이미 %@에 존재합니다." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Another item named %@ already exists in %@." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "%lu files in %lu folders" - } - } - } - }, - "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Outro item chamado %@ já existe em %@." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eine geänderte, unsynchronisierte Version von \"%@\" ist auf Ihrem Gerät vorhanden. Wenn Sie die Datei vom Server herunterladen, wird die lokale Datei überschrieben und die Änderungen gehen verloren." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Another item named %@ already exists in %@." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Një tjetër objekt i quajtur %@ ekziston tashmë në %@." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "A modified, unsynchronised version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "อีกรายการชื่อ %@ มีอยู่แล้วใน %@" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "A modified, unsynchronised version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@ adlı başka bir öge %@'da zaten mevcut." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Hay una versión modificada y no sincronizada de \"%@\" en su dispositivo. La descarga del archivo del servidor lo sobrescribirá y se perderán las modificaciones." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Another item named %@ already exists in %@." } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + } + } + }, + "Another item policy of the same kind already includes the item, making the addition of this item policy redundant.": { + "comment": "OCErrorItemPolicyRedundant", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "장치에 \"%@\"의 수정되고 동기화되지 않은 버전이 있습니다. 서버에서 파일을 다운로드하면 파일을 덮어쓰고 수정 내용이 손실됩니다." + "de": { + "stringUnit": { + "state": "translated", + "value": "Eine andere Richtlinie der gleichen Art umfasst das Element bereits, wodurch das Hinzufügen dieser Richtlinie überflüssig wird." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "en": { + "stringUnit": { + "state": "translated", + "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "es": { + "stringUnit": { + "state": "translated", + "value": "Otra política de artículos del mismo tipo ya incluye el artículo, lo que hace que la adición de esta política de artículos sea redundante." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uma versão modificada e não sincronizada de \"%@\" está presente em seu dispositivo. Baixar o arquivo do servidor irá sobrescrevê-lo e as modificações serão perdidas. " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "ko": { + "stringUnit": { + "state": "translated", + "value": "동일한 종류의 다른 항목 정책이 이미 항목을 포함하므로 이 항목 정책의 추가는 중복됩니다." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uma versão modificada e não sincronizada de \"%@\" está presente em seu dispositivo. Baixar o arquivo do servidor irá sobrescrevê-lo e as modificações serão perdidas. " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Outra política de itens do mesmo tipo já inclui o item, tornando redundante a adição desta política de itens. " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Në pajisjen tuaj është i pranishëm një version i ndryshuar, i panjëkohësuar, i \"%@\". Shkarkimi i kartelës prej shërbyesit do ta mbishkruajë dhe ndryshimet do të humbasin." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การแก้ไขและไม่ได้ถูกประสานข้อมูลของเวอร์ชัน \"%@\" จะแสดงอยู่บนอุปกรณ์ของคุณ การดาวน์โหลดไฟล์จากเซิร์ฟเวอร์จะเขียนทับไฟล์ดังกล่าวและการแก้ไขจะสูญหายไป" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Një tjetër rregull objektesh të të njëjtit lloj përfshin tashmë objektin, duke e bërë të përsëritur shtimin e këtij rregulli objekti." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การแก้ไขและไม่ได้ถูกประสานข้อมูลของเวอร์ชัน \"%@\" จะแสดงอยู่บนอุปกรณ์ของคุณ การดาวน์โหลดไฟล์จากเซิร์ฟเวอร์จะเขียนทับไฟล์ดังกล่าวและการแก้ไขจะสูญหายไป" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "นโยบายสินค้าซ้ำกับสินค้าที่มีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cihazınızda değiştirilmiş, senkronize edilmemiş bir \"%@\" sürümü var. Dosyayı sunucudan indirmek üzerine yazacak ve değişiklikler kaybolacaktır." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Aynı türden başka bir öge politikası, ögeyi zaten içeriyor ve bu öge politikasının eklenmesini gereksiz kılıyor." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "A modified, unsynchronized version of \"%@\" is present on your device. Downloading the file from the server will overwrite it and modifications be lost." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." } } } }, - "A newer version already exists." : { - "comment" : "OCErrorNewerVersionExists", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "A newer version already exists." + "At least {{min}} special characters: {{specialCharacters}}": { + "comment": "Password Policy Check", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} special characters: {{specialCharacters}}" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Es existiert bereits eine neuere Version." + "de": { + "stringUnit": { + "state": "translated", + "value": "Mindestens {{min}} Sonderzeichen: {{specialCharacters}}" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "A newer version already exists." + "en": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} special characters: {{specialCharacters}}" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "A newer version already exists." + "es": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} special characters: {{specialCharacters}}" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "A newer version already exists." + "fr": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} special characters: {{specialCharacters}}" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Una nueva versión ya existe." + "ko": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} special characters: {{specialCharacters}}" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Une version plus récente existe déjà." + "mk": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} special characters: {{specialCharacters}}" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "최신 버전이 이미 존재합니다." + "ru": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} special characters: {{specialCharacters}}" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "A newer version already exists." + "sq": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} special characters: {{specialCharacters}}" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "A newer version already exists." + "tr": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} special characters: {{specialCharacters}}" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "A newer version already exists." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} special characters: {{specialCharacters}}" } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "A newer version already exists." + } + } + }, + "At least {{min}} {{characterType}}": { + "comment": "Password Policy Check", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} {{characterType}}" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "A newer version already exists." + "de": { + "stringUnit": { + "state": "translated", + "value": "Mindestens {{min}} {{characterType}}" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uma versão mais nova já existe." + "en": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} {{characterType}}" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "A newer version already exists." + "es": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} {{characterType}}" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uma versão mais nova já existe." + "fr": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} {{characterType}}" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Уже существует более свежая версия." + "ko": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} {{characterType}}" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ka tashmë një version më të ri." + "mk": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} {{characterType}}" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "มีเวอร์ชันใหม่ออกมาแล้ว" + "ru": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} {{characterType}}" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "มีเวอร์ชันใหม่ออกมาแล้ว" + "sq": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} {{characterType}}" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Daha yeni bir versiyon halen mevcut." + "tr": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} {{characterType}}" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "更新的版本已存在。" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "At least {{min}} {{characterType}}" } } } }, - "A running operation prevents execution." : { - "comment" : "OCErrorRunningOperation", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "A running operation prevents execution." + "At most {{byteLength}} bytes.": { + "comment": "OCPasswordPolicyRuleByteLength", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "At most {{byteLength}} bytes." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ein laufender Vorgang verhindert die Ausführung." + "de": { + "stringUnit": { + "state": "translated", + "value": "Maximal {{byteLength}} Bytes." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "A running operation prevents execution." + "en": { + "stringUnit": { + "state": "translated", + "value": "At most {{byteLength}} bytes." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "A running operation prevents execution." + "es": { + "stringUnit": { + "state": "translated", + "value": "At most {{byteLength}} bytes." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "A running operation prevents execution." + "fr": { + "stringUnit": { + "state": "translated", + "value": "At most {{byteLength}} bytes." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Una operación en ejecución impide la ejecución." + "ko": { + "stringUnit": { + "state": "translated", + "value": "At most {{byteLength}} bytes." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Une opération en cours empêche l'exécution." + "mk": { + "stringUnit": { + "state": "translated", + "value": "At most {{byteLength}} bytes." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "구동중인 작업이 실행을 방지합니다." + "ru": { + "stringUnit": { + "state": "translated", + "value": "At most {{byteLength}} bytes." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "A running operation prevents execution." + "sq": { + "stringUnit": { + "state": "translated", + "value": "At most {{byteLength}} bytes." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "A running operation prevents execution." + "tr": { + "stringUnit": { + "state": "translated", + "value": "At most {{byteLength}} bytes." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "A running operation prevents execution." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "At most {{byteLength}} bytes." } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "A running operation prevents execution." + } + } + }, + "At most {{max}} {{characterType}}": { + "comment": "Password Policy Check", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "At most {{max}} {{characterType}}" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "A running operation prevents execution." + "de": { + "stringUnit": { + "state": "translated", + "value": "Maximal {{max}} {{characterType}}" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uma outra operação em execução impede a execução." + "en": { + "stringUnit": { + "state": "translated", + "value": "At most {{max}} {{characterType}}" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "A running operation prevents execution." + "es": { + "stringUnit": { + "state": "translated", + "value": "At most {{max}} {{characterType}}" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uma outra operação em execução impede a execução." + "fr": { + "stringUnit": { + "state": "translated", + "value": "At most {{max}} {{characterType}}" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Запуску мешает выполняемая операция." + "ko": { + "stringUnit": { + "state": "translated", + "value": "At most {{max}} {{characterType}}" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ekzekutimin e pengon një veprim në xhirim e sipër." + "mk": { + "stringUnit": { + "state": "translated", + "value": "At most {{max}} {{characterType}}" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การดำเนินการที่ทำงานอยู่จะป้องกันการดำเนินการอื่น ๆ" + "ru": { + "stringUnit": { + "state": "translated", + "value": "At most {{max}} {{characterType}}" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การดำเนินการที่ทำงานอยู่จะป้องกันการดำเนินการอื่น ๆ" + "sq": { + "stringUnit": { + "state": "translated", + "value": "At most {{max}} {{characterType}}" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Çalışan bir işlem yürütmeyi engelliyor." + "tr": { + "stringUnit": { + "state": "translated", + "value": "At most {{max}} {{characterType}}" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "一个正在进行的操作阻止了执行。" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "At most {{max}} {{characterType}}" } } } }, - "Accepting share…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "Auth Data": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Auth Data" + } + }, + "de": { + "stringUnit": { + "state": "translated", + "value": "Autorisierungsdaten" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Akzeptiere Freigabe…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Auth Data" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Auth Data" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Datos de autenticación" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Auth Data" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "인증 데이터" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Auth Data" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Dados de Autenticação " } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Auth Data" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Të dhëna Mirëfilltësimi" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ข้อมูลรับรองความถูกต้อง" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yetkilendirme Verisi" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Auth Data" + } + } + } + }, + "Auth Method": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Auth Method" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Autorisierungsmethode" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Auth Method" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Auth Method" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Accepting share…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Método de autenticación" } - } - } - }, - "Action" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action" + }, + "fr": { + "stringUnit": { + "state": "translated", + "value": "Auth Method" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Aktion" + "ko": { + "stringUnit": { + "state": "translated", + "value": "인증 방법" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Auth Method" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Método de Autenticação " } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Auth Method" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Acción" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Metodë Mirëfilltësimi" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "วิธีการรับรองความถูกต้อง" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "동작" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yetkilendirme Yöntemi" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Auth Method" + } + } + } + }, + "Auth Validation Date": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Auth Validation Date" + } + }, + "de": { + "stringUnit": { + "state": "translated", + "value": "Validierungsdatum der Autorisierung" + } + }, + "en": { + "stringUnit": { + "state": "translated", + "value": "Auth Validation Date" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Auth Validation Date" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action" + "es": { + "stringUnit": { + "state": "translated", + "value": "Fecha de validación de autenticación" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ação" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Auth Validation Date" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action" + "ko": { + "stringUnit": { + "state": "translated", + "value": "인증 유효성 검사 날짜" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ação" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Auth Validation Date" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Data de Validação de Autenticação " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Veprim" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Auth Validation Date" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การกระทำ" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Datë Vlerësimi Mirëfilltësimi" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การกระทำ" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "วันที่ตรวจสอบสิทธิ์" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eylem" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yetki Doğrulama Tarihi" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Auth Validation Date" } } } }, - "Action ID" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action ID" + "Authenticating…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Authenticating…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Aktions-ID" + "de": { + "stringUnit": { + "state": "translated", + "value": "Anmeldung läuft…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action ID" + "en": { + "stringUnit": { + "state": "translated", + "value": "Authenticating…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action ID" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Authenticating…" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action ID" + "es": { + "stringUnit": { + "state": "translated", + "value": "Autenticando..." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID de acción" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Authentification…" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action ID" + "ko": { + "stringUnit": { + "state": "translated", + "value": "인증 중..." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "작업 ID" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Authenticating…" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action ID" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Authenticating…" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action ID" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Authenticating…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action ID" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Autenticando..." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID da ação " + "pt-PT": { + "stringUnit": { + "state": "translated", + "value": "A autenticar..." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action ID" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Авторизация…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID da ação " + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po bëhet mirëfilltësimi…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action ID" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังตรวจสอบสิทธิ์..." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID Veprimi" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kimlik doğrulanıyor..." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รหัสการดำเนินการ" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "正在认证..." + } + } + } + }, + "Authentication method not allowed. Re-authentication needed.": { + "comment": "OCErrorAuthorizationMethodNotAllowed", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Authentication method not allowed. Re-authentication needed." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รหัสการดำเนินการ" + "de": { + "stringUnit": { + "state": "translated", + "value": "Authentifizierungsmethode nicht erlaubt. Erneute Authentifizierung erforderlich." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action ID" + "en": { + "stringUnit": { + "state": "translated", + "value": "Authentication method not allowed. Re-authentication needed." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Action ID" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Authentication method not allowed. Re-authentication needed." } - } - } - }, - "Allow cellular access" : { - "comment" : "Cellular Switches", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Allow cellular access" + }, + "es": { + "stringUnit": { + "state": "translated", + "value": "Método de autenticación no permitido. Se necesita una nueva autenticación." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mobilfunkdaten verwenden" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Authentication method not allowed. Re-authentication needed." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Allow cellular access" + "ko": { + "stringUnit": { + "state": "translated", + "value": "허용되지 않은 인증 방법. 재인증 필요." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Allow cellular access" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Authentication method not allowed. Re-authentication needed." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Allow cellular access" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Método de autenticação não permitido. Re-autenticação necessária. " } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Permitir el acceso celular" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Authentication method not allowed. Re-authentication needed." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Allow cellular access" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Metodë mirëfilltësimi e palejuar. Lypset rimirëfilltësim." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "무선 접근 허용" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่อนุญาตให้ใช้วิธีการรับรองความถูกต้อง จำเป็นต้องมีการตรวจสอบสิทธิ์อีกครั้ง" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Allow cellular access" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kimlik doğrulama yöntemine izin verilmiyor. Yeniden kimlik doğrulama gerekli." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Allow cellular access" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Authentication method not allowed. Re-authentication needed." + } + } + } + }, + "Authentication method unknown.": { + "comment": "OCErrorAuthorizationMethodUnknown", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Authentication method unknown." + } + }, + "de": { + "stringUnit": { + "state": "translated", + "value": "Authentifizierungsmethode unbekannt." + } + }, + "en": { + "stringUnit": { + "state": "translated", + "value": "Authentication method unknown." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Allow cellular access" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Authentication method unknown." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Permitir acesso do celular " + "es": { + "stringUnit": { + "state": "translated", + "value": "Método de autenticación desconocido." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Allow cellular access" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Authentication method unknown." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Permitir acesso do celular " + "ko": { + "stringUnit": { + "state": "translated", + "value": "알 수 없는 인증 방법" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Allow cellular access" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Authentication method unknown." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lejo hyrje nga celulari" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Método de autenticação desconhecido. " } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "อนุญาตการเข้าถึงเครือข่ายมือถือ" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Authentication method unknown." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "อนุญาตการเข้าถึงเครือข่ายมือถือ" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Metodë e panjohur mirëfilltësimesh." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Hücresel erişime izin ver" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่รู้จักวิธีการรับรองความถูกต้อง" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Allow cellular access" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kimlik doğrulama yöntemi bilinmiyor." + } + }, + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Authentication method unknown." } } } }, - "An error occured trying to validate the certificate for %@." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bei der Überprüfung des Zertifikats für %@ ist ein Fehler aufgetreten." + "Authorization failed because data was missing from the secret data for the authentication method.": { + "comment": "OCErrorAuthorizationMissingData", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because data was missing from the secret data for the authentication method." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Anmeldung ist fehlgeschlagen, weil in den geheimen Daten für die Authentifizierungsmethode Daten fehlen." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "en": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because data was missing from the secret data for the authentication method." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Authorisation failed because data was missing from the secret data for the authentication method." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "es": { + "stringUnit": { + "state": "translated", + "value": "La autorización falló porque faltaban datos de los datos secretos para ser utilizados por el método de autenticación." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "L'autorisation a échoué car des données étaient manquantes dans les données secrètes pour la méthode d'authentification." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "ko": { + "stringUnit": { + "state": "translated", + "value": "인증 방법에 대한 기밀 데이터로부터 데이터가 누락되어 인증에 실패했습니다." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because data was missing from the secret data for the authentication method." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because data was missing from the secret data for the authentication method." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because data was missing from the secret data for the authentication method." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A autorização falhou porque faltavam dados dos dados secretos para o método de autenticação." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Авторизация не прошла, так как не хватило части секретных данных для метода аутентификации." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Mirëfilltësimi dështoi, ngaqë te të dhënat e fshehta mungojnë të dhëna për metodën e mirëfilltësimit." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การอนุญาตล้มเหลวเนื่องจากข้อมูลลับสำหรับการตรวจสอบสิทธิ์หายไป" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kimlik doğrulama yöntemi için gizli veri kayıp olduğundan yetkilendirme başarısız oldu." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "An error occured trying to validate the certificate for %@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because data was missing from the secret data for the authentication method." } } } }, - "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "Authorization failed because no authorization data was set for the authentication method.": { + "comment": "OCErrorAuthorizationNoMethodData", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because no authorization data was set for the authentication method." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Beim Ausführen einer Aktion (\"%@\") ist ein Problem aufgetreten. Die Aktion wurde aus der Warteschlange für die Synchronisation entfernt und wurde eventuell nicht vollständig durchgeführt. Falls Logging aktiviert ist, wurde das Problem protokolliert." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Anmeldung ist fehlgeschlagen, weil für die Anmeldungsmethode keine geheimen Daten vorhanden sind." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "en": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because no authorization data was set for the authentication method." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Authorisation failed because no authorisation data was set for the authentication method." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "es": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because no authorization data was set for the authentication method." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "fr": { + "stringUnit": { + "state": "translated", + "value": "L'autorisation a échoué car aucune donnée secrète n'a été définie pour la méthode d'authentification." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because no authorization data was set for the authentication method." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because no authorization data was set for the authentication method." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because no authorization data was set for the authentication method." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because no authorization data was set for the authentication method." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A autorização falhou porque nenhum dado de autorização foi definido para o método de autenticação." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Авторизация не прошла, так как для метода аутентификации не были заданы секретные данные." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Autorizimi dështoi, ngaqë për metodën e mirëfilltësimit s’qenë caktuar të dhëna autorizimi." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because no authorization data was set for the authentication method." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because no authorization data was set for the authentication method." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured attempting to perform an action (\"%@\"). The action has been removed from the sync queue and may not have completed. If logging is enabled, the exception has been logged." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because no authorization data was set for the authentication method." } } } }, - "An exception occured." : { - "comment" : "OCErrorException", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured." + "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL.": { + "comment": "OCErrorAuthorizationRedirect", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eine Ausnahme ist aufgetreten." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Anmeldung ist fehlgeschlagen, weil der Server einen Redirect zurückgegeben hat. Die Anmeldung könnte funktionieren, wenn Sie es mit der Redirect-URL erneut versuchen." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured." + "en": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occurred." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Authorisation failed because the server returned a redirect. Authorisation may be successful when retried with the redirect URL." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occurred." + "es": { + "stringUnit": { + "state": "translated", + "value": "La autorización falló porque el servidor devolvió una redirección. La autorización puede tener éxito cuando se reintenta con la URL de redireccionamiento." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Se produjo una excepción." + "fr": { + "stringUnit": { + "state": "translated", + "value": "L'autorisation a échoué car le serveur a renvoyé une redirection. L'autorisation peut réussir lors d'une nouvelle tentative avec l'URL de redirection." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Une exception s'est produite." + "ko": { + "stringUnit": { + "state": "translated", + "value": "서버가 리디렉션을 반환하여 인증에 실패했습니다. 리디렉션 URL을 사용하여 재시도하면 인증이 성공할 수 있습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "예외가 발생했습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A autorização falhou porque o servidor retornou um redirecionamento. A autorização pode ser bem-sucedida quando você tentar novamente com o URL de redirecionamento." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Авторизация не прошла, так как сервер вернул перенаправление. Авторизация может пройти успешно, если попробовать повторно с перенаправленной ссылкой." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Mirëfilltësimi dështoi, ngaqë shërbyesi u përgjigj me një ridrejtim. Mirëfilltësimi mund të jetë i suksesshëm kur riprovohet me URL ridrejtimi." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uma exceção ocorreu." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การอนุญาตล้มเหลวเนื่องจากเซิร์ฟเวอร์ส่งคืนการเปลี่ยนเส้นทาง ลองใช้ URL การเปลี่ยนเส้นทางใหม่" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "An exception occured." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sunucu bir yönlendirme yaptığından dolayı yetkilendirme başarısız. Yönlendirilen bağlantı ile denendiğinde yetkilendirme başarılı olabilir." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uma exceção ocorreu." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + } + } + } + }, + "Authorization failed.": { + "comment": "OCErrorAuthorizationFailed", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Произошло исключение." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Anmeldung ist fehlgeschlagen." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ndodhi një përjashtim." + "en": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "มีข้อยกเว้นเกิดขึ้น" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Authorisation failed." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "มีข้อยกเว้นเกิดขึ้น" + "es": { + "stringUnit": { + "state": "translated", + "value": "Autorización fallida." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bir istisna meydana geldi." + "fr": { + "stringUnit": { + "state": "translated", + "value": "L'autorisation a échoué." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "发生了一个异常。" + "ko": { + "stringUnit": { + "state": "translated", + "value": "인증 실패." } - } - } - }, - "An operation failed due to outdated cache information." : { - "comment" : "OCErrorOutdatedCache", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "An operation failed due to outdated cache information." + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ein Vorgang ist aufgrund veralteter Cache-Informationen fehlgeschlagen." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "An operation failed due to outdated cache information." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Authorization failed." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "An operation failed due to outdated cache information." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Falha na autorização." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "An operation failed due to outdated cache information." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Авторизация не прошла." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error en una operación debido a información de caché desactualizada." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Mirëfilltësimi dështoi." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Une opération a échoué en raison d'informations de cache obsolètes." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การให้สิทธิ์ล้มเหลว" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "캐시 정보가 오래되어 작업에 실패했습니다." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yetkilendirme başarısız." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "An operation failed due to outdated cache information." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "认证失败。" + } + } + } + }, + "Authorization needs to be retried.": { + "comment": "OCErrorAuthorizationRetry", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Authorization needs to be retried." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "An operation failed due to outdated cache information." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Autorisierung muss erneut versucht werden." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "An operation failed due to outdated cache information." + "en": { + "stringUnit": { + "state": "translated", + "value": "Authorization needs to be retried." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "An operation failed due to outdated cache information." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Authorisation needs to be retried." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "An operation failed due to outdated cache information." + "es": { + "stringUnit": { + "state": "translated", + "value": "Es necesario reintentar la autorización." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uma operação falhou devido a informações de cache desatualizadas." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Authorization needs to be retried." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "An operation failed due to outdated cache information." + "ko": { + "stringUnit": { + "state": "translated", + "value": "다시 인증해주십시오." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uma operação falhou devido a informações de cache desatualizadas." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Authorization needs to be retried." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Операция не прошла из-за устаревшей информации в кэше." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A autorização precisa ser tentada novamente. " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Një veprim dështoi për shkak hollësish të vjetruara fshehtine." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Authorization needs to be retried." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การดำเนินการล้มเหลวเนื่องจากข้อมูลแคชที่ล้าสมัย" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Që të riprovohet, lypset autorizim." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การดำเนินการล้มเหลวเนื่องจากข้อมูลแคชที่ล้าสมัย" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ลองให้สิทธิ์อีกครั้ง" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eski önbellek bilgileri nedeniyle bir işlem başarısız oldu." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yetkilendirmenin yeniden denenmesi gerekiyor." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "操作因过期的缓存信息失败。" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Authorization needs to be retried." } } } }, - "Another item named %@ already exists in %@." : { - "comment" : "Upload", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item named %@ already exists in %@." + "Authorization was cancelled by the user.": { + "comment": "OCErrroAuthorizationCancelled", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Authorization was cancelled by the user." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ein anderes Element mit dem Namen %@ existiert bereits in %@." + "de": { + "stringUnit": { + "state": "translated", + "value": "Anmeldung wurde vom Benutzer abgebrochen." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item named %@ already exists in %@." + "en": { + "stringUnit": { + "state": "translated", + "value": "Authorization was cancelled by the user." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item named %@ already exists in %@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Authorisation was cancelled by the user." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item named %@ already exists in %@." + "es": { + "stringUnit": { + "state": "translated", + "value": "La autorización fue cancelada por el usuario." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Otro elemento llamado %@ya existe en %@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "L'autorisation a été annulée par l'utilisateur." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item named %@ already exists in %@." + "ko": { + "stringUnit": { + "state": "translated", + "value": "사용자가 승인을 취소했습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@항목이 이미 %@에 존재합니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Authorization was cancelled by the user." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item named %@ already exists in %@." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Authorization was cancelled by the user." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item named %@ already exists in %@." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Authorization was cancelled by the user." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item named %@ already exists in %@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A autorização foi cancelada pelo usuário." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Outro item chamado %@ já existe em %@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Авторизация была отменена пользователем." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item named %@ already exists in %@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Mirëfilltësimi u anulua nga përdoruesi." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Outro item chamado %@ já existe em %@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การอนุญาตถูกยกเลิกแล้วโดยผู้ใช้" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item named %@ already exists in %@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yetkilendirme işlemi kullanıcı tarafından iptal edildi." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Një tjetër objekt i quajtur %@ ekziston tashmë në %@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Authorization was cancelled by the user." } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "อีกรายการชื่อ %@ มีอยู่แล้วใน %@" + } + } + }, + "Available Offline": { + "comment": "Item policy", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Available Offline" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "อีกรายการชื่อ %@ มีอยู่แล้วใน %@" + "de": { + "stringUnit": { + "state": "translated", + "value": "Offline verfügbar" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ adlı başka bir öge %@'da zaten mevcut." + "en": { + "stringUnit": { + "state": "translated", + "value": "Available Offline" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item named %@ already exists in %@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Available Offline" } - } - } - }, - "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." : { - "comment" : "OCErrorItemPolicyRedundant", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + }, + "es": { + "stringUnit": { + "state": "translated", + "value": "Disponible offline" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eine andere Richtlinie der gleichen Art umfasst das Element bereits, wodurch das Hinzufügen dieser Richtlinie überflüssig wird." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Available Offline" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "ko": { + "stringUnit": { + "state": "translated", + "value": "오프라인 사용 가능" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Available Offline" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Disponível Offline" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Otra política de artículos del mismo tipo ya incluye el artículo, lo que hace que la adición de esta política de artículos sea redundante." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Available Offline" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "sq": { + "stringUnit": { + "state": "translated", + "value": "E passhme Jashtë Linje" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "동일한 종류의 다른 항목 정책이 이미 항목을 포함하므로 이 항목 정책의 추가는 중복됩니다." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "พร้อมใช้งานแบบออฟไลน์แล้ว" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Çevrimdışı hali mevcut" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Available Offline" + } + } + } + }, + "Between {{min}} and {{max}} {{characterType}}": { + "comment": "OCPasswordPolicyRuleCharacters", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Between {{min}} and {{max}} {{characterType}}" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "de": { + "stringUnit": { + "state": "translated", + "value": "Zwischen {{min}} und {{max}} {{characterType}}" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Outra política de itens do mesmo tipo já inclui o item, tornando redundante a adição desta política de itens. " + "en": { + "stringUnit": { + "state": "translated", + "value": "Between {{min}} and {{max}} {{characterType}}" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "es": { + "stringUnit": { + "state": "translated", + "value": "Between {{min}} and {{max}} {{characterType}}" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Outra política de itens do mesmo tipo já inclui o item, tornando redundante a adição desta política de itens. " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Between {{min}} and {{max}} {{characterType}}" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Between {{min}} and {{max}} {{characterType}}" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Një tjetër rregull objektesh të të njëjtit lloj përfshin tashmë objektin, duke e bërë të përsëritur shtimin e këtij rregulli objekti." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Between {{min}} and {{max}} {{characterType}}" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "นโยบายสินค้าซ้ำกับสินค้าที่มีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Between {{min}} and {{max}} {{characterType}}" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "นโยบายสินค้าซ้ำกับสินค้าที่มีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Between {{min}} and {{max}} {{characterType}}" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Aynı türden başka bir öge politikası, ögeyi zaten içeriyor ve bu öge politikasının eklenmesini gereksiz kılıyor." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Between {{min}} and {{max}} {{characterType}}" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Another item policy of the same kind already includes the item, making the addition of this item policy redundant." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Between {{min}} and {{max}} {{characterType}}" } } } }, - "At least {{min}} {{characterType}}" : { - "comment" : "Password Policy Check", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "Bookmark created with a newer app version. Please update the app.": { + "comment": "OCErrorHostUpdateRequired", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Bookmark created with a newer app version. Please update the app." + } + }, + "de": { + "stringUnit": { + "state": "translated", + "value": "Lesezeichen wurde mit einer neueren App-Version erstellt. Bitte aktualisieren Sie die App." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mindestens {{min}} {{characterType}}" + "en": { + "stringUnit": { + "state": "translated", + "value": "Bookmark created with a newer app version. Please update the app." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Bookmark created with a newer app version. Please update the app." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "es": { + "stringUnit": { + "state": "translated", + "value": "Marcador creado con una versión más reciente de la aplicación. Actualiza la aplicación." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Bookmark created with a newer app version. Please update the app." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "ko": { + "stringUnit": { + "state": "translated", + "value": "최신 앱 버전에 책갈피가 생성되었습니다. 앱을 업데이트해주십시오." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Bookmark created with a newer app version. Please update the app." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Marcador criado com uma versão mais recente do aplicativo. Atualize o aplicativo. " } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Bookmark created with a newer app version. Please update the app." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Faqerojtës i krijuar me një version më të ri të aplikacionit. Ju lutemi, përditësoni aplikacionin." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "สร้างบุ๊กมาร์กด้วยแอปเวอร์ชันใหม่กว่า โปรดอัปเดตแอป" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Daha yeni bir uygulama sürümüyle oluşturulan yer işareti. Lütfen uygulamayı güncelleyin." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Bookmark created with a newer app version. Please update the app." + } + } + } + }, + "Can't build custom scheme URL from %@.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Can't build custom scheme URL from %@." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "de": { + "stringUnit": { + "state": "translated", + "value": "Kann aus %@ keine Custom Scheme URL erstellen." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "en": { + "stringUnit": { + "state": "translated", + "value": "Can't build custom scheme URL from %@." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Can't build custom scheme URL from %@." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} {{characterType}}" + "es": { + "stringUnit": { + "state": "translated", + "value": "Can't build custom scheme URL from %@." } - } - } - }, - "At least {{min}} special characters: {{specialCharacters}}" : { - "comment" : "Password Policy Check", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + }, + "fr": { + "stringUnit": { + "state": "translated", + "value": "Can't build custom scheme URL from %@." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mindestens {{min}} Sonderzeichen: {{specialCharacters}}" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Can't build custom scheme URL from %@." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Can't build custom scheme URL from %@." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Não é possível criar URL de esquema personalizado de %@." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Can't build custom scheme URL from %@." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "sq": { + "stringUnit": { + "state": "translated", + "value": "S’mund të ndërtohet URL skeme vetjake nga %@." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Can't build custom scheme URL from %@." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Can't build custom scheme URL from %@." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Can't build custom scheme URL from %@." + } + } + } + }, + "Can't open authorization URL with custom scheme.": { + "comment": "OCErrorAuthorizationCantOpenCustomSchemeURL", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Can't open authorization URL with custom scheme." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "de": { + "stringUnit": { + "state": "translated", + "value": "Kann Authorization URL nicht per Custom Scheme öffnen." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "en": { + "stringUnit": { + "state": "translated", + "value": "Can't open authorization URL with custom scheme." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Can't open authorisation URL with custom scheme." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "es": { + "stringUnit": { + "state": "translated", + "value": "Can't open authorization URL with custom scheme." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Can't open authorization URL with custom scheme." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Can't open authorization URL with custom scheme." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Can't open authorization URL with custom scheme." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "At least {{min}} special characters: {{specialCharacters}}" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Não é possível abrir o URL de autorização com esquema personalizado." } - } - } - }, - "At most {{byteLength}} bytes." : { - "comment" : "OCPasswordPolicyRuleByteLength", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + }, + "ru": { + "stringUnit": { + "state": "translated", + "value": "Can't open authorization URL with custom scheme." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Maximal {{byteLength}} Bytes." + "sq": { + "stringUnit": { + "state": "translated", + "value": "S’mund të hapë URL autorizimi me skemë vetjake." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Can't open authorization URL with custom scheme." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Can't open authorization URL with custom scheme." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Can't open authorization URL with custom scheme." + } + } + } + }, + "Can't open custom scheme URL %@.": { + "comment": "Custom Scheme Browser Sessions", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Can't open custom scheme URL %@." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "de": { + "stringUnit": { + "state": "translated", + "value": "Kann Custom Scheme URL %@ nicht öffnen." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "en": { + "stringUnit": { + "state": "translated", + "value": "Can't open custom scheme URL %@." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Can't open custom scheme URL %@." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "es": { + "stringUnit": { + "state": "translated", + "value": "Can't open custom scheme URL %@." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Can't open custom scheme URL %@." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Can't open custom scheme URL %@." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Can't open custom scheme URL %@." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Não é possível abrir o URL de esquema personalizado %@." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Can't open custom scheme URL %@." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "sq": { + "stringUnit": { + "state": "translated", + "value": "S’mund të hapet URL skeme %@." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Can't open custom scheme URL %@." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{byteLength}} bytes." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Can't open custom scheme URL %@." + } + }, + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Can't open custom scheme URL %@." } } } }, - "At most {{max}} {{characterType}}" : { - "comment" : "Password Policy Check", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Maximal {{max}} {{characterType}}" + "Cancel": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Cancel" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "de": { + "stringUnit": { + "state": "translated", + "value": "Abbrechen" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "en": { + "stringUnit": { + "state": "translated", + "value": "Cancel" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Cancel" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "es": { + "stringUnit": { + "state": "translated", + "value": "Cancelar" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Annuler" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "ko": { + "stringUnit": { + "state": "translated", + "value": "취소" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Cancel" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Cancel" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Cancel" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Cancelar" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Отмена" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Anuloje" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ยกเลิก" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "tr": { + "stringUnit": { + "state": "translated", + "value": "İptal" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "At most {{max}} {{characterType}}" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "取消" } } } }, - "Auth Data" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Data" + "Certificate": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Certificate" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Autorisierungsdaten" + "de": { + "stringUnit": { + "state": "translated", + "value": "Zertifikat" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Data" + "en": { + "stringUnit": { + "state": "translated", + "value": "Certificate" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Data" + "es": { + "stringUnit": { + "state": "translated", + "value": "Certificate" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Data" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Certificate" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Datos de autenticación" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Certificate" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Data" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Certificate" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "인증 데이터" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Certificate" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Data" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Certificate" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Data" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Certificate" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Data" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Certificate" } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dados de Autenticação " + } + } + }, + "Certificate Date": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Certificate Date" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Data" + "de": { + "stringUnit": { + "state": "translated", + "value": "Zertifikatsdatum" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dados de Autenticação " + "en": { + "stringUnit": { + "state": "translated", + "value": "Certificate Date" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Data" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Certificate Date" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Të dhëna Mirëfilltësimi" + "es": { + "stringUnit": { + "state": "translated", + "value": "Fecha del certificado" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ข้อมูลรับรองความถูกต้อง" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Certificate Date" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ข้อมูลรับรองความถูกต้อง" + "ko": { + "stringUnit": { + "state": "translated", + "value": "날짜 인증서" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yetkilendirme Verisi" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Certificate Date" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Data" - } - } - } - }, - "Auth Method" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Method" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Data do Certificado " } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Autorisierungsmethode" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Certificate Date" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Method" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Datë Dëshmie" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Method" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "วันที่รับรอง" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Method" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sertifika Tarihi" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Método de autenticación" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Certificate Date" } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Method" + } + } + }, + "Certificate changed": { + "comment": "Certificate checks", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Certificate changed" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "인증 방법" + "de": { + "stringUnit": { + "state": "translated", + "value": "Zertifikat geändert" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Method" + "en": { + "stringUnit": { + "state": "translated", + "value": "Certificate changed" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Method" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Certificate changed" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Method" + "es": { + "stringUnit": { + "state": "translated", + "value": "Certificado cambiado" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Método de Autenticação " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Certificate changed" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Method" + "ko": { + "stringUnit": { + "state": "translated", + "value": "인증서 변경" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Método de Autenticação " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Certificate changed" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Method" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Certificado alterado " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Metodë Mirëfilltësimi" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Certificate changed" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "วิธีการรับรองความถูกต้อง" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Dëshmia ndryshoi" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "วิธีการรับรองความถูกต้อง" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เปลี่ยนใบรับรองแล้ว" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yetkilendirme Yöntemi" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sertifika değişti" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Method" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Certificate changed" } } } }, - "Auth Validation Date" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Validation Date" + "Certificate for %@ passed validation.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Certificate for %@ passed validation." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Validierungsdatum der Autorisierung" + "de": { + "stringUnit": { + "state": "translated", + "value": "Zertifikat für %@ hat die Überprüfung bestanden." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Validation Date" + "en": { + "stringUnit": { + "state": "translated", + "value": "Certificate for %@ passed validation." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Validation Date" + "es": { + "stringUnit": { + "state": "translated", + "value": "Certificate for %@ passed validation." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Validation Date" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Certificate for %@ passed validation." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fecha de validación de autenticación" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Certificate for %@ passed validation." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Validation Date" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Certificate for %@ passed validation." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "인증 유효성 검사 날짜" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Certificate for %@ passed validation." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Validation Date" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Certificate for %@ passed validation." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Validation Date" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Certificate for %@ passed validation." + } + }, + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Certificate for %@ passed validation." + } + } + } + }, + "Certificates": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Certificates" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Validation Date" + "de": { + "stringUnit": { + "state": "translated", + "value": "Zertifikate" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Data de Validação de Autenticação " + "en": { + "stringUnit": { + "state": "translated", + "value": "Certificates" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Validation Date" + "es": { + "stringUnit": { + "state": "translated", + "value": "Certificates" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Data de Validação de Autenticação " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Certificates" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Validation Date" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Certificates" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Datë Vlerësimi Mirëfilltësimi" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Certificates" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "วันที่ตรวจสอบสิทธิ์" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Certificates" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "วันที่ตรวจสอบสิทธิ์" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Certificates" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yetki Doğrulama Tarihi" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Certificates" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auth Validation Date" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Certificates" } } } }, - "Authenticating…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authenticating…" + "Class": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Class" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Anmeldung läuft…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Klasse" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authenticating…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Class" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authenticating…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Class" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authenticating…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Clases" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Autenticando..." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Class" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentification…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "클래스" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "인증 중..." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Class" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authenticating…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Classe" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authenticating…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Class" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authenticating…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Klasë" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authenticating…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "หมวดหมู่" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authenticating…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sınıf" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Autenticando..." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Class" } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "A autenticar..." + } + } + }, + "Client registration failed.": { + "comment": "OCErrorAuthorizationClientRegistrationFailed", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Client registration failed." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Autenticando..." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Client-Registrierung ist fehlgeschlagen." } }, - "pt-PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "A autenticar..." + "en": { + "stringUnit": { + "state": "translated", + "value": "Client registration failed." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Авторизация…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Client registration failed." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po bëhet mirëfilltësimi…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Falló el registro del cliente." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังตรวจสอบสิทธิ์..." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Client registration failed." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังตรวจสอบสิทธิ์..." + "ko": { + "stringUnit": { + "state": "translated", + "value": "클라이언트 등록 실패" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kimlik doğrulanıyor..." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Client registration failed." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "正在认证..." - } - } - } - }, - "Authentication method not allowed. Re-authentication needed." : { - "comment" : "OCErrorAuthorizationMethodNotAllowed", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method not allowed. Re-authentication needed." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O registro do cliente falhou. " } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentifizierungsmethode nicht erlaubt. Erneute Authentifizierung erforderlich." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Client registration failed." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method not allowed. Re-authentication needed." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Dështoi regjistrimi i klientit." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method not allowed. Re-authentication needed." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การลงทะเบียนไคลเอนต์ล้มเหลว" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method not allowed. Re-authentication needed." + "tr": { + "stringUnit": { + "state": "translated", + "value": "İstemci kaydı başarısız." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Método de autenticación no permitido. Se necesita una nueva autenticación." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Client registration failed." } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method not allowed. Re-authentication needed." + } + } + }, + "Closing vault…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Closing vault…" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "허용되지 않은 인증 방법. 재인증 필요." + "de": { + "stringUnit": { + "state": "translated", + "value": "Schließe Vault…" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method not allowed. Re-authentication needed." + "en": { + "stringUnit": { + "state": "translated", + "value": "Closing vault…" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method not allowed. Re-authentication needed." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Closing vault…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method not allowed. Re-authentication needed." + "es": { + "stringUnit": { + "state": "translated", + "value": "Closing vault…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Método de autenticação não permitido. Re-autenticação necessária. " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Closing vault…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method not allowed. Re-authentication needed." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Closing vault…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Método de autenticação não permitido. Re-autenticação necessária. " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Closing vault…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method not allowed. Re-authentication needed." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Fechando cofre…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Metodë mirëfilltësimi e palejuar. Lypset rimirëfilltësim." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Closing vault…" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่อนุญาตให้ใช้วิธีการรับรองความถูกต้อง จำเป็นต้องมีการตรวจสอบสิทธิ์อีกครั้ง" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po mbyllet kasaforta…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่อนุญาตให้ใช้วิธีการรับรองความถูกต้อง จำเป็นต้องมีการตรวจสอบสิทธิ์อีกครั้ง" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Closing vault…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kimlik doğrulama yöntemine izin verilmiyor. Yeniden kimlik doğrulama gerekli." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Closing vault…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method not allowed. Re-authentication needed." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Closing vault…" } } } }, - "Authentication method unknown." : { - "comment" : "OCErrorAuthorizationMethodUnknown", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method unknown." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentifizierungsmethode unbekannt." + "Connected": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Connected" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method unknown." + "de": { + "stringUnit": { + "state": "translated", + "value": "Verbunden" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method unknown." + "en": { + "stringUnit": { + "state": "translated", + "value": "Connected" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method unknown." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Connected" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Método de autenticación desconocido." + "es": { + "stringUnit": { + "state": "translated", + "value": "Conectado" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method unknown." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Connecté" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "알 수 없는 인증 방법" + "ko": { + "stringUnit": { + "state": "translated", + "value": "연결됨" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method unknown." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Connected" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method unknown." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Connected" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method unknown." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Connected" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Método de autenticação desconhecido. " + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Conectado" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method unknown." + "pt-PT": { + "stringUnit": { + "state": "translated", + "value": "Ligado" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Método de autenticação desconhecido. " + "ru": { + "stringUnit": { + "state": "translated", + "value": "Подключено" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method unknown." + "sq": { + "stringUnit": { + "state": "translated", + "value": "I lidhur" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Metodë e panjohur mirëfilltësimesh." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เชื่อมต่อ" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่รู้จักวิธีการรับรองความถูกต้อง" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bağlandı" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่รู้จักวิธีการรับรองความถูกต้อง" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kimlik doğrulama yöntemi bilinmiyor." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authentication method unknown." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "已连接" } } } }, - "Authorization failed because data was missing from the secret data for the authentication method." : { - "comment" : "OCErrorAuthorizationMissingData", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because data was missing from the secret data for the authentication method." + "Connecting": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Connecting" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Anmeldung ist fehlgeschlagen, weil in den geheimen Daten für die Authentifizierungsmethode Daten fehlen." + "de": { + "stringUnit": { + "state": "translated", + "value": "Verbinde" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because data was missing from the secret data for the authentication method." + "en": { + "stringUnit": { + "state": "translated", + "value": "Connecting" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorisation failed because data was missing from the secret data for the authentication method." + "es": { + "stringUnit": { + "state": "translated", + "value": "Connecting" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorisation failed because data was missing from the secret data for the authentication method." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Connecting" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La autorización falló porque faltaban datos de los datos secretos para ser utilizados por el método de autenticación." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Connecting" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "L'autorisation a échoué car des données étaient manquantes dans les données secrètes pour la méthode d'authentification." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Connecting" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "인증 방법에 대한 기밀 데이터로부터 데이터가 누락되어 인증에 실패했습니다." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Connecting" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because data was missing from the secret data for the authentication method." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Connecting" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because data was missing from the secret data for the authentication method." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Connecting" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because data was missing from the secret data for the authentication method." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Connecting" } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because data was missing from the secret data for the authentication method." + } + } + }, + "Connecting…": { + "comment": "Connection Progress", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Connecting…" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because data was missing from the secret data for the authentication method." + "de": { + "stringUnit": { + "state": "translated", + "value": "Verbinde…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A autorização falhou porque faltavam dados dos dados secretos para o método de autenticação." + "en": { + "stringUnit": { + "state": "translated", + "value": "Connecting…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because data was missing from the secret data for the authentication method." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Connecting…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A autorização falhou porque faltavam dados dos dados secretos para o método de autenticação." + "es": { + "stringUnit": { + "state": "translated", + "value": "Connectando..." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Авторизация не прошла, так как не хватило части секретных данных для метода аутентификации." + "fr": { + "stringUnit": { + "state": "translated", + "value": "connexion en cours..." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mirëfilltësimi dështoi, ngaqë te të dhënat e fshehta mungojnë të dhëna për metodën e mirëfilltësimit." + "ko": { + "stringUnit": { + "state": "translated", + "value": "연결 중..." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การอนุญาตล้มเหลวเนื่องจากข้อมูลลับสำหรับการตรวจสอบสิทธิ์หายไป" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Connecting…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การอนุญาตล้มเหลวเนื่องจากข้อมูลลับสำหรับการตรวจสอบสิทธิ์หายไป" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Connecting…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kimlik doğrulama yöntemi için gizli veri kayıp olduğundan yetkilendirme başarısız oldu." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Connecting…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because data was missing from the secret data for the authentication method." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Conectando..." } - } - } - }, - "Authorization failed because no authorization data was set for the authentication method." : { - "comment" : "OCErrorAuthorizationNoMethodData", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + }, + "pt-PT": { + "stringUnit": { + "state": "translated", + "value": "A ligar..." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Anmeldung ist fehlgeschlagen, weil für die Anmeldungsmethode keine geheimen Daten vorhanden sind." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Соединение…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po lidhet…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorisation failed because no authorisation data was set for the authentication method." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังเชื่อมต่อ..." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorisation failed because no authorisation data was set for the authentication method." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bağlanılıyor..." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "正在连接..." + } + } + } + }, + "Connection refused": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Connection refused" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "L'autorisation a échoué car aucune donnée secrète n'a été définie pour la méthode d'authentification." + "de": { + "stringUnit": { + "state": "translated", + "value": "Verbindung abgelehnt" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "en": { + "stringUnit": { + "state": "translated", + "value": "Connection refused" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "es": { + "stringUnit": { + "state": "translated", + "value": "Connection refused" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Connection refused" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Connection refused" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Connection refused" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Connection refused" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A autorização falhou porque nenhum dado de autorização foi definido para o método de autenticação." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Connection refused" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Connection refused" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A autorização falhou porque nenhum dado de autorização foi definido para o método de autenticação." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Connection refused" + } + } + } + }, + "Connection validation failed.": { + "comment": "OCErrorServerConnectionValidationFailed", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Connection validation failed." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Авторизация не прошла, так как для метода аутентификации не были заданы секретные данные." + "de": { + "stringUnit": { + "state": "translated", + "value": "Verbindungsüberprüfung fehlgeschlagen." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Autorizimi dështoi, ngaqë për metodën e mirëfilltësimit s’qenë caktuar të dhëna autorizimi." + "en": { + "stringUnit": { + "state": "translated", + "value": "Connection validation failed." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Connection validation failed." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "es": { + "stringUnit": { + "state": "translated", + "value": "La validación de la conexión falló." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Connection validation failed." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because no authorization data was set for the authentication method." + "ko": { + "stringUnit": { + "state": "translated", + "value": "연결 유효성 검사 실패" } - } - } - }, - "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." : { - "comment" : "OCErrorAuthorizationRedirect", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "Connection validation failed." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Anmeldung ist fehlgeschlagen, weil der Server einen Redirect zurückgegeben hat. Die Anmeldung könnte funktionieren, wenn Sie es mit der Redirect-URL erneut versuchen." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A validação da conexão falhou. " } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Connection validation failed." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorisation failed because the server returned a redirect. Authorisation may be successful when retried with the redirect URL." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Dështoi vlerësimi i lidhjes." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorisation failed because the server returned a redirect. Authorisation may be successful when retried with the redirect URL." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ตรวจสอบการเชื่อมต่อล้มเหลว" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La autorización falló porque el servidor devolvió una redirección. La autorización puede tener éxito cuando se reintenta con la URL de redireccionamiento." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bağlantı doğrulama başarısız." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "L'autorisation a échoué car le serveur a renvoyé une redirection. L'autorisation peut réussir lors d'une nouvelle tentative avec l'URL de redirection." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Connection validation failed." + } + } + } + }, + "Construction of URL Session Task failed.": { + "comment": "OCErrorRequestURLSessionTaskConstructionFailed", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Construction of URL Session Task failed." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "서버가 리디렉션을 반환하여 인증에 실패했습니다. 리디렉션 URL을 사용하여 재시도하면 인증이 성공할 수 있습니다." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Erstellung des URL-Session-Task ist fehlgeschlagen." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "en": { + "stringUnit": { + "state": "translated", + "value": "Construction of URL Session Task failed." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Construction of URL Session Task failed." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "es": { + "stringUnit": { + "state": "translated", + "value": "La construcción de la URL Session Task falló." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "fr": { + "stringUnit": { + "state": "translated", + "value": "La construction de la tâche de session URL a échoué." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "ko": { + "stringUnit": { + "state": "translated", + "value": "URL 세션 작업을 구성하지 못했습니다." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A autorização falhou porque o servidor retornou um redirecionamento. A autorização pode ser bem-sucedida quando você tentar novamente com o URL de redirecionamento." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Construction of URL Session Task failed." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Construction of URL Session Task failed." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A autorização falhou porque o servidor retornou um redirecionamento. A autorização pode ser bem-sucedida quando você tentar novamente com o URL de redirecionamento." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Construction of URL Session Task failed." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Авторизация не прошла, так как сервер вернул перенаправление. Авторизация может пройти успешно, если попробовать повторно с перенаправленной ссылкой." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A construção da Tarefa de Sessão de URL falhou." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mirëfilltësimi dështoi, ngaqë shërbyesi u përgjigj me një ridrejtim. Mirëfilltësimi mund të jetë i suksesshëm kur riprovohet me URL ridrejtimi." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Формирование задачи ссылочного сеанса не прошло." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การอนุญาตล้มเหลวเนื่องจากเซิร์ฟเวอร์ส่งคืนการเปลี่ยนเส้นทาง ลองใช้ URL การเปลี่ยนเส้นทางใหม่" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Akti i krijimit të Sesionit URL dështoi." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การอนุญาตล้มเหลวเนื่องจากเซิร์ฟเวอร์ส่งคืนการเปลี่ยนเส้นทาง ลองใช้ URL การเปลี่ยนเส้นทางใหม่" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การสร้าง URL งานเซสชันล้มเหลว" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sunucu bir yönlendirme yaptığından dolayı yetkilendirme başarısız. Yönlendirilen bağlantı ile denendiğinde yetkilendirme başarılı olabilir." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bağlantı Oturum Görevi yapısında hata alındı." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed because the server returned a redirect. Authorization may be successful when retried with the redirect URL." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Construction of URL Session Task failed." } } } }, - "Authorization failed." : { - "comment" : "OCErrorAuthorizationFailed", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed." + "Contributor": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Contributor" + } + }, + "de": { + "stringUnit": { + "state": "translated", + "value": "Mitwirkender" + } + }, + "en": { + "stringUnit": { + "state": "translated", + "value": "Contributor" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Anmeldung ist fehlgeschlagen." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Contributor" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed." + "es": { + "stringUnit": { + "state": "translated", + "value": "Contributor" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorisation failed." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Contributor" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorisation failed." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Contributor" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Autorización fallida." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Contributor" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "L'autorisation a échoué." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Contribuinte" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "인증 실패." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Contributor" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kontribues" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Contributor" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Contributor" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Contributor" + } + } + } + }, + "Copying %@ to %@…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Copying %@ to %@…" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed." + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ nach %@ kopieren…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Falha na autorização." + "en": { + "stringUnit": { + "state": "translated", + "value": "Copying %@ to %@…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization failed." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Copying %@ to %@…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Falha na autorização." + "es": { + "stringUnit": { + "state": "translated", + "value": "Copiando %@ a %@…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Авторизация не прошла." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Copie de %@ vers %@…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mirëfilltësimi dështoi." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@에서 %@으로 복사 중..." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การให้สิทธิ์ล้มเหลว" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Copying %@ to %@…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การให้สิทธิ์ล้มเหลว" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Copying %@ to %@…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yetkilendirme başarısız." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Copying %@ to %@…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "认证失败。" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Copiando %@ para %@…" } - } - } - }, - "Authorization needs to be retried." : { - "comment" : "OCErrorAuthorizationRetry", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization needs to be retried." + }, + "ru": { + "stringUnit": { + "state": "translated", + "value": "Копирование %@ в %@…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Autorisierung muss erneut versucht werden." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po kopjohet %@ te %@…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization needs to be retried." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังคัดลอก %@ ไปยัง %@..." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorisation needs to be retried." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@öğesi%@ konumuna kopyalanıyor..." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorisation needs to be retried." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "正在复制 %@ 到 %@…" + } + } + } + }, + "Couldn't copy %@ to %@, because an item called %@ already exists there.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Es necesario reintentar la autorización." + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ konnte nicht nach %@ kopiert werden, da dort bereits ein Element namens %@ existiert." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization needs to be retried." + "en": { + "stringUnit": { + "state": "translated", + "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "다시 인증해주십시오." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization needs to be retried." + "es": { + "stringUnit": { + "state": "translated", + "value": "No se pudo copiar %@ a %@, porque ya existe un elemento llamado %@ en esa ubicación." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization needs to be retried." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Impossible de copier %@ vers %@ , car un élément appelé %@ existe déjà là-bas." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization needs to be retried." + "ko": { + "stringUnit": { + "state": "translated", + "value": "항목 %@이(가) 이미 존재하여 %@을(를) %@으로 복사할 수 없습니다 " } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A autorização precisa ser tentada novamente. " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization needs to be retried." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A autorização precisa ser tentada novamente. " + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Couldn't copy %@ to %@, because an item called %@ already exists there." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization needs to be retried." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Não foi possível copiar %@ para %@,porque um item chamado %@ já existe lá." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Që të riprovohet, lypset autorizim." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Не удалось скопировать %@ в %@, потому что элемент под названием %@ там уже существует." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลองให้สิทธิ์อีกครั้ง" + "sq": { + "stringUnit": { + "state": "translated", + "value": "S’u kopjua dot %@ te %@, ngaqë atje ka tashmë një objekt të quajtur %@." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลองให้สิทธิ์อีกครั้ง" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่สามารถคัดลอก %@ ไปยัง %@ เนื่องจากรายการ %@ ถูกเรียกใช้อยู่" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yetkilendirmenin yeniden denenmesi gerekiyor." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@, %@ konumuna kopyalanamadı, çünkü %@ öğesi bu konumda mevcut." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization needs to be retried." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "无法拷贝 %@ 到 %@,因为该处已经存在名为 %@ 的项目。" } } } }, - "Authorization was cancelled by the user." : { - "comment" : "OCErrroAuthorizationCancelled", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization was cancelled by the user." + "Couldn't create %@": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Couldn't create %@" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Anmeldung wurde vom Benutzer abgebrochen." + "de": { + "stringUnit": { + "state": "translated", + "value": "Konnte %@ nicht erstellen" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization was cancelled by the user." + "en": { + "stringUnit": { + "state": "translated", + "value": "Couldn't create %@" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorisation was cancelled by the user." + "es": { + "stringUnit": { + "state": "translated", + "value": "Couldn't create %@" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorisation was cancelled by the user." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Couldn't create %@" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La autorización fue cancelada por el usuario." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Couldn't create %@" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "L'autorisation a été annulée par l'utilisateur." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Couldn't create %@" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "사용자가 승인을 취소했습니다." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Couldn't create %@" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization was cancelled by the user." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Couldn't create %@" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization was cancelled by the user." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Couldn't create %@" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization was cancelled by the user." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Couldn't create %@" } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization was cancelled by the user." + } + } + }, + "Couldn't delete %@": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Couldn't delete %@" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization was cancelled by the user." + "de": { + "stringUnit": { + "state": "translated", + "value": "Konnte %@ nicht löschen" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A autorização foi cancelada pelo usuário." + "en": { + "stringUnit": { + "state": "translated", + "value": "Couldn't delete %@" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization was cancelled by the user." + "es": { + "stringUnit": { + "state": "translated", + "value": "Couldn't delete %@" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A autorização foi cancelada pelo usuário." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Couldn't delete %@" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Авторизация была отменена пользователем." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Couldn't delete %@" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mirëfilltësimi u anulua nga përdoruesi." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Couldn't delete %@" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การอนุญาตถูกยกเลิกแล้วโดยผู้ใช้" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Couldn't delete %@" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การอนุญาตถูกยกเลิกแล้วโดยผู้ใช้" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Couldn't delete %@" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yetkilendirme işlemi kullanıcı tarafından iptal edildi." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Couldn't delete %@" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Authorization was cancelled by the user." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Couldn't delete %@" } } } }, - "Available Offline" : { - "comment" : "Item policy", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Available Offline" + "Couldn't download %@": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Couldn't download %@" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline verfügbar" + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ konnte nicht heruntergeladen werden" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Available Offline" + "en": { + "stringUnit": { + "state": "translated", + "value": "Couldn't download %@" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Available Offline" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Couldn't download %@" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Available Offline" + "es": { + "stringUnit": { + "state": "translated", + "value": "%@ no se pudo descargar" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Disponible offline" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Couldn't download %@" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Available Offline" + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@을(를) 다운로드할 수 없습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "오프라인 사용 가능" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Couldn't download %@" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Available Offline" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Não foi possível baixar %@" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Available Offline" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Couldn't download %@" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Available Offline" + "sq": { + "stringUnit": { + "state": "translated", + "value": "S’u shkarkua dot %@" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Disponível Offline" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่สามารถดาวน์โหลด %@" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Available Offline" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@ indirilemedi" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Disponível Offline" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Couldn't download %@" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Available Offline" + } + } + }, + "Couldn't move %@ to %@, because an item called %@ already exists there.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "E passhme Jashtë Linje" + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ konnte nicht nach %@ verschoben werden, da dort bereits ein Element namens %@ existiert." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "พร้อมใช้งานแบบออฟไลน์แล้ว" + "en": { + "stringUnit": { + "state": "translated", + "value": "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "พร้อมใช้งานแบบออฟไลน์แล้ว" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Çevrimdışı hali mevcut" + "es": { + "stringUnit": { + "state": "translated", + "value": "No se pudo mover %@ a %@, porque ya existe un elemento llamado %@ en esa ubicación." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Available Offline" - } - } - } - }, - "Between {{min}} and {{max}} {{characterType}}" : { - "comment" : "OCPasswordPolicyRuleCharacters", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Impossible de déplacer %@ à %@, car un élément appelé %@ existe déjà là-bas." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zwischen {{min}} und {{max}} {{characterType}}" + "ko": { + "stringUnit": { + "state": "translated", + "value": "항목 %@이(가) 이미 존재하여 %@을(를) %@으로 이동할 수 없습니다 " } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Couldn't move %@ to %@, because an item called %@ already exists there." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Não foi possível mover %@ para %@, porque um item chamado %@ já existe lá." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Не удалось переместить %@ в %@, потому что элемент под названием %@ уже существует." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "sq": { + "stringUnit": { + "state": "translated", + "value": "S’u kalua dot %@ te %@, ngaqë atje ka tashmë një objekt të quajtur %@." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่สามารถย้าย %@ ไปยัง %@ เนื่องจากรายการ %@ มีอยู่แล้ว" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@, %@ konumuna taşınamadı, çünkü %@ öğesi bu konumda mevcut." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "无法移动 %@ 到 %@,因为该处已经存在名为 %@ 的项目。" } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + } + } + }, + "Couldn't rename %@ to %@, because another item with that name already exists.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ konnte nicht in %@ umbenannt werden, da dort bereits ein Element mit diesem Namen existiert." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "en": { + "stringUnit": { + "state": "translated", + "value": "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" + "es": { + "stringUnit": { + "state": "translated", + "value": "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Between {{min}} and {{max}} {{characterType}}" - } - } - } - }, - "Bookmark created with a newer app version. Please update the app." : { - "comment" : "OCErrorHostUpdateRequired", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bookmark created with a newer app version. Please update the app." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lesezeichen wurde mit einer neueren App-Version erstellt. Bitte aktualisieren Sie die App." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bookmark created with a newer app version. Please update the app." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bookmark created with a newer app version. Please update the app." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Não foi possível renomear %@ para %@ porque já existe outro item com esse nome." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bookmark created with a newer app version. Please update the app." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Marcador creado con una versión más reciente de la aplicación. Actualiza la aplicación." + "sq": { + "stringUnit": { + "state": "translated", + "value": "S’u riemërtua dot %@ në %@, ngaqë ekziston tashmë një tjetër objekt me atë emër." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bookmark created with a newer app version. Please update the app." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "최신 앱 버전에 책갈피가 생성되었습니다. 앱을 업데이트해주십시오." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Couldn't rename %@ to %@, because another item with that name already exists." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bookmark created with a newer app version. Please update the app." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Couldn't rename %@ to %@, because another item with that name already exists." } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bookmark created with a newer app version. Please update the app." + } + } + }, + "Couldn't upload %@": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Couldn't upload %@" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bookmark created with a newer app version. Please update the app." + "de": { + "stringUnit": { + "state": "translated", + "value": "Konnte %@ nicht hochladen" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Marcador criado com uma versão mais recente do aplicativo. Atualize o aplicativo. " + "en": { + "stringUnit": { + "state": "translated", + "value": "Couldn't upload %@" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bookmark created with a newer app version. Please update the app." + "es": { + "stringUnit": { + "state": "translated", + "value": "Couldn't upload %@" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Marcador criado com uma versão mais recente do aplicativo. Atualize o aplicativo. " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Couldn't upload %@" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bookmark created with a newer app version. Please update the app." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Couldn't upload %@" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Faqerojtës i krijuar me një version më të ri të aplikacionit. Ju lutemi, përditësoni aplikacionin." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Couldn't upload %@" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "สร้างบุ๊กมาร์กด้วยแอปเวอร์ชันใหม่กว่า โปรดอัปเดตแอป" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Couldn't upload %@" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "สร้างบุ๊กมาร์กด้วยแอปเวอร์ชันใหม่กว่า โปรดอัปเดตแอป" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Couldn't upload %@" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Daha yeni bir uygulama sürümüyle oluşturulan yer işareti. Lütfen uygulamayı güncelleyin." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Couldn't upload %@" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bookmark created with a newer app version. Please update the app." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Couldn't upload %@" } } } }, - "Can't build custom scheme URL from %@." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "Creating folder %@…": { + "comment": "Create folder", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Creating folder %@…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kann aus %@ keine Custom Scheme URL erstellen." + "de": { + "stringUnit": { + "state": "translated", + "value": "Ordner %@ anlegen…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "en": { + "stringUnit": { + "state": "translated", + "value": "Creating folder %@…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Creating folder %@…" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "es": { + "stringUnit": { + "state": "translated", + "value": "Creando carpeta %@…" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Création du dossier %@…" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@ 폴더 생성 중..." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Creating folder %@…" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Creating folder %@…" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Creating folder %@…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Criando a pasta %@…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não é possível criar URL de esquema personalizado de %@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Создание папки %@…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po krijohet dosja %@…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não é possível criar URL de esquema personalizado de %@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังสร้างโฟลเดอร์ %@..." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@klasörü oluşturuluyor..." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "S’mund të ndërtohet URL skeme vetjake nga %@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "正在创建文件夹 %@…" } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + } + } + }, + "Creating share for %@…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Creating share for %@…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "de": { + "stringUnit": { + "state": "translated", + "value": "Erstelle Freigabe für %@…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "en": { + "stringUnit": { + "state": "translated", + "value": "Creating share for %@…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't build custom scheme URL from %@." + "es": { + "stringUnit": { + "state": "translated", + "value": "Creating share for %@…" } - } - } - }, - "Can't open authorization URL with custom scheme." : { - "comment" : "OCErrorAuthorizationCantOpenCustomSchemeURL", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + }, + "fr": { + "stringUnit": { + "state": "translated", + "value": "Creating share for %@…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kann Authorization URL nicht per Custom Scheme öffnen." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Creating share for %@…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Creating share for %@…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorisation URL with custom scheme." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Creating share for %@…" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorisation URL with custom scheme." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Creating share for %@…" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Creating share for %@…" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Creating share for %@…" + } + } + } + }, + "Custom": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Custom" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "de": { + "stringUnit": { + "state": "translated", + "value": "Benutzerdefiniert" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "en": { + "stringUnit": { + "state": "translated", + "value": "Custom" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Custom" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "es": { + "stringUnit": { + "state": "translated", + "value": "Personal" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não é possível abrir o URL de autorização com esquema personalizado." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Custom" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "ko": { + "stringUnit": { + "state": "translated", + "value": "사용자 정의" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não é possível abrir o URL de autorização com esquema personalizado." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Custom" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Personalizadas" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "S’mund të hapë URL autorizimi me skemë vetjake." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Custom" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "sq": { + "stringUnit": { + "state": "translated", + "value": "E përshtatur" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำหนดเอง" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Özel" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open authorization URL with custom scheme." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Custom" } } } }, - "Can't open custom scheme URL %@." : { - "comment" : "Custom Scheme Browser Sessions", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "Database Version": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Database Version" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kann Custom Scheme URL %@ nicht öffnen." + "de": { + "stringUnit": { + "state": "translated", + "value": "Datenbankversion" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "en": { + "stringUnit": { + "state": "translated", + "value": "Database Version" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Database Version" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "es": { + "stringUnit": { + "state": "translated", + "value": "Versión de la base de datos" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Database Version" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "ko": { + "stringUnit": { + "state": "translated", + "value": "데이터베이스 버전" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Database Version" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Versão do Banco de Dados" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Database Version" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Version Baze të Dhënash" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não é possível abrir o URL de esquema personalizado %@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เวอร์ชันฐานข้อมูล" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Veritabanı Sürümü" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não é possível abrir o URL de esquema personalizado %@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Database Version" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + } + } + }, + "Database size": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Database size" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "S’mund të hapet URL skeme %@." + "de": { + "stringUnit": { + "state": "translated", + "value": "Datenbankgröße" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "en": { + "stringUnit": { + "state": "translated", + "value": "Database size" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Database size" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." + "es": { + "stringUnit": { + "state": "translated", + "value": "Tamaño de la base de datos" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Can't open custom scheme URL %@." - } - } - } - }, - "Cancel" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancel" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Database size" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Abbrechen" + "ko": { + "stringUnit": { + "state": "translated", + "value": "데이터베이스 크기" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancel" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Database size" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancel" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Tamanho do banco de dados " } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancel" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Database size" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancelar" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Madhësi baze të dhënash" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Annuler" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ขนาดของฐานข้อมูล" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "취소" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Veritabanı boyutu" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancel" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Database size" + } + } + } + }, + "Database upgrade required. Please open the app to perform the upgrade.": { + "comment": "OCErrorDatabaseMigrationRequired", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Database upgrade required. Please open the app to perform the upgrade." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancel" + "de": { + "stringUnit": { + "state": "translated", + "value": "Datenbank-Upgrade erforderlich. Bitte öffnen Sie die App, um das Upgrade durchzuführen." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancel" + "en": { + "stringUnit": { + "state": "translated", + "value": "Database upgrade required. Please open the app to perform the upgrade." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancel" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Database upgrade required. Please open the app to perform the upgrade." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancel" + "es": { + "stringUnit": { + "state": "translated", + "value": "Se requiere actualización de la base de datos. Abra la aplicación para realizar la actualización." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancelar" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Database upgrade required. Please open the app to perform the upgrade." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancel" + "ko": { + "stringUnit": { + "state": "translated", + "value": "데이터베이스 업그레이드가 필요합니다. 업그레이드를 하기 위해 앱을 실행해주십시오." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cancelar" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Database upgrade required. Please open the app to perform the upgrade." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Отмена" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "É necessário atualizar o banco de dados. Abra o aplicativo para realizar a atualização." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Anuloje" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Database upgrade required. Please open the app to perform the upgrade." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ยกเลิก" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Lypset përmirësim baze të dhënash. Ju lutemi, hapni aplikacionin që të kryhet përditësimi." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ยกเลิก" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "จำเป็นต้องอัปเกรดฐานข้อมูล โปรดเปิดแอปเพื่อทำการอัปเกรด" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İptal" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Veritabanı yükseltmesi gerekli. Yükseltmeyi gerçekleştirmek için lütfen uygulamayı açın." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "取消" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Database upgrade required. Please open the app to perform the upgrade." } } } }, - "Certificate" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "Delete": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Delete" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zertifikat" + "de": { + "stringUnit": { + "state": "translated", + "value": "Löschen" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "en": { + "stringUnit": { + "state": "translated", + "value": "Delete" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Delete" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "es": { + "stringUnit": { + "state": "translated", + "value": "Eliminar" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Supprimer" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "ko": { + "stringUnit": { + "state": "translated", + "value": "삭제" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Delete" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Delete" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Delete" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Excluir" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Удалить" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Fshije" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ลบ" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sil" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "删除" } } } }, - "Certificate changed" : { - "comment" : "Certificate checks", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate changed" + "Delete Authentication Data": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Delete Authentication Data" + } + }, + "de": { + "stringUnit": { + "state": "translated", + "value": "Lösche Anmeldedaten" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zertifikat geändert" + "en": { + "stringUnit": { + "state": "translated", + "value": "Delete Authentication Data" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate changed" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Delete Authentication Data" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate changed" + "es": { + "stringUnit": { + "state": "translated", + "value": "Eliminar Datos de Autenticación" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate changed" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Delete Authentication Data" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificado cambiado" + "ko": { + "stringUnit": { + "state": "translated", + "value": "인증 정보 삭제" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate changed" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Delete Authentication Data" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "인증서 변경" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Excluir dados de autenticação" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate changed" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Delete Authentication Data" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate changed" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Fshi të Dhëna Mirëfilltësimi" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate changed" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ลบข้อมูลการรับรองความถูกต้อง" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificado alterado " + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kimlik Doğrulama Verilerini Sil" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate changed" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Delete Authentication Data" + } + } + } + }, + "Delete Database": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Delete Database" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificado alterado " + "de": { + "stringUnit": { + "state": "translated", + "value": "Datenbank löschen" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate changed" + "en": { + "stringUnit": { + "state": "translated", + "value": "Delete Database" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dëshmia ndryshoi" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Delete Database" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เปลี่ยนใบรับรองแล้ว" + "es": { + "stringUnit": { + "state": "translated", + "value": "Eliminar base de datos" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เปลี่ยนใบรับรองแล้ว" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Delete Database" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sertifika değişti" + "ko": { + "stringUnit": { + "state": "translated", + "value": "데이터베이스 삭제" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate changed" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Delete Database" } - } - } - }, - "Certificate Date" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate Date" + }, + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Excluir Banco de Dados " } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zertifikatsdatum" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Delete Database" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate Date" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Fshije Bazën e të Dhënave" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate Date" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ลบฐานข้อมูล" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate Date" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Veritabanını Sil" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fecha del certificado" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Delete Database" + } + } + } + }, + "Deleting %@…": { + "comment": "Delete", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Deleting %@…" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate Date" + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ löschen…" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "날짜 인증서" + "en": { + "stringUnit": { + "state": "translated", + "value": "Deleting %@…" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate Date" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Deleting %@…" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate Date" + "es": { + "stringUnit": { + "state": "translated", + "value": "Eliminando %@…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate Date" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Suppression de %@…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Data do Certificado " + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@ 삭제 중..." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate Date" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Deleting %@…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Data do Certificado " + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Deleting %@…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate Date" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Deleting %@…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Datë Dëshmie" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Excluindo %@…" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "วันที่รับรอง" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Удаление %@…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "วันที่รับรอง" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po fshihet %@…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sertifika Tarihi" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังลบ %@..." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate Date" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@siliniyor..." + } + }, + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "正在删除 %@…" } } } }, - "Certificate for %@ passed validation." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "Deleting share for %@…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Deleting share for %@…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zertifikat für %@ hat die Überprüfung bestanden." + "de": { + "stringUnit": { + "state": "translated", + "value": "Lösche Freigabe für %@…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "en": { + "stringUnit": { + "state": "translated", + "value": "Deleting share for %@…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "es": { + "stringUnit": { + "state": "translated", + "value": "Deleting share for %@…" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Deleting share for %@…" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Deleting share for %@…" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Deleting share for %@…" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Deleting share for %@…" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Deleting share for %@…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Deleting share for %@…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Deleting share for %@…" } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + } + } + }, + "Deschedule (remove)": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Deschedule (remove)" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "de": { + "stringUnit": { + "state": "translated", + "value": "Ausführung beenden" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "en": { + "stringUnit": { + "state": "translated", + "value": "Deschedule (remove)" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Deschedule (remove)" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "es": { + "stringUnit": { + "state": "translated", + "value": "Desprogramar (eliminar)" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificate for %@ passed validation." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Deschedule (remove)" } - } - } - }, - "Certificates" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + }, + "ko": { + "stringUnit": { + "state": "translated", + "value": "예약 취소(삭제)" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zertifikate" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Deschedule (remove)" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Desmarcar (remover) " } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Deschedule (remove)" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Hiqe nga planifikim (hiqe)" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ลบกำหนดการ" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Planlamayı iptal et (kaldır)" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Deschedule (remove)" + } + } + } + }, + "Download and preview": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Download and preview" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "de": { + "stringUnit": { + "state": "translated", + "value": "Herunterladen und Vorschau" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "en": { + "stringUnit": { + "state": "translated", + "value": "Download and preview" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Download and preview" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "es": { + "stringUnit": { + "state": "translated", + "value": "Download and preview" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Download and preview" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Download and preview" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Download and preview" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Baixar e visualizar" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Certificates" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Download and preview" } - } - } - }, - "characters" : { - "comment" : "OCPasswordPolicyRule+StandardRules", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + }, + "sq": { + "stringUnit": { + "state": "translated", + "value": "Shkarkojeni dhe bëjini paraparje" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zeichen" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Download and preview" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Download and preview" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Download and preview" + } + } + } + }, + "Download, preview and share": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Download, preview and share" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "de": { + "stringUnit": { + "state": "translated", + "value": "Herunterladen, Vorschau und Teilen" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "en": { + "stringUnit": { + "state": "translated", + "value": "Download, preview and share" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Download, preview and share" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "es": { + "stringUnit": { + "state": "translated", + "value": "Download, preview and share" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Download, preview and share" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Download, preview and share" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Download, preview and share" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Baixe, visualize e compartilhe" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Download, preview and share" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Shkarkojeni, bëjini paraparje dhe ndajeni me të tjerë" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Download, preview and share" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Download, preview and share" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "characters" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Download, preview and share" } } } }, - "Class" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Class" + "Downloading %@…": { + "comment": "Download", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Downloading %@…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Klasse" + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ herunterladen…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Class" + "en": { + "stringUnit": { + "state": "translated", + "value": "Downloading %@…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Class" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Downloading %@…" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Class" + "es": { + "stringUnit": { + "state": "translated", + "value": "Descargando %@…" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Clases" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Téléchargement de %@ …" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Class" + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@ 다운로드 중..." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "클래스" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Downloading %@…" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Class" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Downloading %@…" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Class" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Downloading %@…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Class" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Baixando %@…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Classe" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Скачивание %@…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Class" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po shkarkohet %@…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Classe" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังดาวน์โหลด %@..." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Class" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@indiriliyor..." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Klasë" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "正在下载 %@…" + } + } + } + }, + "Edit, download, preview and share": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Edit, download, preview and share" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "หมวดหมู่" + "de": { + "stringUnit": { + "state": "translated", + "value": "Bearbeiten, Herunterladen, Vorschau and Teilen" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "หมวดหมู่" + "en": { + "stringUnit": { + "state": "translated", + "value": "Edit, download, preview and share" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sınıf" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Edit, download, preview and share" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Class" + "es": { + "stringUnit": { + "state": "translated", + "value": "Edit, download, preview and share" } - } - } - }, - "Client registration failed." : { - "comment" : "OCErrorAuthorizationClientRegistrationFailed", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Client registration failed." + }, + "fr": { + "stringUnit": { + "state": "translated", + "value": "Edit, download, preview and share" + } + }, + "ko": { + "stringUnit": { + "state": "translated", + "value": "Edit, download, preview and share" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Client-Registrierung ist fehlgeschlagen." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Edit, download, preview and share" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Client registration failed." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Edite, baixe, visualize e compartilhe" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Client registration failed." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Edit, download, preview and share" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Client registration failed." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Përpunoni, shkarkoni, bëni paraparje dhe ndani me të tjerë" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Falló el registro del cliente." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Edit, download, preview and share" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Client registration failed." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Edit, download, preview and share" + } + }, + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Edit, download, preview and share" + } + } + } + }, + "Editor": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Editor" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "클라이언트 등록 실패" + "de": { + "stringUnit": { + "state": "translated", + "value": "Bearbeiter" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Client registration failed." + "en": { + "stringUnit": { + "state": "translated", + "value": "Editor" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Client registration failed." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Editor" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Client registration failed." + "es": { + "stringUnit": { + "state": "translated", + "value": "Editor" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O registro do cliente falhou. " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Editor" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Client registration failed." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Editor" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O registro do cliente falhou. " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Editor" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Client registration failed." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Editor" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dështoi regjistrimi i klientit." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Editor" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การลงทะเบียนไคลเอนต์ล้มเหลว" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Përpunues" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การลงทะเบียนไคลเอนต์ล้มเหลว" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Editor" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İstemci kaydı başarısız." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Editor" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Client registration failed." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Editor" } } } }, - "Closing vault…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "Error": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Error" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Schließe Vault…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Fehler" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Error" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Error" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Error" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Erreur" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "오류" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Error" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Error" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Error" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Erro" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fechando cofre…" + "pt-PT": { + "stringUnit": { + "state": "translated", + "value": "Erro" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Ошибка" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fechando cofre…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Gabim" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ข้อผิดพลาด" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po mbyllet kasaforta…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Hata" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "错误" } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + } + } + }, + "Error copying %@": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Error copying %@" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Fehler beim Kopieren von %@" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Closing vault…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Error copying %@" } - } - } - }, - "Connected" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connected" + }, + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Error copying %@" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Verbunden" + "es": { + "stringUnit": { + "state": "translated", + "value": "Error al copiar %@" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connected" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Erreur de copie %@" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connected" + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@ 복사 오류" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connected" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Error copying %@" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Conectado" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Error copying %@" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecté" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Error copying %@" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "연결됨" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Erro ao copiar %@" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connected" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Ошибка при копировании %@" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connected" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Gabim teksa kopjohej %@" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connected" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เกิดข้อผิดพลาดขณะคัดลอก %@" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connected" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@kopyalanırken hata oluştu" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connected" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "拷贝 %@ 错误" + } + } + } + }, + "Error deleting %@": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Error deleting %@" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Conectado" + "de": { + "stringUnit": { + "state": "translated", + "value": "Fehler beim Löschen von %@" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ligado" + "en": { + "stringUnit": { + "state": "translated", + "value": "Error deleting %@" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Conectado" + "es": { + "stringUnit": { + "state": "translated", + "value": "Error deleting %@" } }, - "pt-PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ligado" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Error deleting %@" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Подключено" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Error deleting %@" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "I lidhur" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Error deleting %@" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เชื่อมต่อ" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Error deleting %@" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เชื่อมต่อ" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Error deleting %@" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bağlandı" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Error deleting %@" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "已连接" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Error deleting %@" } } } }, - "Connecting" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Verbinde" + "Error moving %@": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Error moving %@" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "de": { + "stringUnit": { + "state": "translated", + "value": "Fehler beim Verschieben von %@" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "en": { + "stringUnit": { + "state": "translated", + "value": "Error moving %@" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Error moving %@" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "es": { + "stringUnit": { + "state": "translated", + "value": "Error al mover %@" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Erreur lors du déplacement de %@" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@ 이동 오류" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Error moving %@" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Error moving %@" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Error moving %@" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Erro ao mover %@" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Ошибка при перемещении %@" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Gabim teksa lëvizej %@" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เกิดข้อผิดพลาดขณะย้าย %@" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@taşınırken hata oluştu" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "移动 %@ 错误" } } } }, - "Connecting…" : { - "comment" : "Connection Progress", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting…" + "Error renaming %@": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Error renaming %@" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Verbinde…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Fehler bei der Umbenennung von %@" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Error renaming %@" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Error renaming %@" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Error renaming %@" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connectando..." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Error renaming %@" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "connexion en cours..." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Error renaming %@" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "연결 중..." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Error renaming %@" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Erro ao renomear %@" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Error renaming %@" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Gabim në riemërtimin %@" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Error renaming %@" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connecting…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Error renaming %@" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Conectando..." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Error renaming %@" } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "A ligar..." + } + } + }, + "Error updating %@ metadata": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Error updating %@ metadata" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Conectando..." + "de": { + "stringUnit": { + "state": "translated", + "value": "Fehler beim Aktualisieren von %@ Metadaten" } }, - "pt-PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "A ligar..." + "en": { + "stringUnit": { + "state": "translated", + "value": "Error updating %@ metadata" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Соединение…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Error updating %@ metadata" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po lidhet…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Error actualizando el metadato %@" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังเชื่อมต่อ..." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Erreur lors de la mise à jour des %@métadonnées" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังเชื่อมต่อ..." + "ko": { + "stringUnit": { + "state": "translated", + "value": "메타데이터 %@ 업데이트 중 오류 발생" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bağlanılıyor..." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Error updating %@ metadata" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "正在连接..." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Error updating %@ metadata" } - } - } - }, - "Connection refused" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + }, + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Error updating %@ metadata" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Verbindung abgelehnt" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Erro atualizando %@ metadados" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Ошибка при обновлении метаданных %@" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Gabim në përditësimin e tejtëdhënave %@" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เกิดข้อผิดพลาดขณะอัปเดต metadata %@" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@üstverisini güncelleme sırasında hata alındı" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "更新 %@ 元数据时出错" + } + } + } + }, + "Error uploading %@": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Error uploading %@" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "de": { + "stringUnit": { + "state": "translated", + "value": "Fehler beim Hochladen von %@" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "en": { + "stringUnit": { + "state": "translated", + "value": "Error uploading %@" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "es": { + "stringUnit": { + "state": "translated", + "value": "Error uploading %@" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Error uploading %@" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Error uploading %@" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Error uploading %@" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Error uploading %@" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Error uploading %@" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Error uploading %@" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection refused" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Error uploading %@" } } } }, - "Connection validation failed." : { - "comment" : "OCErrorServerConnectionValidationFailed", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection validation failed." + "Events": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Events" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Verbindungsüberprüfung fehlgeschlagen." + "de": { + "stringUnit": { + "state": "translated", + "value": "Ereignisse" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection validation failed." + "en": { + "stringUnit": { + "state": "translated", + "value": "Events" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection validation failed." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Events" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection validation failed." + "es": { + "stringUnit": { + "state": "translated", + "value": "Eventos" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La validación de la conexión falló." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Events" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection validation failed." + "ko": { + "stringUnit": { + "state": "translated", + "value": "이벤트" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "연결 유효성 검사 실패" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Events" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection validation failed." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Eventos" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection validation failed." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Events" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection validation failed." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Akte" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A validação da conexão falhou. " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เหตุการณ์" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection validation failed." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Etkinlikler" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A validação da conexão falhou. " + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Events" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection validation failed." + } + } + }, + "Exception occured performing action": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Exception occured performing action" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dështoi vlerësimi i lidhjes." + "de": { + "stringUnit": { + "state": "translated", + "value": "Ausnahme bei Ausführung der Aktion aufgetreten" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ตรวจสอบการเชื่อมต่อล้มเหลว" + "en": { + "stringUnit": { + "state": "translated", + "value": "Exception occured performing action" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ตรวจสอบการเชื่อมต่อล้มเหลว" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Exception occured performing action" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bağlantı doğrulama başarısız." + "es": { + "stringUnit": { + "state": "translated", + "value": "Exception occured performing action" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Connection validation failed." - } - } - } - }, - "Construction of URL Session Task failed." : { - "comment" : "OCErrorRequestURLSessionTaskConstructionFailed", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Construction of URL Session Task failed." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Exception occured performing action" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Erstellung des URL-Session-Task ist fehlgeschlagen." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Exception occured performing action" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Construction of URL Session Task failed." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Exception occured performing action" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Construction of URL Session Task failed." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Ocorreu uma exceção ao executar a ação" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Construction of URL Session Task failed." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Exception occured performing action" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La construcción de la URL Session Task falló." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ndodhi një përjashtim teksa kryhej veprimi" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "La construction de la tâche de session URL a échoué." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Exception occured performing action" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL 세션 작업을 구성하지 못했습니다." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Exception occured performing action" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Construction of URL Session Task failed." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Exception occured performing action" + } + } + } + }, + "Failed": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Failed" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Construction of URL Session Task failed." + "de": { + "stringUnit": { + "state": "translated", + "value": "Fehlgeschlagen" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Construction of URL Session Task failed." + "en": { + "stringUnit": { + "state": "translated", + "value": "Failed" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Construction of URL Session Task failed." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Failed" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Construction of URL Session Task failed." + "es": { + "stringUnit": { + "state": "translated", + "value": "Falló" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A construção da Tarefa de Sessão de URL falhou." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Failed" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Construction of URL Session Task failed." + "ko": { + "stringUnit": { + "state": "translated", + "value": "실패함" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A construção da Tarefa de Sessão de URL falhou." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Failed" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Формирование задачи ссылочного сеанса не прошло." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Falhou" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Akti i krijimit të Sesionit URL dështoi." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Failed" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การสร้าง URL งานเซสชันล้มเหลว" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Dështoi" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การสร้าง URL งานเซสชันล้มเหลว" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ล้มเหลว" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bağlantı Oturum Görevi yapısında hata alındı." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Başarısız oldu" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Construction of URL Session Task failed." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Failed" } } } }, - "Contributor" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "Fetching updates…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Fetching updates…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mitwirkender" + "de": { + "stringUnit": { + "state": "translated", + "value": "Updates abrufen…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "en": { + "stringUnit": { + "state": "translated", + "value": "Fetching updates…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Fetching updates…" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "es": { + "stringUnit": { + "state": "translated", + "value": "Obteniendo actualizaciones…" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Fetching updates…" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "ko": { + "stringUnit": { + "state": "translated", + "value": "업데이트를 가져오는 중..." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Fetching updates…" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Buscando Atualizações… " } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Fetching updates…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po sillen përditësime…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contribuinte" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังเรียกอัปเดตข้อมูล..." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Güncellemeler getiriliyor…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contribuinte" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Fetching updates…" + } + } + } + }, + "Fetching user information…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Fetching user information…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "de": { + "stringUnit": { + "state": "translated", + "value": "Nutzerinformationen abrufen…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kontribues" + "en": { + "stringUnit": { + "state": "translated", + "value": "Fetching user information…" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Fetching user information…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "es": { + "stringUnit": { + "state": "translated", + "value": "Obteniendo información del usuario..." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Récupération des informations utilisateur..." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Contributor" + "ko": { + "stringUnit": { + "state": "translated", + "value": "사용자 정보 가져오는 중..." } - } - } - }, - "copy" : { - "comment" : "Copies", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "copy" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "Fetching user information…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kopie" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Fetching user information…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "copy" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Fetching user information…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "copy" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Buscando informações do usuário..." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "copy" + "pt-PT": { + "stringUnit": { + "state": "translated", + "value": "A obter a informação do utilizador..." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copiar" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Получение информации о пользователе…" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "copy" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po sillen hollësi përdoruesi…" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "복사" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังเรียกข้อมูลผู้ใช้..." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "copy" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kullanıcı bilgisi alınıyor..." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "copy" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "正在获取用户信息..." + } + } + } + }, + "File": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "File" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "copy" + "de": { + "stringUnit": { + "state": "translated", + "value": "Datei" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "copiar" + "en": { + "stringUnit": { + "state": "translated", + "value": "File" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "copy" + "es": { + "stringUnit": { + "state": "translated", + "value": "File" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "copiar" + "fr": { + "stringUnit": { + "state": "translated", + "value": "File" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "copy" + "ko": { + "stringUnit": { + "state": "translated", + "value": "File" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "kopjoje" + "mk": { + "stringUnit": { + "state": "translated", + "value": "File" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คัดลอก" + "ru": { + "stringUnit": { + "state": "translated", + "value": "File" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คัดลอก" + "sq": { + "stringUnit": { + "state": "translated", + "value": "File" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "kopyala" + "tr": { + "stringUnit": { + "state": "translated", + "value": "File" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "copy" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "File" } } } }, - "Copying %@ to %@…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copying %@ to %@…" + "File modified locally": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "File modified locally" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ nach %@ kopieren…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Datei lokal geändert" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copying %@ to %@…" + "en": { + "stringUnit": { + "state": "translated", + "value": "File modified locally" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copying %@ to %@…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "File modified locally" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copying %@ to %@…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Archivo modificado localmente" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copiando %@ a %@…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "File modified locally" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copie de %@ vers %@…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "로컬에서 수정된 파일" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@에서 %@으로 복사 중..." + "mk": { + "stringUnit": { + "state": "translated", + "value": "File modified locally" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copying %@ to %@…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Arquivo modificado localmente " } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copying %@ to %@…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "File modified locally" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copying %@ to %@…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kartela u ndryshua lokalisht" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copying %@ to %@…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไฟล์ที่ถูกแก้ไขในเครื่อง" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copying %@ to %@…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Dosya yerel olarak değiştirildi" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copiando %@ para %@…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "File modified locally" } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copying %@ to %@…" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Copiando %@ para %@…" + } + } + }, + "File not found.": { + "comment": "OCErrorFileNotFound", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "File not found." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Копирование %@ в %@…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Datei nicht gefunden." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po kopjohet %@ te %@…" + "en": { + "stringUnit": { + "state": "translated", + "value": "File not found." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังคัดลอก %@ ไปยัง %@..." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "File not found." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังคัดลอก %@ ไปยัง %@..." + "es": { + "stringUnit": { + "state": "translated", + "value": "Archivo no encontrado" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@öğesi%@ konumuna kopyalanıyor..." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Fichier non trouvé." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "正在复制 %@ 到 %@…" - } - } - } - }, - "Couldn't copy %@ to %@, because an item called %@ already exists there." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." + "ko": { + "stringUnit": { + "state": "translated", + "value": "파일을 찾을 수 없음" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ konnte nicht nach %@ kopiert werden, da dort bereits ein Element namens %@ existiert." + "mk": { + "stringUnit": { + "state": "translated", + "value": "File not found." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Arquivo não encontrado." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Файл не найден." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." + "sq": { + "stringUnit": { + "state": "translated", + "value": "S’u gjet kartelë." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "No se pudo copiar %@ a %@, porque ya existe un elemento llamado %@ en esa ubicación." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่พบไฟล์" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Impossible de copier %@ vers %@ , car un élément appelé %@ existe déjà là-bas." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Dosya bulunamadı." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "항목 %@이(가) 이미 존재하여 %@을(를) %@으로 복사할 수 없습니다 " + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "文件未找到。" } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." + } + } + }, + "Files": { + "comment": "Diagnostic", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Files" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." + "de": { + "stringUnit": { + "state": "translated", + "value": "Dateien" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." + "en": { + "stringUnit": { + "state": "translated", + "value": "Files" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Files" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." + "es": { + "stringUnit": { + "state": "translated", + "value": "Archivos" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não foi possível copiar %@ para %@,porque um item chamado %@ já existe lá." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Files" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't copy %@ to %@, because an item called %@ already exists there." + "ko": { + "stringUnit": { + "state": "translated", + "value": "파일" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não foi possível copiar %@ para %@,porque um item chamado %@ já existe lá." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Files" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Не удалось скопировать %@ в %@, потому что элемент под названием %@ там уже существует." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Arquivos" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "S’u kopjua dot %@ te %@, ngaqë atje ka tashmë një objekt të quajtur %@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Files" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถคัดลอก %@ ไปยัง %@ เนื่องจากรายการ %@ ถูกเรียกใช้อยู่" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kartela" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถคัดลอก %@ ไปยัง %@ เนื่องจากรายการ %@ ถูกเรียกใช้อยู่" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไฟล์" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@, %@ konumuna kopyalanamadı, çünkü %@ öğesi bu konumda mevcut." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Dosyalar" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "无法拷贝 %@ 到 %@,因为该处已经存在名为 %@ 的项目。" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Files" } } } }, - "Couldn't create %@" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "Folders": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Folders" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Konnte %@ nicht erstellen" + "de": { + "stringUnit": { + "state": "translated", + "value": "Ordner" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "en": { + "stringUnit": { + "state": "translated", + "value": "Folders" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Folders" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "es": { + "stringUnit": { + "state": "translated", + "value": "Carpetas" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Folders" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "ko": { + "stringUnit": { + "state": "translated", + "value": "폴더" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Folders" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Pastas" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Folders" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Dosje" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "สร้างโฟลเดอร์ใหม่" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Klasörler" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Folders" } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + } + } + }, + "Generic graph error.": { + "comment": "OCErrorGraphError", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Generic graph error." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "de": { + "stringUnit": { + "state": "translated", + "value": "Generischer Graph-Fehler." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't create %@" + "en": { + "stringUnit": { + "state": "translated", + "value": "Generic graph error." } - } - } - }, - "Couldn't delete %@" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + }, + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Generic graph error." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Konnte %@ nicht löschen" + "es": { + "stringUnit": { + "state": "translated", + "value": "Generic graph error." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Generic graph error." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Generic graph error." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Generic graph error." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Erro gráfico genérico." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Generic graph error." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Gabim elementar grafik." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Generic graph error." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Generic graph error." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Generic graph error." + } + } + } + }, + "Identifier": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Identifier" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "de": { + "stringUnit": { + "state": "translated", + "value": "Kennung" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "en": { + "stringUnit": { + "state": "translated", + "value": "Identifier" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Identifier" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "es": { + "stringUnit": { + "state": "translated", + "value": "Identificador" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Identifier" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't delete %@" + "ko": { + "stringUnit": { + "state": "translated", + "value": "식별자" } - } - } - }, - "Couldn't download %@" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't download %@" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "Identifier" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ konnte nicht heruntergeladen werden" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Identificador " } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't download %@" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Identifier" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't download %@" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Identifikues" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't download %@" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ระบุ" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ no se pudo descargar" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Tanımlayıcı" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't download %@" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Identifier" + } + } + } + }, + "In progress since": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "In progress since" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@을(를) 다운로드할 수 없습니다." + "de": { + "stringUnit": { + "state": "translated", + "value": "In Bearbeitung seit" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't download %@" + "en": { + "stringUnit": { + "state": "translated", + "value": "In progress since" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't download %@" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "In progress since" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't download %@" + "es": { + "stringUnit": { + "state": "translated", + "value": "En curso desde" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não foi possível baixar %@" + "fr": { + "stringUnit": { + "state": "translated", + "value": "In progress since" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't download %@" + "ko": { + "stringUnit": { + "state": "translated", + "value": "진행 기간:" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não foi possível baixar %@" + "mk": { + "stringUnit": { + "state": "translated", + "value": "In progress since" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't download %@" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Em andamento desde " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "S’u shkarkua dot %@" + "ru": { + "stringUnit": { + "state": "translated", + "value": "In progress since" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถดาวน์โหลด %@" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Në ecuri që prej" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถดาวน์โหลด %@" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "อยู่ระหว่างดำเนินการตั้งแต่" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ indirilemedi" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Şu tarihten beri devam ediyor:" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't download %@" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "In progress since" } } } }, - "Couldn't move %@ to %@, because an item called %@ already exists there." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." + "Insecure HTTP URL": { + "comment": "Connection setup", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ konnte nicht nach %@ verschoben werden, da dort bereits ein Element namens %@ existiert." + "de": { + "stringUnit": { + "state": "translated", + "value": "Unsichere HTTP-URL" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." + "en": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." + "es": { + "stringUnit": { + "state": "translated", + "value": "URL HTTP insegura" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "No se pudo mover %@ a %@, porque ya existe un elemento llamado %@ en esa ubicación." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Impossible de déplacer %@ à %@, car un élément appelé %@ existe déjà là-bas." + "ko": { + "stringUnit": { + "state": "translated", + "value": "안전하지 않은 HTTP URL" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "항목 %@이(가) 이미 존재하여 %@을(를) %@으로 이동할 수 없습니다 " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "HTTP URL Inseguro" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." + "sq": { + "stringUnit": { + "state": "translated", + "value": "URL HTTP jo e sigurt" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "URL ที่เชื่อมต่อผ่าน HTTP ไม่ปลอดภัย" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Güvensiz HTTP URL" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não foi possível mover %@ para %@, porque um item chamado %@ já existe lá." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL" + } + } + } + }, + "Insecure HTTP URL forbidden": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL forbidden" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't move %@ to %@, because an item called %@ already exists there." + "de": { + "stringUnit": { + "state": "translated", + "value": "Unsichere HTTP-URL nicht zulässig" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não foi possível mover %@ para %@, porque um item chamado %@ já existe lá." + "en": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL forbidden" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Не удалось переместить %@ в %@, потому что элемент под названием %@ уже существует." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL forbidden" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "S’u kalua dot %@ te %@, ngaqë atje ka tashmë një objekt të quajtur %@." + "es": { + "stringUnit": { + "state": "translated", + "value": "URL prohibida, HTTP inseguro" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถย้าย %@ ไปยัง %@ เนื่องจากรายการ %@ มีอยู่แล้ว" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL forbidden" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถย้าย %@ ไปยัง %@ เนื่องจากรายการ %@ มีอยู่แล้ว" + "ko": { + "stringUnit": { + "state": "translated", + "value": "안전하지 않은 HTTP URL은 금지됨" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@, %@ konumuna taşınamadı, çünkü %@ öğesi bu konumda mevcut." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL forbidden" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "无法移动 %@ 到 %@,因为该处已经存在名为 %@ 的项目。" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "HTTP inseguro URL proibida" } - } - } - }, - "Couldn't rename %@ to %@, because another item with that name already exists." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + }, + "ru": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL forbidden" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ konnte nicht in %@ umbenannt werden, da dort bereits ein Element mit diesem Namen existiert." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ndalohen URL-të HTTP jo të sigurta" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ห้ามใช้ URL HTTP ที่ไม่ปลอดภัย" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Güvenli olmayan HTTP URL'si yasak" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Insecure HTTP URL forbidden" + } + } + } + }, + "Insufficient parameters.": { + "comment": "OCErrorInsufficientParameters", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Insufficient parameters." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "de": { + "stringUnit": { + "state": "translated", + "value": "Nicht genügend Parameter." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "en": { + "stringUnit": { + "state": "translated", + "value": "Insufficient parameters." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Insufficient parameters." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "es": { + "stringUnit": { + "state": "translated", + "value": "Parámetros insuficientes." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Paramètres insuffisants." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "ko": { + "stringUnit": { + "state": "translated", + "value": "매개 변수가 충분하지 않습니다." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não foi possível renomear %@ para %@ porque já existe outro item com esse nome." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Insufficient parameters." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Insufficient parameters." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não foi possível renomear %@ para %@ porque já existe outro item com esse nome." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Insufficient parameters." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Parâmetros insuficientes." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "S’u riemërtua dot %@ në %@, ngaqë ekziston tashmë një tjetër objekt me atë emër." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Недостаточно параметров." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Parametra të pamjaftueshëm" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "พารามิเตอร์ไม่เพียงพอ" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yetersiz değişken." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't rename %@ to %@, because another item with that name already exists." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "缺少参数。" } } } }, - "Couldn't upload %@" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Konnte %@ nicht hochladen" + "Insufficient permissions": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Insufficient permissions" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "de": { + "stringUnit": { + "state": "translated", + "value": "Unzureichende Dateiberechtigungen." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "en": { + "stringUnit": { + "state": "translated", + "value": "Insufficient permissions" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Insufficient permissions" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "es": { + "stringUnit": { + "state": "translated", + "value": "Permisos insuficientes" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Permissions insuffisantes" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "ko": { + "stringUnit": { + "state": "translated", + "value": "권한 부족" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Insufficient permissions" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Insufficient permissions" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Insufficient permissions" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Permissões insuficientes" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Недостаточно прав доступа" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Leje të pamjaftueshme" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "สิทธิ์ไม่เพียงพอ" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yetersiz izin" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Couldn't upload %@" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "权限不足" } } } }, - "Creating folder %@…" : { - "comment" : "Create folder", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating folder %@…" + "Internal error.": { + "comment": "OCErrorInternal", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Internal error." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ordner %@ anlegen…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Interner Fehler." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating folder %@…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Internal error." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating folder %@…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Internal error." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating folder %@…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Error interno." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creando carpeta %@…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Erreur interne." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Création du dossier %@…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "내부 오류" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ 폴더 생성 중..." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Internal error." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating folder %@…" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Internal error." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating folder %@…" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Internal error." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating folder %@…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Erro interno." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating folder %@…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Внутренняя ошибка." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating folder %@…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Gabim i brendshëm." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Criando a pasta %@…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ข้อผิดพลาดภายใน" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating folder %@…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Dahili hata." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Criando a pasta %@…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "内部错误。" + } + } + } + }, + "Invalid checksum": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Invalid checksum" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Создание папки %@…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Ungültige Prüfsumme" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po krijohet dosja %@…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Invalid checksum" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังสร้างโฟลเดอร์ %@..." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Invalid checksum" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังสร้างโฟลเดอร์ %@..." + "es": { + "stringUnit": { + "state": "translated", + "value": "Suma de comprobación no válida" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@klasörü oluşturuluyor..." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Invalid checksum" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "正在创建文件夹 %@…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "체크섬 잘못됨" } - } - } - }, - "Creating share for %@…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "Invalid checksum" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erstelle Freigabe für %@…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Checksum inválido " } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Invalid checksum" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Checksum i pavlefshëm" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การตรวจสอบไม่ถูกต้อง" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Geçersiz sağlama toplamı" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Invalid checksum" + } + } + } + }, + "Invalid parameter.": { + "comment": "OCErrorInvalidParameter", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Invalid parameter." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Ungültiger Parameter." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Invalid parameter." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Invalid parameter." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Invalid parameter." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Invalid parameter." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Invalid parameter." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Invalid parameter." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Parâmetro inválido." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Invalid parameter." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Creating share for %@…" - } - } - } - }, - "Custom" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Custom" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Benutzerdefiniert" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Custom" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Custom" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Custom" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Custom" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "사용자 정의" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Custom" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Custom" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Custom" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personalizadas" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Custom" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personalizadas" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Custom" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "E përshtatur" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำหนดเอง" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำหนดเอง" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Özel" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Custom" - } - } - } - }, - "Database size" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database size" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Datenbankgröße" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database size" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database size" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database size" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tamaño de la base de datos" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database size" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "데이터베이스 크기" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database size" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database size" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database size" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tamanho do banco de dados " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database size" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tamanho do banco de dados " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database size" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Madhësi baze të dhënash" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ขนาดของฐานข้อมูล" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ขนาดของฐานข้อมูล" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Veritabanı boyutu" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database size" - } - } - } - }, - "Database upgrade required. Please open the app to perform the upgrade." : { - "comment" : "OCErrorDatabaseMigrationRequired", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database upgrade required. Please open the app to perform the upgrade." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Datenbank-Upgrade erforderlich. Bitte öffnen Sie die App, um das Upgrade durchzuführen." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database upgrade required. Please open the app to perform the upgrade." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database upgrade required. Please open the app to perform the upgrade." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database upgrade required. Please open the app to perform the upgrade." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Se requiere actualización de la base de datos. Abra la aplicación para realizar la actualización." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database upgrade required. Please open the app to perform the upgrade." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "데이터베이스 업그레이드가 필요합니다. 업그레이드를 하기 위해 앱을 실행해주십시오." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database upgrade required. Please open the app to perform the upgrade." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database upgrade required. Please open the app to perform the upgrade." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database upgrade required. Please open the app to perform the upgrade." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "É necessário atualizar o banco de dados. Abra o aplicativo para realizar a atualização." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database upgrade required. Please open the app to perform the upgrade." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "É necessário atualizar o banco de dados. Abra o aplicativo para realizar a atualização." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database upgrade required. Please open the app to perform the upgrade." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lypset përmirësim baze të dhënash. Ju lutemi, hapni aplikacionin që të kryhet përditësimi." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "จำเป็นต้องอัปเกรดฐานข้อมูล โปรดเปิดแอปเพื่อทำการอัปเกรด" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "จำเป็นต้องอัปเกรดฐานข้อมูล โปรดเปิดแอปเพื่อทำการอัปเกรด" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Veritabanı yükseltmesi gerekli. Yükseltmeyi gerçekleştirmek için lütfen uygulamayı açın." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database upgrade required. Please open the app to perform the upgrade." - } - } - } - }, - "Database Version" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database Version" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Datenbankversion" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database Version" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database Version" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database Version" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Versión de la base de datos" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database Version" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "데이터베이스 버전" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database Version" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database Version" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database Version" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Versão do Banco de Dados" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database Version" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Versão do Banco de Dados" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database Version" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Version Baze të Dhënash" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เวอร์ชันฐานข้อมูล" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เวอร์ชันฐานข้อมูล" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Veritabanı Sürümü" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Database Version" - } - } - } - }, - "Delete" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Löschen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eliminar" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Supprimer" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "삭제" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Excluir" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Excluir" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Удалить" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fshije" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลบ" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลบ" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sil" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "删除" - } - } - } - }, - "Delete Authentication Data" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Authentication Data" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lösche Anmeldedaten" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Authentication Data" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Authentication Data" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Authentication Data" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eliminar Datos de Autenticación" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Authentication Data" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "인증 정보 삭제" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Authentication Data" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Authentication Data" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Authentication Data" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Excluir dados de autenticação" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Authentication Data" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Excluir dados de autenticação" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Authentication Data" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fshi të Dhëna Mirëfilltësimi" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลบข้อมูลการรับรองความถูกต้อง" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลบข้อมูลการรับรองความถูกต้อง" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kimlik Doğrulama Verilerini Sil" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Authentication Data" - } - } - } - }, - "Delete Database" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Database" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Datenbank löschen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Database" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Database" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Database" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eliminar base de datos" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Database" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "데이터베이스 삭제" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Database" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Database" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Database" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Excluir Banco de Dados " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Database" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Excluir Banco de Dados " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Database" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fshije Bazën e të Dhënave" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลบฐานข้อมูล" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลบฐานข้อมูล" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Veritabanını Sil" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Delete Database" - } - } - } - }, - "Deleting %@…" : { - "comment" : "Delete", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting %@…" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ löschen…" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting %@…" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting %@…" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting %@…" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eliminando %@…" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Suppression de %@…" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ 삭제 중..." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting %@…" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting %@…" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting %@…" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting %@…" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting %@…" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Excluindo %@…" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting %@…" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Excluindo %@…" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Удаление %@…" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po fshihet %@…" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังลบ %@..." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังลบ %@..." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@siliniyor..." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "正在删除 %@…" - } - } - } - }, - "Deleting share for %@…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lösche Freigabe für %@…" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deleting share for %@…" - } - } - } - }, - "Deschedule (remove)" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deschedule (remove)" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ausführung beenden" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deschedule (remove)" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deschedule (remove)" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deschedule (remove)" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Desprogramar (eliminar)" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deschedule (remove)" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "예약 취소(삭제)" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deschedule (remove)" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deschedule (remove)" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deschedule (remove)" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Desmarcar (remover) " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deschedule (remove)" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Desmarcar (remover) " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deschedule (remove)" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Hiqe nga planifikim (hiqe)" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลบกำหนดการ" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลบกำหนดการ" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Planlamayı iptal et (kaldır)" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Deschedule (remove)" - } - } - } - }, - "digits" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ziffern" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "digits" - } - } - } - }, - "Download and preview" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Herunterladen und Vorschau" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Baixar e visualizar" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Baixar e visualizar" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shkarkojeni dhe bëjini paraparje" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download and preview" - } - } - } - }, - "Download, preview and share" : { - "extractionState" : "stale", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Herunterladen, Vorschau und Teilen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Baixe, visualize e compartilhe" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Baixe, visualize e compartilhe" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shkarkojeni, bëjini paraparje dhe ndajeni me të tjerë" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Download, preview and share" - } - } - } - }, - "Downloading %@…" : { - "comment" : "Download", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Downloading %@…" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ herunterladen…" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Downloading %@…" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Downloading %@…" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Downloading %@…" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Descargando %@…" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Téléchargement de %@ …" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ 다운로드 중..." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Downloading %@…" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Downloading %@…" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Downloading %@…" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Downloading %@…" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Downloading %@…" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Baixando %@…" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Downloading %@…" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Baixando %@…" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Скачивание %@…" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po shkarkohet %@…" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังดาวน์โหลด %@..." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังดาวน์โหลด %@..." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@indiriliyor..." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "正在下载 %@…" - } - } - } - }, - "Edit, download, preview and share" : { - "extractionState" : "stale", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bearbeiten, Herunterladen, Vorschau and Teilen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edite, baixe, visualize e compartilhe" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edite, baixe, visualize e compartilhe" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Përpunoni, shkarkoni, bëni paraparje dhe ndani me të tjerë" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Edit, download, preview and share" - } - } - } - }, - "Editor" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bearbeiter" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Përpunues" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Editor" - } - } - } - }, - "Error" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fehler" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erreur" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "오류" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ошибка" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Gabim" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ข้อผิดพลาด" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ข้อผิดพลาด" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Hata" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "错误" - } - } - } - }, - "Error copying %@" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error copying %@" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fehler beim Kopieren von %@" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error copying %@" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error copying %@" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error copying %@" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error al copiar %@" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erreur de copie %@" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ 복사 오류" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error copying %@" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error copying %@" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error copying %@" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error copying %@" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error copying %@" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro ao copiar %@" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error copying %@" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro ao copiar %@" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ошибка при копировании %@" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Gabim teksa kopjohej %@" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เกิดข้อผิดพลาดขณะคัดลอก %@" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เกิดข้อผิดพลาดขณะคัดลอก %@" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@kopyalanırken hata oluştu" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "拷贝 %@ 错误" - } - } - } - }, - "Error deleting %@" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fehler beim Löschen von %@" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error deleting %@" - } - } - } - }, - "Error moving %@" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error moving %@" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fehler beim Verschieben von %@" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error moving %@" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error moving %@" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error moving %@" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error al mover %@" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erreur lors du déplacement de %@" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ 이동 오류" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error moving %@" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error moving %@" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error moving %@" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error moving %@" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error moving %@" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro ao mover %@" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error moving %@" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro ao mover %@" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ошибка при перемещении %@" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Gabim teksa lëvizej %@" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เกิดข้อผิดพลาดขณะย้าย %@" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เกิดข้อผิดพลาดขณะย้าย %@" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@taşınırken hata oluştu" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "移动 %@ 错误" - } - } - } - }, - "Error renaming %@" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fehler bei der Umbenennung von %@" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro ao renomear %@" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro ao renomear %@" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Gabim në riemërtimin %@" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error renaming %@" - } - } - } - }, - "Error updating %@ metadata" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error updating %@ metadata" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fehler beim Aktualisieren von %@ Metadaten" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error updating %@ metadata" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error updating %@ metadata" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error updating %@ metadata" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error actualizando el metadato %@" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erreur lors de la mise à jour des %@métadonnées" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "메타데이터 %@ 업데이트 중 오류 발생" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error updating %@ metadata" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error updating %@ metadata" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error updating %@ metadata" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error updating %@ metadata" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error updating %@ metadata" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro atualizando %@ metadados" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error updating %@ metadata" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro atualizando %@ metadados" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ошибка при обновлении метаданных %@" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Gabim në përditësimin e tejtëdhënave %@" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เกิดข้อผิดพลาดขณะอัปเดต metadata %@" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เกิดข้อผิดพลาดขณะอัปเดต metadata %@" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@üstverisini güncelleme sırasında hata alındı" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "更新 %@ 元数据时出错" - } - } - } - }, - "Error uploading %@" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fehler beim Hochladen von %@" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error uploading %@" - } - } - } - }, - "Events" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Events" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ereignisse" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Events" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Events" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Events" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eventos" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Events" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "이벤트" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Events" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Events" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Events" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eventos" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Events" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eventos" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Events" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Akte" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เหตุการณ์" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เหตุการณ์" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Etkinlikler" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Events" - } - } - } - }, - "Exception occured performing action" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ausnahme bei Ausführung der Aktion aufgetreten" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ocorreu uma exceção ao executar a ação" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ocorreu uma exceção ao executar a ação" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ndodhi një përjashtim teksa kryhej veprimi" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exception occured performing action" - } - } - } - }, - "Failed" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Failed" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fehlgeschlagen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Failed" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Failed" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Failed" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Falló" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Failed" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "실패함" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Failed" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Failed" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Failed" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Falhou" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Failed" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Falhou" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Failed" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dështoi" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ล้มเหลว" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ล้มเหลว" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Başarısız oldu" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Failed" - } - } - } - }, - "Fetching updates…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching updates…" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updates abrufen…" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching updates…" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching updates…" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching updates…" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Obteniendo actualizaciones…" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching updates…" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "업데이트를 가져오는 중..." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching updates…" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching updates…" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching updates…" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Buscando Atualizações… " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching updates…" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Buscando Atualizações… " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching updates…" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po sillen përditësime…" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังเรียกอัปเดตข้อมูล..." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังเรียกอัปเดตข้อมูล..." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Güncellemeler getiriliyor…" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching updates…" - } - } - } - }, - "Fetching user information…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching user information…" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nutzerinformationen abrufen…" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching user information…" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching user information…" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching user information…" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Obteniendo información del usuario..." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Récupération des informations utilisateur..." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "사용자 정보 가져오는 중..." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching user information…" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching user information…" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching user information…" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching user information…" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fetching user information…" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Buscando informações do usuário..." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "A obter a informação do utilizador..." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Buscando informações do usuário..." - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "A obter a informação do utilizador..." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Получение информации о пользователе…" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po sillen hollësi përdoruesi…" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังเรียกข้อมูลผู้ใช้..." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังเรียกข้อมูลผู้ใช้..." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kullanıcı bilgisi alınıyor..." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "正在获取用户信息..." - } - } - } - }, - "File" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Datei" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "File" - } - } - } - }, - "File modified locally" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "File modified locally" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Datei lokal geändert" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "File modified locally" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "File modified locally" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "File modified locally" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Archivo modificado localmente" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "File modified locally" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "로컬에서 수정된 파일" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "File modified locally" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "File modified locally" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "File modified locally" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Arquivo modificado localmente " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "File modified locally" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Arquivo modificado localmente " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "File modified locally" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kartela u ndryshua lokalisht" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไฟล์ที่ถูกแก้ไขในเครื่อง" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไฟล์ที่ถูกแก้ไขในเครื่อง" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dosya yerel olarak değiştirildi" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "File modified locally" - } - } - } - }, - "File not found." : { - "comment" : "OCErrorFileNotFound", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "File not found." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Datei nicht gefunden." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "File not found." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "File not found." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "File not found." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Archivo no encontrado" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fichier non trouvé." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "파일을 찾을 수 없음" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "File not found." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "File not found." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "File not found." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Arquivo não encontrado." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "File not found." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Arquivo não encontrado." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Файл не найден." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "S’u gjet kartelë." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบไฟล์" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบไฟล์" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dosya bulunamadı." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "文件未找到。" - } - } - } - }, - "Files" : { - "comment" : "Diagnostic", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Files" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dateien" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Files" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Files" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Files" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Archivos" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Files" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "파일" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Files" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Files" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Files" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Arquivos" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Files" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Arquivos" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Files" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kartela" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไฟล์" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไฟล์" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dosyalar" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Files" - } - } - } - }, - "Folders" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Folders" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ordner" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Folders" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Folders" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Folders" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Carpetas" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Folders" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "폴더" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Folders" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Folders" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Folders" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pastas" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Folders" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pastas" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Folders" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dosje" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "สร้างโฟลเดอร์ใหม่" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "สร้างโฟลเดอร์ใหม่" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Klasörler" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Folders" - } - } - } - }, - "Generic graph error." : { - "comment" : "OCErrorGraphError", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generischer Graph-Fehler." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro gráfico genérico." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro gráfico genérico." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Gabim elementar grafik." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Generic graph error." - } - } - } - }, - "Identifier" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identifier" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kennung" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identifier" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identifier" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identifier" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identificador" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identifier" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "식별자" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identifier" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identifier" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identifier" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identificador " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identifier" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identificador " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identifier" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identifikues" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ระบุ" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ระบุ" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tanımlayıcı" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Identifier" - } - } - } - }, - "In progress since" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "In progress since" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "In Bearbeitung seit" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "In progress since" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "In progress since" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "In progress since" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "En curso desde" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "In progress since" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "진행 기간:" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "In progress since" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "In progress since" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "In progress since" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Em andamento desde " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "In progress since" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Em andamento desde " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "In progress since" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Në ecuri që prej" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "อยู่ระหว่างดำเนินการตั้งแต่" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "อยู่ระหว่างดำเนินการตั้งแต่" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Şu tarihten beri devam ediyor:" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "In progress since" - } - } - } - }, - "Insecure HTTP URL" : { - "comment" : "Connection setup", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unsichere HTTP-URL" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL HTTP insegura" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "안전하지 않은 HTTP URL" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "HTTP URL Inseguro" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "HTTP URL Inseguro" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL HTTP jo e sigurt" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL ที่เชื่อมต่อผ่าน HTTP ไม่ปลอดภัย" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL ที่เชื่อมต่อผ่าน HTTP ไม่ปลอดภัย" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Güvensiz HTTP URL" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL" - } - } - } - }, - "Insecure HTTP URL forbidden" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL forbidden" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unsichere HTTP-URL nicht zulässig" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL forbidden" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL forbidden" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL forbidden" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL prohibida, HTTP inseguro" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL forbidden" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "안전하지 않은 HTTP URL은 금지됨" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL forbidden" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL forbidden" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL forbidden" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "HTTP inseguro URL proibida" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL forbidden" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "HTTP inseguro URL proibida" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL forbidden" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ndalohen URL-të HTTP jo të sigurta" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ห้ามใช้ URL HTTP ที่ไม่ปลอดภัย" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ห้ามใช้ URL HTTP ที่ไม่ปลอดภัย" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Güvenli olmayan HTTP URL'si yasak" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insecure HTTP URL forbidden" - } - } - } - }, - "Insufficient parameters." : { - "comment" : "OCErrorInsufficientParameters", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient parameters." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nicht genügend Parameter." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient parameters." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient parameters." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient parameters." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Parámetros insuficientes." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Paramètres insuffisants." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "매개 변수가 충분하지 않습니다." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient parameters." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient parameters." - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient parameters." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient parameters." - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient parameters." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Parâmetros insuficientes." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient parameters." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Parâmetros insuficientes." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Недостаточно параметров." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Parametra të pamjaftueshëm" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "พารามิเตอร์ไม่เพียงพอ" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "พารามิเตอร์ไม่เพียงพอ" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yetersiz değişken." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "缺少参数。" - } - } - } - }, - "Insufficient permissions" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient permissions" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unzureichende Dateiberechtigungen." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient permissions" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient permissions" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient permissions" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Permisos insuficientes" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Permissions insuffisantes" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "권한 부족" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient permissions" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient permissions" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient permissions" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient permissions" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient permissions" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Permissões insuficientes" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Insufficient permissions" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Permissões insuficientes" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Недостаточно прав доступа" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Leje të pamjaftueshme" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "สิทธิ์ไม่เพียงพอ" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "สิทธิ์ไม่เพียงพอ" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yetersiz izin" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "权限不足" - } - } - } - }, - "Internal error." : { - "comment" : "OCErrorInternal", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Internal error." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Interner Fehler." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Internal error." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Internal error." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Internal error." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Error interno." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erreur interne." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "내부 오류" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Internal error." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Internal error." - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Internal error." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Internal error." - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Internal error." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro interno." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Internal error." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erro interno." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Внутренняя ошибка." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Gabim i brendshëm." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ข้อผิดพลาดภายใน" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ข้อผิดพลาดภายใน" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dahili hata." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "内部错误。" - } - } - } - }, - "Invalid checksum" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid checksum" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ungültige Prüfsumme" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid checksum" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid checksum" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid checksum" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Suma de comprobación no válida" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid checksum" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "체크섬 잘못됨" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid checksum" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid checksum" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid checksum" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Checksum inválido " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid checksum" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Checksum inválido " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid checksum" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Checksum i pavlefshëm" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การตรวจสอบไม่ถูกต้อง" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การตรวจสอบไม่ถูกต้อง" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Geçersiz sağlama toplamı" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid checksum" - } - } - } - }, - "Invalid parameter." : { - "comment" : "OCErrorInvalidParameter", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ungültiger Parameter." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Parâmetro inválido." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Parâmetro inválido." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Parametër i pavlefshëm." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Geçersiz parametre." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid parameter." - } - } - } - }, - "Invalid rule without minimum and maximum count" : { - "comment" : "Password Policy", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ungültige Regel ohne Minimal und Maximalanzahl" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid rule without minimum and maximum count" - } - } - } - }, - "Invalid type." : { - "comment" : "OCErrorInvalidType", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ungültiger Typ." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tipo inválido." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tipo inválido." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lloj i pavlefshëm." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Geçersiz tür." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalid type." - } - } - } - }, - "Invalidate" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidieren" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate" - } - } - } - }, - "Invalidate Login Data" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate Login Data" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Anmeldedaten ungültig machen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate Login Data" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate Login Data" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "needs_review", - "value" : "Invalidate Login Data" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidar datos de inicio de sesión" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate Login Data" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "잘못된 로그인 데이터" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate Login Data" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate Login Data" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate Login Data" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dados de Login Inválidos " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate Login Data" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "needs_review", - "value" : "Dados de Login Inválidos " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate Login Data" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zhvlerëso Hollësi Hyrjeje" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ข้อมูลการเข้าสู่ระบบไม่ถูกต้อง" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "needs_review", - "value" : "ข้อมูลการเข้าสู่ระบบไม่ถูกต้อง" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Giriş Verilerini Geçersiz Kıl" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invalidate Login Data" - } - } - } - }, - "Invited persons" : { - "comment" : "Share roles", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eingeladene Personen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pessoas convidadas" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pessoas convidadas" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Persona të ftuar" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Davetli kişiler" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Invited persons" - } - } - } - }, - "Issues were found while validating the certificate for %@." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bei der Überprüfung des Zertifikats für %@ wurden Probleme gefunden." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Issues were found while validating the certificate for %@." - } - } - } - }, - "Item" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Element" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item" - } - } - } - }, - "Item is currently processing." : { - "comment" : "OCErrorItemProcessing", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Element wird gerade verarbeitet." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O item está sendo processado no momento." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O item está sendo processado no momento." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Objekti është duke u përpunuar." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is currently processing." - } - } - } - }, - "Item is not a directory." : { - "comment" : "OCErrorShareItemNotADirectory", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is not a directory." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Element ist kein Verzeichnis." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is not a directory." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is not a directory." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is not a directory." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "El elemento NO es un directorio." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is not a directory." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "항목이 디렉터리가 아닙니다." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is not a directory." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is not a directory." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is not a directory." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O item não é um diretório." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is not a directory." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O item não é um diretório." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is not a directory." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Objekti s’është një drejtori. " - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รายการไม่ใช่ไดเร็กทอรี" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รายการไม่ใช่ไดเร็กทอรี" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Öge bir dizin değil." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item is not a directory." - } - } - } - }, - "Item not available offline." : { - "comment" : "OCErrorItemNotAvailableOffline", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not available offline." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Element nicht offline verfügbar." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not available offline." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not available offline." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not available offline." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Elemento no disponible sin conexión." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Élément non disponible hors connexion." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "항목을 오프라인으로 사용할 수 없음" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not available offline." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not available offline." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not available offline." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item não disponível quando desconectado." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not available offline." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item não disponível quando desconectado." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Элемент не доступен без сети." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Objekt i papërdorshëm jashtë linje." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รายการไม่พร้อมใช้งานในโหมดออฟไลน์" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รายการไม่พร้อมใช้งานในโหมดออฟไลน์" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Öge çevrimdışı kullanılamıyor." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "项目在离线时不可用。" - } - } - } - }, - "Item not found." : { - "comment" : "OCErrorShareItemNotFound", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not found." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Element nicht gefunden." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not found." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not found." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not found." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Elemento no encontrado" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not found." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "항목을 찾을 수 없음" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not found." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not found." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not found." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item não encontrado." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not found." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item não encontrado." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not found." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "S’u gjet objekt." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบรายการ" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบรายการ" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Öge bulunamadı" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Item not found." - } - } - } - }, - "itemProperty.isFavorite" : { - "comment" : "Item property name (via -localizedNameForProperty:)", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorite" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorit" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorite" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favourite" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favourite" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorito" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ajouter aux favoris" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "즐겨찾기" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorite" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorite" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorite" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorite" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorite" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorito" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorite" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorito" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "В избранное" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vëre Si të Parapëlqyer" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รายการโปรด" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รายการโปรด" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Favorilere ekle" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "收藏" - } - } - } - }, - "itemProperty.lastModified" : { - "comment" : "Item property name (via -localizedNameForProperty:)", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Last modified" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Letzte Änderung" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Last modified" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Last modified" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Last modified" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ultima modificación" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dernière modification" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "최종 수정됨" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Last modified" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Last modified" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Last modified" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Last modified" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Last modified" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Última modificação" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Last modified" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Última modificação" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Последнее изменение" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ndryshuar së fundi më" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "แก้ไขครั้งล่าสุด" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "แก้ไขครั้งล่าสุด" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Son değiştirme" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "最后更改" - } - } - } - }, - "itemProperty.localAttributes" : { - "comment" : "Item property name (via -localizedNameForProperty:)", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local attributes" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lokale Eigenschaften" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local attributes" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local attributes" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local attributes" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Atributos locales" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Attributs locaux" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "로컬 속성" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local attributes" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local attributes" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local attributes" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local attributes" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local attributes" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Atributos locais" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local attributes" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Atributos locais" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Локальные атрибуты" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Atribute lokale" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "แอตทริบิวต์ต้นทาง" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "แอตทริบิวต์ต้นทาง" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yerel öznitelikler" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "本地属性" - } - } - } - }, - "Keep both" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Keep both" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Beide behalten" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Keep both" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Keep both" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Keep both" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mantener ambos" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Keep both" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "모두 저장" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Keep both" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Keep both" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Keep both" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manter ambos" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Keep both" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manter ambos" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Keep both" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mbaji të dyja" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เก็บไว้ทั้งสองอย่าง" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เก็บไว้ทั้งสองอย่าง" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İkisini de koru" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Keep both" - } - } - } - }, - "Lane ID" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane-ID" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID de carril" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "도로 ID" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID da pista " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID da pista " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID Piste" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lane ID" - } - } - } - }, - "Local ID" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lokale ID" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID local" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "로컬 ID" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID local " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID local " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID Vendore" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Local ID" - } - } - } - }, - "Localized Description" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Localized Description" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lokalisierte Beschreibung" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Localized Description" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Localised Description" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Localised Description" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Descripción localizada" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Localized Description" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "현지화된 설명" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Localized Description" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Localized Description" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Localized Description" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Descrição Localizada " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Localized Description" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Descrição Localizada " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Localized Description" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Përshkrim i Përkthyer" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คำอธิบายที่แปลเป็นภาษาท้องถิ่น" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คำอธิบายที่แปลเป็นภาษาท้องถิ่น" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yerel Açıklama" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Localized Description" - } - } - } - }, - "Lock invalidated." : { - "comment" : "OCErrorLockInvalidated", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sperrung invalidiert." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bloqueio invalidado." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bloqueio invalidado." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kyçja u shfuqizua." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lock invalidated." - } - } - } - }, - "Log file" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log file" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Protokolldatei" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log file" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log file" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log file" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Archivo de registro" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fichier log" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "로그 파일" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log file" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log file" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log file" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log file" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log file" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Arquivo de Log" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log file" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Arquivo de Log" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Файл журнала" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kartelë regjistër" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไฟล์ log" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไฟล์ log" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Günlük dosyası" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "日志文件" - } - } - } - }, - "Log HTTP requests and responses" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log HTTP requests and responses" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "HTTP-Anfragen und Antworten protokollieren" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log HTTP requests and responses" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log HTTP requests and responses" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log HTTP requests and responses" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Registrar peticiones y respuestas HTTP" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log HTTP requests and responses" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "HTTP 요청 및 응답 로그" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log HTTP requests and responses" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log HTTP requests and responses" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log HTTP requests and responses" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Registrar solicitações e respostas HTTP" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log HTTP requests and responses" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Registrar solicitações e respostas HTTP" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log HTTP requests and responses" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Regjistro kërkesa dhe përgjigje HTTP" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "บันทึกคำขอและการตอบกลับ HTTP" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "บันทึกคำขอและการตอบกลับ HTTP" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "HTTP isteklerini ve yanıtlarını günlüğe kaydet" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log HTTP requests and responses" - } - } - } - }, - "Log internal file operations" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log internal file operations" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Interne Dateioperationen protokollieren" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log internal file operations" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log internal file operations" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log internal file operations" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Registrar operaciones de archivos internos" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log internal file operations" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "내부 파일 작업 로그" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log internal file operations" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log internal file operations" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log internal file operations" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Registrar operações de arquivo interno" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log internal file operations" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Registrar operações de arquivo interno" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log internal file operations" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Regjistro veprime të brendshme kartelash" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log การทำงานของไฟล์ภายใน" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log การทำงานของไฟล์ภายใน" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dahili dosya işlemlerini günlüğe kaydet" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Log internal file operations" - } - } - } - }, - "Login as user %@ required. Please retry." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Login as user %@ required. Please retry." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Anmeldung als Benutzer %@ erforderlich. Bitte versuchen Sie es erneut." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Login as user %@ required. Please retry." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Login as user %@ required. Please retry." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Login as user %@ required. Please retry." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Se requiere iniciar sesión como usuario %@. Por favor, inténtalo de nuevo." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Login as user %@ required. Please retry." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "사용자 %@으로 로그인해야 합니다. 다시 시도하십시오." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Login as user %@ required. Please retry." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Login as user %@ required. Please retry." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Login as user %@ required. Please retry." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "É necessário fazer login como usuário %@ . Por favor tente novamente." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Login as user %@ required. Please retry." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "É necessário fazer login como usuário %@ . Por favor tente novamente." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Login as user %@ required. Please retry." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lypset hyrje si përdorues %@. Ju lutemi, riprovoni." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กรุณาเข้าสู่ระบบด้วยฐานะ %@ โปรดลองอีกครั้ง" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กรุณาเข้าสู่ระบบด้วยฐานะ %@ โปรดลองอีกครั้ง" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kullanıcı %@ olarak oturum açın. Lütfen tekrar deneyiniz." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Login as user %@ required. Please retry." - } - } - } - }, - "Longer than {{byteLength}} bytes in {{encoding}} encoding." : { - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Länger als {{byteLength}} Bytes in {{encoding}} Encodierung." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Longer than {{byteLength}} bytes in {{encoding}} encoding." - } - } - } - }, - "lower-case characters" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kleinbuchstaben" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "lower-case characters" - } - } - } - }, - "Making %@ available offline also covers %@, which was previously requested as being available offline." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Durch die Offline-Verfügbarkeit von %1$@ wird auch %2$@ abgedeckt, für das zuvor Offline-Verfügbarkeit angefordert wurde." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." - } - } - } - }, - "Making %@ available offline also covers %@, whose offline availability has previously been requested." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Offline-Verfügbarkeit von %1$@ gilt auch für %2$@, dessen Offline-Verfügbarkeit zuvor angefordert wurde." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." - } - } - } - }, - "Manager" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Gerente" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Gerente" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Përgjegjës" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yönetici" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Manager" - } - } - } - }, - "Missing Drive ID." : { - "comment" : "OCErrorMissingDriveID", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fehlende Drive ID." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID da unidade ausente." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID da unidade ausente." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mungon ID Disku." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Missing Drive ID." - } - } - } - }, - "Moving %@ to %@…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Moving %@ to %@…" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ nach %@ verschieben…" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Moving %@ to %@…" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Moving %@ to %@…" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Moving %@ to %@…" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Moviendo %@ a %@…" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Déplacer %@ vers %@..." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@에서 %@으로 이동 중..." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Moving %@ to %@…" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Moving %@ to %@…" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Moving %@ to %@…" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Moving %@ to %@…" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Moving %@ to %@…" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Movendo %@ para %@…" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Moving %@ to %@…" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Movendo %@ para %@…" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Перемещение %@ в %@…" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po shpihet %@ te %@…" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังย้าย %@ ไปยัง %@..." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังย้าย %@ ไปยัง %@..." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@öğesi%@konumuna taşınıyor..." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "正在移动 %@ 到 %@…" - } - } - } - }, - "Name" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Name" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Name" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Name" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Name" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Name" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nombre" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Name" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "이름" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Name" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Name" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Name" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nome" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Name" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nome" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Name" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Emër" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ชื่อ" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ชื่อ" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ad" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Name" - } - } - } - }, - "Network unavailable" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Network unavailable" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Netzwerk nicht verfügbar" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Network unavailable" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Network unavailable" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Network unavailable" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Red no disponible" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Network unavailable" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "네트워크를 사용할 수 없음" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Network unavailable" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Network unavailable" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Network unavailable" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rede indisponível" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Network unavailable" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rede indisponível" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Network unavailable" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rrjet i pakapshëm" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เครือข่ายใช้งานไม่ได้" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เครือข่ายใช้งานไม่ได้" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ağ kullanılamıyor" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Network unavailable" - } - } - } - }, - "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." : { - "comment" : "OCErrorCertificateMissing", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Für eine Anfrage wurde trotz HTTPS-Verbindung kein Zertifikat zurückgegeben (sollte niemals in der Produktion auftreten, sondern nur, wenn Sie vergessen haben, ein Zertifikat bei simulierten Antworten auf HTTPS-Anfragen anzugeben)." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "No se devolvió ningún certificado para una solicitud a pesar de ser una conexión HTTPS (nunca debería ocurrir en producción, sino solo si se olvidó de proporcionar un certificado durante las respuestas simuladas a las solicitudes HTTPS)." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Aucun certificat n'a été renvoyé pour une demande bien qu'il s'agisse d'une connexion HTTPS (ne devrait jamais se produire en production, mais uniquement si vous avez oublié de fournir un certificat lors des réponses simulées aux demandes HTTPS)." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "HTTPS 연결임에도 불구하고 요청에 대한 인증서가 반환되지 않았습니다(운영 환경에서 절대 발생하지 않아야 하지만, HTTPS 요청에 대한 시뮬레이션 응답 중에 인증서를 제공하는 것을 잊은 경우에만 해당)." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nenhum certificado foi retornado para uma solicitação, apesar de esta ser uma conexão HTTPS (nunca deve ocorrer em produção, mas somente se você esqueceu de fornecer um certificado durante respostas simuladas a solicitações HTTPS)." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nenhum certificado foi retornado para uma solicitação, apesar de esta ser uma conexão HTTPS (nunca deve ocorrer em produção, mas somente se você esqueceu de fornecer um certificado durante respostas simuladas a solicitações HTTPS)." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Не смотря на использование соединения HTTPS, для запроса не был получен сертификат (при эксплуатации такого быть не должно, только если вы забыли задать сертификат при симуляции ответа на запрос HTTPS)." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Për një kërkesë s’u kthye dëshmi, edhe pse kjo është lidhje HTTPS (s’duhet të ndodhë kurrë në një sajt real, vetëm nëse harruat të jepnit një dëshmi gjatë përgjigjesh të simuluara për kërkesa HTTPS)." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่มีการส่งคืนใบรับรองสำหรับคำขอแม้ว่าจะเป็นการเชื่อมต่อแบบ HTTPS (คุณอาจจะลืมระบุใบรับรองในระหว่างการตอบกลับคำขอของ HTTPS)" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่มีการส่งคืนใบรับรองสำหรับคำขอแม้ว่าจะเป็นการเชื่อมต่อแบบ HTTPS (คุณอาจจะลืมระบุใบรับรองในระหว่างการตอบกลับคำขอของ HTTPS)" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bir HTTPS bağlantısı olmasına rağmen bir istek için hiçbir sertifika döndürülmedi (Yalnızca HTTPS isteklerine benzetilmiş yanıtlar sırasında bir sertifika vermeyi unuttuysanız olabilir, canlı sunucuda asla gerçekleşmemelidir)." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "没有为 HTTPS 连接的请求返回证书 (这不应在生产环境中发生,除非你在模拟对 HTTPS 请求的响应时忘记提供证书)。" - } - } - } - }, - "No data converter available for conversion." : { - "comment" : "OCErrorDataConverterUnavailable", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kein Datenumwandler für Umwandlung verfügbar." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nenhum conversor de dados disponível para conversão." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nenhum conversor de dados disponível para conversão." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "S’ka shndërrues të gatshëm për shndërrimin." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "No data converter available for conversion." - } - } - } - }, - "Not authorized to access shares." : { - "comment" : "OCErrorShareUnauthorized:", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not authorized to access shares." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nicht berechtigt, auf Freigaben zuzugreifen." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not authorized to access shares." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not authorised to access shares." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not authorised to access shares." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "No esta autorizado a ver los compartidos" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not authorized to access shares." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "공유에 접할 수 있는 권한이 없음" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not authorized to access shares." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not authorized to access shares." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not authorized to access shares." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não autorizado a acessar compartilhamentos." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not authorized to access shares." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não autorizado a acessar compartilhamentos." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not authorized to access shares." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Jo i autorizuar të përdorë pjesën." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่ได้รับอนุญาตให้เข้าถึงแชร์" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่ได้รับอนุญาตให้เข้าถึงแชร์" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Paylaşımlara erişim yetkisi yok." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not authorized to access shares." - } - } - } - }, - "Not available offline." : { - "comment" : "OCErrorNotAvailableOffline", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not available offline." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nicht offline verfügbar." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not available offline." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not available offline." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not available offline." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "No disponible sin conexión." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not available offline." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "오프라인 사용 불가능" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not available offline." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not available offline." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not available offline." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não disponível quando desconectado. " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not available offline." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não disponível quando desconectado. " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not available offline." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "S’mund të kihet jashtë interneti." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถใช้งานออฟไลน์ได้" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถใช้งานออฟไลน์ได้" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Çevrimdışı kullanılamaz." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not available offline." - } - } - } - }, - "Not enough space left on the server to upload %@." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not enough space left on the server to upload %@." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nicht genügend Speicherplatz auf dem Server zum Hochladen von %@." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not enough space left on the server to upload %@." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not enough space left on the server to upload %@." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not enough space left on the server to upload %@." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "No queda suficiente espacio en el servidor para cargar %@." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not enough space left on the server to upload %@." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "서버에 남은 공간이 부족하여 %@을(를) 업로드할 수 없습니다." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not enough space left on the server to upload %@." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not enough space left on the server to upload %@." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not enough space left on the server to upload %@." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não há espaço suficiente no servidor para fazer o envio de %@." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not enough space left on the server to upload %@." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Não há espaço suficiente no servidor para fazer o envio de %@." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not enough space left on the server to upload %@." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Në shërbyes s’ka mbetur hapësirë e mjaftueshme për të ngarkuar %@." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "พื้นที่เหลือบนเซิร์ฟเวอร์ไม่เพียงพอที่จะอัปโหลดไฟล์ %@" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "พื้นที่เหลือบนเซิร์ฟเวอร์ไม่เพียงพอที่จะอัปโหลดไฟล์ %@" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@'i yüklemek için sunucuda yeterli alan kalmadı." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Not enough space left on the server to upload %@." - } - } - } - }, - "Object does not return DataItemType." : { - "comment" : "OCErrorDataItemTypeUnavailable", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Objekt liefert keinen DataItemType zurück." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O objeto não retorna DataItemType." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O objeto não retorna DataItemType." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Objekti s’përgjigjet me DataItemType." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Object does not return DataItemType." - } - } - } - }, - "Offline" : { - "comment" : "Connection status", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Desconectado" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Hors-ligne" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "오프라인" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Desconectado" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Desconectado" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Нет сети" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Jashtë linje" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ออฟไลน์" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ออฟไลน์" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Çevrimdışı" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "离线" - } - } - } - }, - "Offline (no WiFi connection)" : { - "comment" : "Connection status", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline (no WiFi connection)" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline (keine WLAN-Verbindung)" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline (no WiFi connection)" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline (no WiFi connection)" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline (no WiFi connection)" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Desconectado (sin conexión WIFI)" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : " Hors ligne (Aucune connexion Wi-Fi)" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "오프라인 (WiFi 연결 없음)" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline (no WiFi connection)" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline (no WiFi connection)" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline (no WiFi connection)" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Desconectado (sem conexão WiFi)" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline (no WiFi connection)" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Desconectado (sem conexão WiFi)" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Нет сети (нет соединения WiFi)" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Jashtë linje (pa lidhje WiFi)" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ออฟไลน์ (ไม่มีการเชื่อมต่อWiFi)" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ออฟไลน์ (ไม่มีการเชื่อมต่อWiFi)" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Çevrimdışı (Kablosuz bağlı değil)" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "离线 (无 WIFI 连接)" - } - } - } - }, - "Offline availability of %@ is already ensured by having made %@ available offline." : { - "comment" : "Available Offline", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Offline-Verfügbarkeit von %1$@ ist bereits dadurch gewährleistet, dass %2$@ offline verfügbar gemacht wurde." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Offline availability of %1$@ is already ensured by having made %2$@ available offline." - } - } - } - }, - "OK" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Aceptar" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "확인" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "ОК" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "OK" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ตกลง" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ตกลง" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tamam" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "确定" - } - } - } - }, - "Online" : { - "comment" : "Connection status", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Online" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Online" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Online" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Online" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Online" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Conectado" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "En ligne" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "온라인" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Online" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Online" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Online" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Conectado" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Online" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Conectado" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "В сети" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Në linjë" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ออนไลน์" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ออนไลน์" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Çevrimiçi" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "在线" - } - } - } - }, - "Only invited persons have access. Login required." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nur eingeladene Personen haben Zugang. Anmeldung erforderlich" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Apenas pessoas convidadas têm acesso. Login é necessário." - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Apenas pessoas convidadas têm acesso. Login é necessário." - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vetëm personat e ftuar kanë hyrje. Lypset të bëhet hyrja." - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Only invited persons have access. Login required." - } - } - } - }, - "Opening vault…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Öffne Vault…" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opening vault…" - } - } - } - }, - "Operation forbidden" : { - "comment" : "Move/Rename/Copy", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operation forbidden" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vorgang nicht zulässig" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operation forbidden" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operation forbidden" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operation forbidden" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operación no permitida" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Opération interdite" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "작업이 금지됨" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operation forbidden" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operation forbidden" - } - }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operation forbidden" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operation forbidden" - } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operation forbidden" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operação proibida" - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operation forbidden" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Operação proibida" - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Операция запрещена" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Veprim i ndaluar" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "หยุดการทำงาน" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "หยุดการทำงาน" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İşlem yasak" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "操作被禁止" - } - } - } - }, - "Origin Process" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ursprungsprozess" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process" - } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process" - } - }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceso de origen" - } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process" - } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "출처 처리" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process" - } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process" - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Processo de Origem " - } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Processo de Origem " - } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process" - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proces Origjine" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กระบวนการกำเนิด" - } - }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กระบวนการกำเนิด" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Menşe İşlemi" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process" - } - } - } - }, - "Origin Process Valid" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process Valid" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ursprungsprozess gültig" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process Valid" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process Valid" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Parametër i pavlefshëm." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process Valid" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Invalid parameter." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceso de origen válido" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Geçersiz parametre." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process Valid" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Invalid parameter." } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "출처 처리 유효" - } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process Valid" - } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process Valid" + } + } + }, + "Invalid rule without minimum and maximum count": { + "comment": "Password Policy", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Invalid rule without minimum and maximum count" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process Valid" + "de": { + "stringUnit": { + "state": "translated", + "value": "Ungültige Regel ohne Minimal und Maximalanzahl" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Processo de origem válido " + "en": { + "stringUnit": { + "state": "translated", + "value": "Invalid rule without minimum and maximum count" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process Valid" + "es": { + "stringUnit": { + "state": "translated", + "value": "Invalid rule without minimum and maximum count" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Processo de origem válido " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Invalid rule without minimum and maximum count" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process Valid" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Invalid rule without minimum and maximum count" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proces Origjine i Vlefshëm" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Invalid rule without minimum and maximum count" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กระบวนการกำเนิดที่ถูกต้อง" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Invalid rule without minimum and maximum count" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กระบวนการกำเนิดที่ถูกต้อง" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Invalid rule without minimum and maximum count" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Menşe İşlemi Geçerli" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Invalid rule without minimum and maximum count" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin Process Valid" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Invalid rule without minimum and maximum count" } } } }, - "Origin URL" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin URL" + "Invalid type.": { + "comment": "OCErrorInvalidType", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Invalid type." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ursprungs-URL" + "de": { + "stringUnit": { + "state": "translated", + "value": "Ungültiger Typ." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin URL" + "en": { + "stringUnit": { + "state": "translated", + "value": "Invalid type." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin URL" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Invalid type." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin URL" + "es": { + "stringUnit": { + "state": "translated", + "value": "Invalid type." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL de origen" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Invalid type." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin URL" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Invalid type." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "기존 URL" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Invalid type." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin URL" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Tipo inválido." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin URL" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Invalid type." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin URL" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Lloj i pavlefshëm." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL de origem " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Invalid type." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin URL" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Geçersiz tür." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL de origem " + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Invalid type." } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin URL" + } + } + }, + "Invalidate": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Invalidate" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL Origjine" + "de": { + "stringUnit": { + "state": "translated", + "value": "Invalidieren" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL ต้นทาง" + "en": { + "stringUnit": { + "state": "translated", + "value": "Invalidate" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL ต้นทาง" + "es": { + "stringUnit": { + "state": "translated", + "value": "Invalidate" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kaynak URL" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Invalidate" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Origin URL" - } - } - } - }, - "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." : { - "comment" : "OCErrorItemPolicyMakesRedundant", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Invalidate" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Andere gleichartige Richtlinien, die Teilmengen dieser Richtlinie abdecken, werden durch das Hinzufügen dieser Richtlinie überflüssig." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Invalidate" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Invalidate" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Invalidate" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Invalidate" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Otras políticas de artículos del mismo tipo que cubren subconjuntos de esta política de artículos se vuelven redundantes por la adición de esta política de artículos." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Invalidate" } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + } + } + }, + "Invalidate Login Data": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Invalidate Login Data" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "이 항목 정책의 하위 집합을 포함하는 동일한 종류의 다른 항목 정책은 이 항목 정책을 추가하면 중복됩니다." + "de": { + "stringUnit": { + "state": "translated", + "value": "Anmeldedaten ungültig machen" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "en": { + "stringUnit": { + "state": "translated", + "value": "Invalidate Login Data" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "en-GB": { + "stringUnit": { + "state": "needs_review", + "value": "Invalidate Login Data" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "es": { + "stringUnit": { + "state": "translated", + "value": "Invalidar datos de inicio de sesión" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Outras políticas de itens do mesmo tipo, cobrindo subconjuntos desta política de itens, tornam-se redundantes com a adição desta política de itens. " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Invalidate Login Data" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "ko": { + "stringUnit": { + "state": "translated", + "value": "잘못된 로그인 데이터" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Outras políticas de itens do mesmo tipo, cobrindo subconjuntos desta política de itens, tornam-se redundantes com a adição desta política de itens. " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Invalidate Login Data" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "pt-BR": { + "stringUnit": { + "state": "needs_review", + "value": "Dados de Login Inválidos " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Të tjera rregulla objektesh të të njëjtit lloj, që përfshijnë nëngrupe të këtij rregulli objektesh, bëhen të përsëritur me shtimin e këtij rregulli objekti." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Invalidate Login Data" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "นโยบายรายการซ้ำกับนโยบายมีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Zhvlerëso Hollësi Hyrjeje" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "นโยบายรายการซ้ำกับนโยบายมีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" + "th-TH": { + "stringUnit": { + "state": "needs_review", + "value": "ข้อมูลการเข้าสู่ระบบไม่ถูกต้อง" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bu öge politikasının alt kümelerini kapsayan aynı türden diğer öge politikaları, bu öge politikasının eklenmesiyle gereksiz hale gelir." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Giriş Verilerini Geçersiz Kıl" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Invalidate Login Data" } } } }, - "Overwrite modified file" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Überschreibe geänderte Datei" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "Invited persons": { + "comment": "Share roles", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Invited persons" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "de": { + "stringUnit": { + "state": "translated", + "value": "Eingeladene Personen" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "en": { + "stringUnit": { + "state": "translated", + "value": "Invited persons" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Invited persons" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "es": { + "stringUnit": { + "state": "translated", + "value": "Invited persons" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Invited persons" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Invited persons" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Invited persons" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Pessoas convidadas" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Invited persons" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Persona të ftuar" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Invited persons" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Davetli kişiler" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Overwrite modified file" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Invited persons" } } } }, - "Password can't be converted to {{encoding}}." : { - "comment" : "Password Policy", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "Issues were found while validating the certificate for %@.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Issues were found while validating the certificate for %@." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Passwort kann nicht als {{encoding}} kodiert werden." + "de": { + "stringUnit": { + "state": "translated", + "value": "Bei der Überprüfung des Zertifikats für %@ wurden Probleme gefunden." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "en": { + "stringUnit": { + "state": "translated", + "value": "Issues were found while validating the certificate for %@." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "es": { + "stringUnit": { + "state": "translated", + "value": "Issues were found while validating the certificate for %@." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Issues were found while validating the certificate for %@." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Issues were found while validating the certificate for %@." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Issues were found while validating the certificate for %@." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Issues were found while validating the certificate for %@." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Issues were found while validating the certificate for %@." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Issues were found while validating the certificate for %@." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Issues were found while validating the certificate for %@." } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + } + } + }, + "Item": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Item" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "de": { + "stringUnit": { + "state": "translated", + "value": "Element" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "en": { + "stringUnit": { + "state": "translated", + "value": "Item" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "es": { + "stringUnit": { + "state": "translated", + "value": "Item" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Item" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Password can't be converted to {{encoding}}." - } - } - } - }, - "Pending" : { - "comment" : "Sync Record Status", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pending" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Item" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ausstehend" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Item" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pending" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Item" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pending" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Item" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pending" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Item" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pendiente" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Item" } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pending" + } + } + }, + "Item is currently processing.": { + "comment": "OCErrorItemProcessing", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Item is currently processing." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "대기 중" + "de": { + "stringUnit": { + "state": "translated", + "value": "Element wird gerade verarbeitet." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pending" + "en": { + "stringUnit": { + "state": "translated", + "value": "Item is currently processing." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pending" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Item is currently processing." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pending" + "es": { + "stringUnit": { + "state": "translated", + "value": "Item is currently processing." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pendente" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Item is currently processing." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pending" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Item is currently processing." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pendente" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Item is currently processing." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pending" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O item está sendo processado no momento." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Në pritje" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Item is currently processing." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "อยู่ระหว่างดำเนินการ" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Objekti është duke u përpunuar." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "อยู่ระหว่างดำเนินการ" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Item is currently processing." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bekliyor" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Item is currently processing." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pending" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Item is currently processing." } } } }, - "Personal" : { - "comment" : "Drives", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" + "Item is not a directory.": { + "comment": "OCErrorShareItemNotADirectory", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Item is not a directory." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Persönlich" + "de": { + "stringUnit": { + "state": "translated", + "value": "Element ist kein Verzeichnis." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" + "en": { + "stringUnit": { + "state": "translated", + "value": "Item is not a directory." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Item is not a directory." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" + "es": { + "stringUnit": { + "state": "translated", + "value": "El elemento NO es un directorio." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Item is not a directory." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" + "ko": { + "stringUnit": { + "state": "translated", + "value": "항목이 디렉터리가 아닙니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "개인" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Item is not a directory." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O item não é um diretório." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Item is not a directory." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Objekti s’është një drejtori. " } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pessoal" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "รายการไม่ใช่ไดเร็กทอรี" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Öge bir dizin değil." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pessoal" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Item is not a directory." } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" + } + } + }, + "Item not available offline.": { + "comment": "OCErrorItemNotAvailableOffline", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Item not available offline." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personale" + "de": { + "stringUnit": { + "state": "translated", + "value": "Element nicht offline verfügbar." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ส่วนตัว" + "en": { + "stringUnit": { + "state": "translated", + "value": "Item not available offline." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ส่วนตัว" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Item not available offline." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kişisel" + "es": { + "stringUnit": { + "state": "translated", + "value": "Elemento no disponible sin conexión." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Personal" - } - } - } - }, - "Please check if you have sufficient permissions to delete %@." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Please check if you have sufficient permissions to delete %@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Élément non disponible hors connexion." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bitte prüfen Sie, ob Sie ausreichend Berechtigungen besitzen, um %@ zu löschen." + "ko": { + "stringUnit": { + "state": "translated", + "value": "항목을 오프라인으로 사용할 수 없음" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Please check if you have sufficient permissions to delete %@." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Item not available offline." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Please check if you have sufficient permissions to delete %@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Item não disponível quando desconectado." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Please check if you have sufficient permissions to delete %@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Элемент не доступен без сети." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Por favor compruebe si tiene suficientes permisos para eliminar %@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Objekt i papërdorshëm jashtë linje." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Veuillez vérifier si vous disposez des autorisations suffisantes pour supprimer %@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "รายการไม่พร้อมใช้งานในโหมดออฟไลน์" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@을(를) 삭제할 수 있는 권한이 있는지 확인하십시오" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Öge çevrimdışı kullanılamıyor." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Please check if you have sufficient permissions to delete %@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "项目在离线时不可用。" + } + } + } + }, + "Item not found.": { + "comment": "OCErrorShareItemNotFound", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Item not found." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Please check if you have sufficient permissions to delete %@." + "de": { + "stringUnit": { + "state": "translated", + "value": "Element nicht gefunden." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Please check if you have sufficient permissions to delete %@." + "en": { + "stringUnit": { + "state": "translated", + "value": "Item not found." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Please check if you have sufficient permissions to delete %@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Item not found." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Please check if you have sufficient permissions to delete %@." + "es": { + "stringUnit": { + "state": "translated", + "value": "Elemento no encontrado" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Por favor, verifique se você tem permissões suficientes para excluir %@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Item not found." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Please check if you have sufficient permissions to delete %@." + "ko": { + "stringUnit": { + "state": "translated", + "value": "항목을 찾을 수 없음" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Por favor, verifique se você tem permissões suficientes para excluir %@." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Item not found." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Пожалуйста, проверьте что у вас есть достаточные права для удаления %@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Item não encontrado." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ju lutemi, kontrolloni nëse keni leje të mjaftueshme për të fshirë %@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Item not found." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "โปรดตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะลบ %@" + "sq": { + "stringUnit": { + "state": "translated", + "value": "S’u gjet objekt." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "โปรดตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะลบ %@" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่พบรายการ" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ dosyasını silebilmek için erişim yetkisini kontrol edin." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Öge bulunamadı" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "请检查你是否有足够权限删除 %@" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Item not found." } } } }, - "Populating database…" : { - "comment" : "Account prepopulation", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "Keep both": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Keep both" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Befülle Datenbank…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Beide behalten" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Keep both" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Keep both" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Mantener ambos" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Keep both" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "모두 저장" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Keep both" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Manter ambos" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Keep both" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Mbaji të dyja" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Preenchendo o banco de dados..." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เก็บไว้ทั้งสองอย่าง" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "İkisini de koru" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Preenchendo o banco de dados..." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Keep both" + } + } + } + }, + "Lane ID": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Lane ID" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Lane-ID" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po popullohet baza e të dhënave…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Lane ID" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Lane ID" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "es": { + "stringUnit": { + "state": "translated", + "value": "ID de carril" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Lane ID" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Populating database…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "도로 ID" } - } - } - }, - "Previous token refresh attempts indicated an invalid refresh token." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "Lane ID" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Frühere Token-Aktualisierungsversuche zeigten ein ungültiges Aktualisierungs-Token an." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "ID da pista " } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Lane ID" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "sq": { + "stringUnit": { + "state": "translated", + "value": "ID Piste" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Lane ID" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Lane ID" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Lane ID" + } + } + } + }, + "Local ID": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Local ID" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "de": { + "stringUnit": { + "state": "translated", + "value": "Lokale ID" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "en": { + "stringUnit": { + "state": "translated", + "value": "Local ID" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Local ID" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "es": { + "stringUnit": { + "state": "translated", + "value": "ID local" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tentativas anteriores de atualização de token indicaram um token de atualização inválido." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Local ID" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "ko": { + "stringUnit": { + "state": "translated", + "value": "로컬 ID" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tentativas anteriores de atualização de token indicaram um token de atualização inválido." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Local ID" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "ID local " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Përpjekje të mëparshme rifreskimi token-i treguan një token të pavlefshëm freskimi." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Local ID" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "sq": { + "stringUnit": { + "state": "translated", + "value": "ID Vendore" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Local ID" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh token." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Local ID" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Previous token refresh attempts indicated an invalid refresh_token." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Local ID" } } } }, - "Private link format invalid." : { - "comment" : "OCErrorPrivateLinkInvalidFormat", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Private link format invalid." + "Localized Description": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Localized Description" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Format des privaten Links ungültig." + "de": { + "stringUnit": { + "state": "translated", + "value": "Lokalisierte Beschreibung" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Private link format invalid." + "en": { + "stringUnit": { + "state": "translated", + "value": "Localized Description" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Private link format invalid." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Localised Description" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Private link format invalid." + "es": { + "stringUnit": { + "state": "translated", + "value": "Descripción localizada" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "El formato de enlace privado no es válido." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Localized Description" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Private link format invalid." + "ko": { + "stringUnit": { + "state": "translated", + "value": "현지화된 설명" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "잘못된 개인 링크 형식" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Localized Description" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Private link format invalid." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Descrição Localizada " } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Private link format invalid." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Localized Description" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Private link format invalid." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Përshkrim i Përkthyer" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Formato de linque privado inválido. " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "คำอธิบายที่แปลเป็นภาษาท้องถิ่น" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Private link format invalid." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yerel Açıklama" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Formato de linque privado inválido. " + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Localized Description" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Private link format invalid." + } + } + }, + "Lock invalidated.": { + "comment": "OCErrorLockInvalidated", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Lock invalidated." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Format i pavlefshëm lidhjesh private." + "de": { + "stringUnit": { + "state": "translated", + "value": "Sperrung invalidiert." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รูปแบบลิงก์ส่วนตัวไม่ถูกต้อง" + "en": { + "stringUnit": { + "state": "translated", + "value": "Lock invalidated." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รูปแบบลิงก์ส่วนตัวไม่ถูกต้อง" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Lock invalidated." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Özel bağlantı biçimi geçersiz." + "es": { + "stringUnit": { + "state": "translated", + "value": "Lock invalidated." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Private link format invalid." - } - } - } - }, - "Proceed" : { - "comment" : "Issue resolution choice", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceed" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Lock invalidated." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Fortfahren" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Lock invalidated." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceed" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Lock invalidated." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceed" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Bloqueio invalidado." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceed" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Lock invalidated." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceder" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kyçja u shfuqizua." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Exécuter" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Lock invalidated." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "진행" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Lock invalidated." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceed" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Lock invalidated." + } + } + } + }, + "Log HTTP requests and responses": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Log HTTP requests and responses" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceed" + "de": { + "stringUnit": { + "state": "translated", + "value": "HTTP-Anfragen und Antworten protokollieren" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceed" + "en": { + "stringUnit": { + "state": "translated", + "value": "Log HTTP requests and responses" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceed" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Log HTTP requests and responses" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceed" + "es": { + "stringUnit": { + "state": "translated", + "value": "Registrar peticiones y respuestas HTTP" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Prosseguir" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Log HTTP requests and responses" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Proceed" + "ko": { + "stringUnit": { + "state": "translated", + "value": "HTTP 요청 및 응답 로그" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Prosseguir" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Log HTTP requests and responses" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Продолжить" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Registrar solicitações e respostas HTTP" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bëje" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Log HTTP requests and responses" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ดำเนินการ" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Regjistro kërkesa dhe përgjigje HTTP" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ดำเนินการ" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "บันทึกคำขอและการตอบกลับ HTTP" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Devam et" + "tr": { + "stringUnit": { + "state": "translated", + "value": "HTTP isteklerini ve yanıtlarını günlüğe kaydet" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "继续" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Log HTTP requests and responses" } } } }, - "Process Sync Records" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Process Sync Records" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync-Datensätze verarbeiten" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Process Sync Records" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Process Sync Records" + "Log file": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Log file" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Process Sync Records" + "de": { + "stringUnit": { + "state": "translated", + "value": "Protokolldatei" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Procesar registros de sincronización" + "en": { + "stringUnit": { + "state": "translated", + "value": "Log file" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Process Sync Records" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Log file" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "프로세스 동기화 기록" + "es": { + "stringUnit": { + "state": "translated", + "value": "Archivo de registro" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Process Sync Records" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Fichier log" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Process Sync Records" + "ko": { + "stringUnit": { + "state": "translated", + "value": "로그 파일" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Process Sync Records" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Log file" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Registros de Sincronização de Processo " + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Log file" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Process Sync Records" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Log file" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Registros de Sincronização de Processo " + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Arquivo de Log" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Process Sync Records" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Файл журнала" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Process Sync Records" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kartelë regjistër" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ประมวลผลบันทึกการซิงค์" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไฟล์ log" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ประมวลผลบันทึกการซิงค์" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Günlük dosyası" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İşlem Senkronizasyonu Kayıtları" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Process Sync Records" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "日志文件" } } } }, - "Public upload was disabled by the administrator." : { - "comment" : "OCErrorSharePublicUploadDisabled", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Public upload was disabled by the administrator." + "Log internal file operations": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Log internal file operations" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Das öffentliche Hochladen ist durch den Administrator/die Administratorin deaktiviert." + "de": { + "stringUnit": { + "state": "translated", + "value": "Interne Dateioperationen protokollieren" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Public upload was disabled by the administrator." + "en": { + "stringUnit": { + "state": "translated", + "value": "Log internal file operations" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Public upload was disabled by the administrator." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Log internal file operations" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Public upload was disabled by the administrator." + "es": { + "stringUnit": { + "state": "translated", + "value": "Registrar operaciones de archivos internos" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La subida pública ha sido deshabilitada por el administrador." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Log internal file operations" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Public upload was disabled by the administrator." + "ko": { + "stringUnit": { + "state": "translated", + "value": "내부 파일 작업 로그" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "관리자에 의해 공개 업로드가 비활성화 되었습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Log internal file operations" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Public upload was disabled by the administrator." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Registrar operações de arquivo interno" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Public upload was disabled by the administrator." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Log internal file operations" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Public upload was disabled by the administrator." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Regjistro veprime të brendshme kartelash" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O envio de arquivo público foi desativado pelo administrador." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Log การทำงานของไฟล์ภายใน" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Public upload was disabled by the administrator." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Dahili dosya işlemlerini günlüğe kaydet" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O envio de arquivo público foi desativado pelo administrador." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Log internal file operations" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Public upload was disabled by the administrator." + } + } + }, + "Login as user %@ required. Please retry.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Login as user %@ required. Please retry." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ngarkimi publik është çaktivizuar nga përgjegjësi." + "de": { + "stringUnit": { + "state": "translated", + "value": "Anmeldung als Benutzer %@ erforderlich. Bitte versuchen Sie es erneut." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การอัปโหลดสาธารณะถูกปิดใช้งานโดยผู้ดูแลระบบ" + "en": { + "stringUnit": { + "state": "translated", + "value": "Login as user %@ required. Please retry." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การอัปโหลดสาธารณะถูกปิดใช้งานโดยผู้ดูแลระบบ" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Login as user %@ required. Please retry." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Herkese açık yükleme, yönetici tarafından devre dışı bırakıldı." + "es": { + "stringUnit": { + "state": "translated", + "value": "Se requiere iniciar sesión como usuario %@. Por favor, inténtalo de nuevo." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Public upload was disabled by the administrator." - } - } - } - }, - "Recipients can upload but existing contents are not revealed." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Login as user %@ required. Please retry." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Empfangende können hochladen, aber existierende Inhalte werden nicht angezeigt." + "ko": { + "stringUnit": { + "state": "translated", + "value": "사용자 %@으로 로그인해야 합니다. 다시 시도하십시오." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Login as user %@ required. Please retry." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "É necessário fazer login como usuário %@ . Por favor tente novamente." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Login as user %@ required. Please retry." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Lypset hyrje si përdorues %@. Ju lutemi, riprovoni." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กรุณาเข้าสู่ระบบด้วยฐานะ %@ โปรดลองอีกครั้ง" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kullanıcı %@ olarak oturum açın. Lütfen tekrar deneyiniz." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Login as user %@ required. Please retry." } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + } + } + }, + "Longer than {{byteLength}} bytes in {{encoding}} encoding.": { + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "de": { + "stringUnit": { + "state": "translated", + "value": "Länger als {{byteLength}} Bytes in {{encoding}} Encodierung." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Os destinatários podem fazer upload, mas os conteúdos existentes não são revelados." + "en": { + "stringUnit": { + "state": "translated", + "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "es": { + "stringUnit": { + "state": "translated", + "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Os destinatários podem fazer upload, mas os conteúdos existentes não são revelados." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Marrësit mund të ngarkojnë, por lënda ekzistuese nuk shfaqet." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can upload but existing contents are not revealed." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Longer than {{byteLength}} bytes in {{encoding}} encoding." } } } }, - "Recipients can view and download contents." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "Making %@ available offline also covers %@, which was previously requested as being available offline.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + } + }, + "de": { + "stringUnit": { + "state": "translated", + "value": "Durch die Offline-Verfügbarkeit von %1$@ wird auch %2$@ abgedeckt, für das zuvor Offline-Verfügbarkeit angefordert wurde." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Empfangende können Inhalte sehen und herunterladen." + "en": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "es": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, which was previously requested as being available offline." + } + } + } + }, + "Making %@ available offline also covers %@, whose offline availability has previously been requested.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Offline-Verfügbarkeit von %1$@ gilt auch für %2$@, dessen Offline-Verfügbarkeit zuvor angefordert wurde." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Os destinatários podem visualizar e baixar o conteúdo." + "en": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "es": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Os destinatários podem visualizar e baixar o conteúdo." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Marrësit mund të shohin dhe shkarkojnë lëndë." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view and download contents." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Making %1$@ available offline also covers %2$@, whose offline availability has previously been requested." } } } }, - "Recipients can view, download and edit contents." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and edit contents." + "Manager": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Manager" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Empfangende können Inhalte einsehen, herunterladen und bearbeiten." + "de": { + "stringUnit": { + "state": "translated", + "value": "Manager" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and edit contents." + "en": { + "stringUnit": { + "state": "translated", + "value": "Manager" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and edit contents." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Manager" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and edit contents." + "es": { + "stringUnit": { + "state": "translated", + "value": "Manager" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Los recipientes pueden ver, descargar y editar el contenido." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Manager" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and edit contents." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Manager" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "받는 사람은 콘텐츠를 조회, 다운로드 및 편집할 수 있습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Manager" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and edit contents." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Gerente" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and edit contents." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Manager" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and edit contents." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Përgjegjës" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Os destinatários podem visualizar, baixar e editar o conteúdo." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Manager" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and edit contents." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yönetici" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Os destinatários podem visualizar, baixar e editar o conteúdo." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Manager" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and edit contents." + } + } + }, + "Missing Drive ID.": { + "comment": "OCErrorMissingDriveID", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Missing Drive ID." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Marrësit mund të shohin, shkarkojnë dhe përpunojnë lëndë." + "de": { + "stringUnit": { + "state": "translated", + "value": "Fehlende Drive ID." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ผู้รับสามารถดู ดาวน์โหลด และแก้ไขเนื้อหา" + "en": { + "stringUnit": { + "state": "translated", + "value": "Missing Drive ID." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ผู้รับสามารถดู ดาวน์โหลด และแก้ไขเนื้อหา" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Missing Drive ID." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Alıcılar içeriği görüntüleyebilir, indirebilir ve düzenleyebilir." + "es": { + "stringUnit": { + "state": "translated", + "value": "Missing Drive ID." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and edit contents." - } - } - } - }, - "Recipients can view, download and upload contents." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and upload contents." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Missing Drive ID." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Empfangende können Inhalte sehen, herunterladen und hochladen." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Missing Drive ID." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and upload contents." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Missing Drive ID." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and upload contents." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "ID da unidade ausente." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and upload contents." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Missing Drive ID." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Los recipientes pueden ver, descargar y subir el contenido." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Mungon ID Disku." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and upload contents." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Missing Drive ID." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "받는 사람은 콘텐츠를 조회, 다운로드, 업로드할 수 있습니다." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Missing Drive ID." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and upload contents." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Missing Drive ID." } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and upload contents." + } + } + }, + "Moving %@ to %@…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Moving %@ to %@…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and upload contents." + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ nach %@ verschieben…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Os destinatários podem visualizar, baixar e fazer upload de conteúdo." + "en": { + "stringUnit": { + "state": "translated", + "value": "Moving %@ to %@…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and upload contents." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Moving %@ to %@…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Os destinatários podem visualizar, baixar e fazer upload de conteúdo." + "es": { + "stringUnit": { + "state": "translated", + "value": "Moviendo %@ a %@…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and upload contents." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Déplacer %@ vers %@..." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Marrësit mund të shohin, shkarkojnë dhe ngarkojnë lëndë." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@에서 %@으로 이동 중..." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ผู้รับสามารถดู ดาวน์โหลด และอัปโหลดเนื้อหา" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Moving %@ to %@…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ผู้รับสามารถดู ดาวน์โหลด และอัปโหลดเนื้อหา" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Moving %@ to %@…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Alıcılar içeriği görüntüleyebilir, indirebilir ve karşı tarafa yükleyebilir." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Moving %@ to %@…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download and upload contents." - } - } - } - }, - "Recipients can view, download, edit, delete and upload contents." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download, edit, delete and upload contents." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Movendo %@ para %@…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Empfangende können Inhalte sehen, herunterladen, ändern, löschen und hochladen." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Перемещение %@ в %@…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download, edit, delete and upload contents." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po shpihet %@ te %@…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download, edit, delete and upload contents." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังย้าย %@ ไปยัง %@..." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download, edit, delete and upload contents." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@öğesi%@konumuna taşınıyor..." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Destinatarios pueden ver, descargar, editar, borrar y subir contenido." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "正在移动 %@ 到 %@…" } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download, edit, delete and upload contents." + } + } + }, + "Name": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Name" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "받는 사람은 컨텐츠를 조회, 다운로드, 편집, 삭제, 업로드할 수 있습니다." + "de": { + "stringUnit": { + "state": "translated", + "value": "Name" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download, edit, delete and upload contents." + "en": { + "stringUnit": { + "state": "translated", + "value": "Name" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download, edit, delete and upload contents." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Name" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download, edit, delete and upload contents." + "es": { + "stringUnit": { + "state": "translated", + "value": "Nombre" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Os destinatários podem visualizar, baixar, editar, excluir e enviar conteúdos." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Name" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download, edit, delete and upload contents." + "ko": { + "stringUnit": { + "state": "translated", + "value": "이름" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Os destinatários podem visualizar, baixar, editar, excluir e enviar conteúdos." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Name" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download, edit, delete and upload contents." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Nome" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Marrësit mund të shohin shkarkojnë, përpunojnë, fshijnë dhe ngarkojnë lëndë." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Name" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ผู้รับสามารถดู ดาวน์โหลด แก้ไข ลบและอัปโหลดเนื้อหา" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Emër" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ผู้รับสามารถดู ดาวน์โหลด แก้ไข ลบและอัปโหลดเนื้อหา" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ชื่อ" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Alıcılar içerik görüntüleyebilir, düzenleyebilir, silebilir ve karşı tarafa yükleyebilir." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Ad" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recipients can view, download, edit, delete and upload contents." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Name" } } } }, - "Redirection" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "Network unavailable": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Network unavailable" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Umleitung" + "de": { + "stringUnit": { + "state": "translated", + "value": "Netzwerk nicht verfügbar" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "en": { + "stringUnit": { + "state": "translated", + "value": "Network unavailable" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Network unavailable" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "es": { + "stringUnit": { + "state": "translated", + "value": "Red no disponible" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Network unavailable" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "ko": { + "stringUnit": { + "state": "translated", + "value": "네트워크를 사용할 수 없음" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Network unavailable" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Rede indisponível" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Network unavailable" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Rrjet i pakapshëm" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เครือข่ายใช้งานไม่ได้" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Ağ kullanılamıyor" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" - } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" - } - }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Network unavailable" } } } }, - "Rejecting share…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Weise Freigabe ab…" + "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests).": { + "comment": "OCErrorCertificateMissing", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Für eine Anfrage wurde trotz HTTPS-Verbindung kein Zertifikat zurückgegeben (sollte niemals in der Produktion auftreten, sondern nur, wenn Sie vergessen haben, ein Zertifikat bei simulierten Antworten auf HTTPS-Anfragen anzugeben)." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "en": { + "stringUnit": { + "state": "translated", + "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "es": { + "stringUnit": { + "state": "translated", + "value": "No se devolvió ningún certificado para una solicitud a pesar de ser una conexión HTTPS (nunca debería ocurrir en producción, sino solo si se olvidó de proporcionar un certificado durante las respuestas simuladas a las solicitudes HTTPS)." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Aucun certificat n'a été renvoyé pour une demande bien qu'il s'agisse d'une connexion HTTPS (ne devrait jamais se produire en production, mais uniquement si vous avez oublié de fournir un certificat lors des réponses simulées aux demandes HTTPS)." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "HTTPS 연결임에도 불구하고 요청에 대한 인증서가 반환되지 않았습니다(운영 환경에서 절대 발생하지 않아야 하지만, HTTPS 요청에 대한 시뮬레이션 응답 중에 인증서를 제공하는 것을 잊은 경우에만 해당)." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "No certificate was returned for a request despite this being a HTTPS connection (should never occur in production, but only if you forgot to provide a certificate during simulated responses to HTTPS requests)." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Nenhum certificado foi retornado para uma solicitação, apesar de esta ser uma conexão HTTPS (nunca deve ocorrer em produção, mas somente se você esqueceu de fornecer um certificado durante respostas simuladas a solicitações HTTPS)." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Не смотря на использование соединения HTTPS, для запроса не был получен сертификат (при эксплуатации такого быть не должно, только если вы забыли задать сертификат при симуляции ответа на запрос HTTPS)." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Për një kërkesë s’u kthye dëshmi, edhe pse kjo është lidhje HTTPS (s’duhet të ndodhë kurrë në një sajt real, vetëm nëse harruat të jepnit një dëshmi gjatë përgjigjesh të simuluara për kërkesa HTTPS)." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่มีการส่งคืนใบรับรองสำหรับคำขอแม้ว่าจะเป็นการเชื่อมต่อแบบ HTTPS (คุณอาจจะลืมระบุใบรับรองในระหว่างการตอบกลับคำขอของ HTTPS)" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bir HTTPS bağlantısı olmasına rağmen bir istek için hiçbir sertifika döndürülmedi (Yalnızca HTTPS isteklerine benzetilmiş yanıtlar sırasında bir sertifika vermeyi unuttuysanız olabilir, canlı sunucuda asla gerçekleşmemelidir)." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Rejecting share…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "没有为 HTTPS 连接的请求返回证书 (这不应在生产环境中发生,除非你在模拟对 HTTPS 请求的响应时忘记提供证书)。" } } } }, - "Remove Database Version" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remove Database Version" + "No data converter available for conversion.": { + "comment": "OCErrorDataConverterUnavailable", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "No data converter available for conversion." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Datenbankversion entfernen" + "de": { + "stringUnit": { + "state": "translated", + "value": "Kein Datenumwandler für Umwandlung verfügbar." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remove Database Version" + "en": { + "stringUnit": { + "state": "translated", + "value": "No data converter available for conversion." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remove Database Version" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "No data converter available for conversion." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remove Database Version" + "es": { + "stringUnit": { + "state": "translated", + "value": "No data converter available for conversion." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Eliminar la versión de la base de datos" + "fr": { + "stringUnit": { + "state": "translated", + "value": "No data converter available for conversion." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remove Database Version" + "ko": { + "stringUnit": { + "state": "translated", + "value": "No data converter available for conversion." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "데이터베이스 버전 삭제" + "mk": { + "stringUnit": { + "state": "translated", + "value": "No data converter available for conversion." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remove Database Version" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Nenhum conversor de dados disponível para conversão." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remove Database Version" + "ru": { + "stringUnit": { + "state": "translated", + "value": "No data converter available for conversion." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remove Database Version" + "sq": { + "stringUnit": { + "state": "translated", + "value": "S’ka shndërrues të gatshëm për shndërrimin." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remover Versão do Banco de Dados " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "No data converter available for conversion." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remove Database Version" + "tr": { + "stringUnit": { + "state": "translated", + "value": "No data converter available for conversion." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remover Versão do Banco de Dados " + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "No data converter available for conversion." + } + } + } + }, + "Not authorized to access shares.": { + "comment": "OCErrorShareUnauthorized:", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Not authorized to access shares." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remove Database Version" + "de": { + "stringUnit": { + "state": "translated", + "value": "Nicht berechtigt, auf Freigaben zuzugreifen." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Hiq Version Baze të Dhënash" + "en": { + "stringUnit": { + "state": "translated", + "value": "Not authorized to access shares." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลบเวอร์ชันฐานข้อมูล" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Not authorised to access shares." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลบเวอร์ชันฐานข้อมูล" + "es": { + "stringUnit": { + "state": "translated", + "value": "No esta autorizado a ver los compartidos" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Veritabanı Sürümünü Kaldır" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Not authorized to access shares." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Remove Database Version" + "ko": { + "stringUnit": { + "state": "translated", + "value": "공유에 접할 수 있는 권한이 없음" } - } - } - }, - "Removed Items" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removed Items" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "Not authorized to access shares." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Entfernte Elemente" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Não autorizado a acessar compartilhamentos." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removed Items" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Not authorized to access shares." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removed Items" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Jo i autorizuar të përdorë pjesën." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removed Items" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่ได้รับอนุญาตให้เข้าถึงแชร์" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Artículos eliminados" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Paylaşımlara erişim yetkisi yok." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removed Items" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Not authorized to access shares." + } + } + } + }, + "Not available offline.": { + "comment": "OCErrorNotAvailableOffline", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Not available offline." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "삭제된 항목" + "de": { + "stringUnit": { + "state": "translated", + "value": "Nicht offline verfügbar." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removed Items" + "en": { + "stringUnit": { + "state": "translated", + "value": "Not available offline." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removed Items" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Not available offline." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removed Items" + "es": { + "stringUnit": { + "state": "translated", + "value": "No disponible sin conexión." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Itens Removidos " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Not available offline." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removed Items" + "ko": { + "stringUnit": { + "state": "translated", + "value": "오프라인 사용 불가능" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Itens Removidos " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Not available offline." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removed Items" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Não disponível quando desconectado. " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Objekte të Hequr" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Not available offline." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รายการถูกลบแล้ว" + "sq": { + "stringUnit": { + "state": "translated", + "value": "S’mund të kihet jashtë interneti." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รายการถูกลบแล้ว" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่สามารถใช้งานออฟไลน์ได้" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kaldırılan Ögeler" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Çevrimdışı kullanılamaz." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removed Items" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Not available offline." } } } }, - "Removing local copy of %@…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Entferne lokale Kopie von %@…" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "Not enough space left on the server to upload %@.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Not enough space left on the server to upload %@." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Nicht genügend Speicherplatz auf dem Server zum Hochladen von %@." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Not enough space left on the server to upload %@." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Not enough space left on the server to upload %@." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "es": { + "stringUnit": { + "state": "translated", + "value": "No queda suficiente espacio en el servidor para cargar %@." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Not enough space left on the server to upload %@." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "서버에 남은 공간이 부족하여 %@을(를) 업로드할 수 없습니다." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Not enough space left on the server to upload %@." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Não há espaço suficiente no servidor para fazer o envio de %@." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Not enough space left on the server to upload %@." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Në shërbyes s’ka mbetur hapësirë e mjaftueshme për të ngarkuar %@." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "พื้นที่เหลือบนเซิร์ฟเวอร์ไม่เพียงพอที่จะอัปโหลดไฟล์ %@" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@'i yüklemek için sunucuda yeterli alan kalmadı." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Removing local copy of %@…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Not enough space left on the server to upload %@." } } } }, - "Renaming %@ to %@…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renaming %@ to %@…" + "OK": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "OK" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ in %@ umbenennen…" + "de": { + "stringUnit": { + "state": "translated", + "value": "OK" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renaming %@ to %@…" + "en": { + "stringUnit": { + "state": "translated", + "value": "OK" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renaming %@ to %@…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "OK" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renaming %@ to %@…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Aceptar" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renombrando %@ por %@…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "OK" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renommer %@ en %@…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "확인" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@에서 %@으로 이름 변경 중..." + "mk": { + "stringUnit": { + "state": "translated", + "value": "OK" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renaming %@ to %@…" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "OK" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renaming %@ to %@…" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "OK" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renaming %@ to %@…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "OK" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renaming %@ to %@…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "ОК" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renaming %@ to %@…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "OK" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renomeando %@ para %@…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ตกลง" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renaming %@ to %@…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Tamam" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Renomeando %@ para %@…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "确定" + } + } + } + }, + "Object does not return DataItemType.": { + "comment": "OCErrorDataItemTypeUnavailable", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Object does not return DataItemType." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Переименование %@ в %@…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Objekt liefert keinen DataItemType zurück." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po riemërtohet %@ si %@…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Object does not return DataItemType." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังเปลี่ยนชื่อ %@ เป็น %@..." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Object does not return DataItemType." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังเปลี่ยนชื่อ %@ เป็น %@..." + "es": { + "stringUnit": { + "state": "translated", + "value": "Object does not return DataItemType." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@öğesi %@olarak isimlendiriliyor..." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Object does not return DataItemType." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "正在重命名 %@ 为 %@…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Object does not return DataItemType." } - } - } - }, - "Replace" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Replace" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "Object does not return DataItemType." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ersetzen" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O objeto não retorna DataItemType." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Replace" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Object does not return DataItemType." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Replace" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Objekti s’përgjigjet me DataItemType." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Replace" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Object does not return DataItemType." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reemplazar" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Object does not return DataItemType." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Replace" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Object does not return DataItemType." + } + } + } + }, + "Offline": { + "comment": "Connection status", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Offline" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "바꾸기" + "de": { + "stringUnit": { + "state": "translated", + "value": "Offline" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Replace" + "en": { + "stringUnit": { + "state": "translated", + "value": "Offline" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Replace" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Offline" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Replace" + "es": { + "stringUnit": { + "state": "translated", + "value": "Desconectado" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Substituir " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Hors-ligne" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Replace" + "ko": { + "stringUnit": { + "state": "translated", + "value": "오프라인" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Substituir " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Offline" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Replace" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Desconectado" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zëvendësoje" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Нет сети" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "แทนที่" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Jashtë linje" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "แทนที่" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ออฟไลน์" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yer değiştir" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Çevrimdışı" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Replace" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "离线" } } } }, - "Request completed with error." : { - "comment" : "OCErrorRequestCompletedWithError", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request completed with error." + "Offline (no WiFi connection)": { + "comment": "Connection status", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Offline (no WiFi connection)" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Anfrage mit Fehler abgeschlossen." + "de": { + "stringUnit": { + "state": "translated", + "value": "Offline (keine WLAN-Verbindung)" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request completed with error." + "en": { + "stringUnit": { + "state": "translated", + "value": "Offline (no WiFi connection)" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request completed with error." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Offline (no WiFi connection)" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request completed with error." + "es": { + "stringUnit": { + "state": "translated", + "value": "Desconectado (sin conexión WIFI)" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Solicitud completada con error." + "fr": { + "stringUnit": { + "state": "translated", + "value": " Hors ligne (Aucune connexion Wi-Fi)" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Demande terminée avec une erreur." + "ko": { + "stringUnit": { + "state": "translated", + "value": "오프라인 (WiFi 연결 없음)" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "요청이 오류와 함께 완료되었습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Offline (no WiFi connection)" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request completed with error." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Desconectado (sem conexão WiFi)" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request completed with error." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Нет сети (нет соединения WiFi)" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request completed with error." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Jashtë linje (pa lidhje WiFi)" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request completed with error." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ออฟไลน์ (ไม่มีการเชื่อมต่อWiFi)" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request completed with error." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Çevrimdışı (Kablosuz bağlı değil)" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Solicitação concluída com erro." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "离线 (无 WIFI 连接)" } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request completed with error." + } + } + }, + "Offline availability of %@ is already ensured by having made %@ available offline.": { + "comment": "Available Offline", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Solicitação concluída com erro." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Offline-Verfügbarkeit von %1$@ ist bereits dadurch gewährleistet, dass %2$@ offline verfügbar gemacht wurde." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Запрос завершился с ошибкой." + "en": { + "stringUnit": { + "state": "translated", + "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kërkesa u plotësua me gabim." + "es": { + "stringUnit": { + "state": "translated", + "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คำขอเสร็จสิ้นแต่มีข้อผิดพลาดเกิดขึ้น" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คำขอเสร็จสิ้นแต่มีข้อผิดพลาดเกิดขึ้น" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İstek bir hata ile sonlandı." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request completed with error." - } - } - } - }, - "Request couldn't be scheduled because the underlying URL session has been invalidated." : { - "comment" : "OCErrorRequestURLSessionInvalidated", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Anforderung konnte nicht geplant werden, da die zugrundeliegende URL-Sitzung ungültig gemacht wurde." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Offline availability of %1$@ is already ensured by having made %2$@ available offline." } - }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." + } + } + }, + "Online": { + "comment": "Connection status", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Online" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La solicitud no se pudo programar porque la sesión de URL subyacente se ha invalidado." + "de": { + "stringUnit": { + "state": "translated", + "value": "Online" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "La demande n'a pas pu être planifiée car la session URL sous-jacente a été invalidé." + "en": { + "stringUnit": { + "state": "translated", + "value": "Online" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "기본 URL 세션이 무효화되었기 때문에 요청을 예약할 수 없습니다" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Online" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." + "es": { + "stringUnit": { + "state": "translated", + "value": "Conectado" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." + "fr": { + "stringUnit": { + "state": "translated", + "value": "En ligne" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." + "ko": { + "stringUnit": { + "state": "translated", + "value": "온라인" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Online" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Conectado" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A solicitação não pôde ser agendada porque a sessão de URL subjacente foi invalidada." + "ru": { + "stringUnit": { + "state": "translated", + "value": "В сети" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Në linjë" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A solicitação não pôde ser agendada porque a sessão de URL subjacente foi invalidada." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ออนไลน์" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Не удалось поставить запрос на исполнение, так как нижележащий ссылочный сеанс был сброшен." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Çevrimiçi" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kërkesa s’u planifikua dot, ngaqë sesioni URL përkatës është bërë i pavlefshëm." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "在线" } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถกำหนดเวลาคำขอได้เนื่องจากเซสชัน URL พื้นฐานนั้นไม่ถูกต้อง" + } + } + }, + "Only invited persons have access. Login required.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Only invited persons have access. Login required." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่สามารถกำหนดเวลาคำขอได้เนื่องจากเซสชัน URL พื้นฐานนั้นไม่ถูกต้อง" + "de": { + "stringUnit": { + "state": "translated", + "value": "Nur eingeladene Personen haben Zugang. Anmeldung erforderlich" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Arkaplandaki URL oturumu geçersiz kılındığı için istek planlanamadı." + "en": { + "stringUnit": { + "state": "translated", + "value": "Only invited persons have access. Login required." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request couldn't be scheduled because the underlying URL session has been invalidated." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Only invited persons have access. Login required." } - } - } - }, - "Request timed out" : { - "comment" : "OCErrorRequestTimeout", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request timed out" + }, + "es": { + "stringUnit": { + "state": "translated", + "value": "Only invited persons have access. Login required." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zeitüberschreitung bei der Anfrage" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Only invited persons have access. Login required." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request timed out" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Only invited persons have access. Login required." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request timed out" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Only invited persons have access. Login required." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request timed out" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Apenas pessoas convidadas têm acesso. Login é necessário." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tiempo de espera agotado" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Only invited persons have access. Login required." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request timed out" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Vetëm personat e ftuar kanë hyrje. Lypset të bëhet hyrja." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "요청 시간 초과됨" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Only invited persons have access. Login required." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request timed out" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Only invited persons have access. Login required." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request timed out" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Only invited persons have access. Login required." + } + } + } + }, + "Opening vault…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Opening vault…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request timed out" + "de": { + "stringUnit": { + "state": "translated", + "value": "Öffne Vault…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Solicitação expirou" + "en": { + "stringUnit": { + "state": "translated", + "value": "Opening vault…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request timed out" + "es": { + "stringUnit": { + "state": "translated", + "value": "Opening vault…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Solicitação expirou" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Opening vault…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request timed out" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Opening vault…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kërkesës i mbaroi koha" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Opening vault…" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การร้องขอหมดเวลา" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Opening vault…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การร้องขอหมดเวลา" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Opening vault…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İstek zaman aşımına uğradı" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Opening vault…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request timed out" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Opening vault…" } } } }, - "Request was cancelled because the server certificate was rejected." : { - "comment" : "OCErrorRequestServerCertificateRejected", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled because the server certificate was rejected." + "Operation forbidden": { + "comment": "Move/Rename/Copy", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Operation forbidden" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Anfrage wurde storniert, weil das Serverzertifikat abgelehnt wurde." + "de": { + "stringUnit": { + "state": "translated", + "value": "Vorgang nicht zulässig" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled because the server certificate was rejected." + "en": { + "stringUnit": { + "state": "translated", + "value": "Operation forbidden" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled because the server certificate was rejected." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Operation forbidden" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled because the server certificate was rejected." + "es": { + "stringUnit": { + "state": "translated", + "value": "Operación no permitida" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La solicitud fue cancelada porque el certificado del servidor fue rechazado." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Opération interdite" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "La demande a été annulée car le certificat du serveur a été rejeté." + "ko": { + "stringUnit": { + "state": "translated", + "value": "작업이 금지됨" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "서버 인증서가 거부되어 요청이 취소되었습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Operation forbidden" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled because the server certificate was rejected." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Operation forbidden" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled because the server certificate was rejected." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Operation forbidden" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled because the server certificate was rejected." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Operação proibida" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled because the server certificate was rejected." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Операция запрещена" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled because the server certificate was rejected." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Veprim i ndaluar" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A solicitação foi cancelada porque o certificado do servidor foi rejeitado." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "หยุดการทำงาน" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled because the server certificate was rejected." + "tr": { + "stringUnit": { + "state": "translated", + "value": "İşlem yasak" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A solicitação foi cancelada porque o certificado do servidor foi rejeitado." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "操作被禁止" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Запрос был отменён, так как сертификат сервера был отклонён." + } + } + }, + "Origin Process": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Origin Process" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kërkesa u anulua, ngaqë dëshmi e shërbyesit u hodh poshtë." + "de": { + "stringUnit": { + "state": "translated", + "value": "Ursprungsprozess" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คำขอถูกยกเลิกเนื่องจากใบรับรองเซิร์ฟเวอร์ถูกปฏิเสธ" + "en": { + "stringUnit": { + "state": "translated", + "value": "Origin Process" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คำขอถูกยกเลิกเนื่องจากใบรับรองเซิร์ฟเวอร์ถูกปฏิเสธ" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Origin Process" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sunucu sertifikası reddedildiğinden ötürü istek iptal edildi." + "es": { + "stringUnit": { + "state": "translated", + "value": "Proceso de origen" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "由于服务器证书被拒绝,请求被取消" - } - } - } - }, - "Request was cancelled." : { - "comment" : "OCErrorRequestCancelled", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Origin Process" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Anfrage wurde abgebrochen." + "ko": { + "stringUnit": { + "state": "translated", + "value": "출처 처리" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Origin Process" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Processo de Origem " } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Origin Process" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La solicitud fue cancelada." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Proces Origjine" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "La demande a été annulée." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กระบวนการกำเนิด" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "요청이 취소되었습니다." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Menşe İşlemi" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Origin Process" + } + } + } + }, + "Origin Process Valid": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Origin Process Valid" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled." + "de": { + "stringUnit": { + "state": "translated", + "value": "Ursprungsprozess gültig" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled." + "en": { + "stringUnit": { + "state": "translated", + "value": "Origin Process Valid" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Origin Process Valid" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled." + "es": { + "stringUnit": { + "state": "translated", + "value": "Proceso de origen válido" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pedido cancelado." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Origin Process Valid" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was cancelled." + "ko": { + "stringUnit": { + "state": "translated", + "value": "출처 처리 유효" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pedido cancelado." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Origin Process Valid" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Запрос был отменён." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Processo de origem válido " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kërkesa u anulua." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Origin Process Valid" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คำขอถูกยกเลิก" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Proces Origjine i Vlefshëm" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คำขอถูกยกเลิก" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กระบวนการกำเนิดที่ถูกต้อง" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İstek iptal edildi." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Menşe İşlemi Geçerli" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "请求已取消。" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Origin Process Valid" } } } }, - "Request was dropped by the NSURLSession." : { - "comment" : "OCErrorRequestDroppedByURLSession", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was dropped by the NSURLSession." + "Origin URL": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Origin URL" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Anfrage wurde von der NSURLSession verworfen." + "de": { + "stringUnit": { + "state": "translated", + "value": "Ursprungs-URL" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was dropped by the NSURLSession." + "en": { + "stringUnit": { + "state": "translated", + "value": "Origin URL" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was dropped by the NSURLSession." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Origin URL" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was dropped by the NSURLSession." + "es": { + "stringUnit": { + "state": "translated", + "value": "URL de origen" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La solicitud fue retirada por NSURLSession." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Origin URL" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "La demande a été abandonnée par la NSURLSession." + "ko": { + "stringUnit": { + "state": "translated", + "value": "기존 URL" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "요청이 NSURL 세션에서 삭제되었습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Origin URL" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was dropped by the NSURLSession." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "URL de origem " } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was dropped by the NSURLSession." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Origin URL" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was dropped by the NSURLSession." + "sq": { + "stringUnit": { + "state": "translated", + "value": "URL Origjine" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was dropped by the NSURLSession." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "URL ต้นทาง" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was dropped by the NSURLSession." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kaynak URL" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A solicitação foi descartada pela NSURLSession." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Origin URL" } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was dropped by the NSURLSession." + } + } + }, + "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy.": { + "comment": "OCErrorItemPolicyMakesRedundant", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A solicitação foi descartada pela NSURLSession." + "de": { + "stringUnit": { + "state": "translated", + "value": "Andere gleichartige Richtlinien, die Teilmengen dieser Richtlinie abdecken, werden durch das Hinzufügen dieser Richtlinie überflüssig." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Запрос был отброшен NSURLSession." + "en": { + "stringUnit": { + "state": "translated", + "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kërkesa u hodh tej nga NSURLSession." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คำร้องขอถูกยกเลิกแล้วโดย NSURLSession" + "es": { + "stringUnit": { + "state": "translated", + "value": "Otras políticas de artículos del mismo tipo que cubren subconjuntos de esta política de artículos se vuelven redundantes por la adición de esta política de artículos." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คำร้องขอถูกยกเลิกแล้วโดย NSURLSession" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İstek NSURLSession tarafından iptal edildi." + "ko": { + "stringUnit": { + "state": "translated", + "value": "이 항목 정책의 하위 집합을 포함하는 동일한 종류의 다른 항목 정책은 이 항목 정책을 추가하면 중복됩니다." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was dropped by the NSURLSession." - } - } - } - }, - "Request was removed before scheduling." : { - "comment" : "OCErrorRequestRemovedBeforeScheduling", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was removed before scheduling." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Anfrage wurde vor der Ausführung entfernt." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Outras políticas de itens do mesmo tipo, cobrindo subconjuntos desta política de itens, tornam-se redundantes com a adição desta política de itens. " } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was removed before scheduling." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was removed before scheduling." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Të tjera rregulla objektesh të të njëjtit lloj, që përfshijnë nëngrupe të këtij rregulli objektesh, bëhen të përsëritur me shtimin e këtij rregulli objekti." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was removed before scheduling." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "นโยบายรายการซ้ำกับนโยบายมีอยู่แล้ว ทำให้ไม่สามารถเพิ่มนโยบาย" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Solicitud fue eliminada antes de la programación." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bu öge politikasının alt kümelerini kapsayan aynı türden diğer öge politikaları, bu öge politikasının eklenmesiyle gereksiz hale gelir." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "La demande a été supprimée avant la planification." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Other item policies of the same kind covering subsets of this item policy become redundant by the addition of this item policy." } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "예약하기 전에 요청이 제거되었습니다." + } + } + }, + "Overwrite modified file": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Overwrite modified file" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was removed before scheduling." + "de": { + "stringUnit": { + "state": "translated", + "value": "Überschreibe geänderte Datei" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was removed before scheduling." + "en": { + "stringUnit": { + "state": "translated", + "value": "Overwrite modified file" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was removed before scheduling." + "es": { + "stringUnit": { + "state": "translated", + "value": "Overwrite modified file" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was removed before scheduling." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Overwrite modified file" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was removed before scheduling." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Overwrite modified file" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A solicitação foi removida antes do agendamento." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Overwrite modified file" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was removed before scheduling." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Overwrite modified file" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A solicitação foi removida antes do agendamento." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Overwrite modified file" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Запрос был отменён до постановки на выполнение." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Overwrite modified file" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kërkesa u hoq para se të planifikohej." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Overwrite modified file" } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คำขอถูกลบออกก่อนกำหนดเวลา" + } + } + }, + "Password can't be converted to {{encoding}}.": { + "comment": "Password Policy", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Password can't be converted to {{encoding}}." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คำขอถูกลบออกก่อนกำหนดเวลา" + "de": { + "stringUnit": { + "state": "translated", + "value": "Passwort kann nicht als {{encoding}} kodiert werden." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İstek, iş planlanmadan önce silindi." + "en": { + "stringUnit": { + "state": "translated", + "value": "Password can't be converted to {{encoding}}." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Request was removed before scheduling." + "es": { + "stringUnit": { + "state": "translated", + "value": "Password can't be converted to {{encoding}}." } - } - } - }, - "Required value missing." : { - "comment" : "OCErrorRequiredValueMissing", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + }, + "fr": { + "stringUnit": { + "state": "translated", + "value": "Password can't be converted to {{encoding}}." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erforderlicher Wert fehlt." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Password can't be converted to {{encoding}}." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Password can't be converted to {{encoding}}." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Password can't be converted to {{encoding}}." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Password can't be converted to {{encoding}}." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Password can't be converted to {{encoding}}." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Password can't be converted to {{encoding}}." + } + } + } + }, + "Pending": { + "comment": "Sync Record Status", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Pending" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "de": { + "stringUnit": { + "state": "translated", + "value": "Ausstehend" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "en": { + "stringUnit": { + "state": "translated", + "value": "Pending" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Pending" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "es": { + "stringUnit": { + "state": "translated", + "value": "Pendiente" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Valor obrigatório ausente." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Pending" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "ko": { + "stringUnit": { + "state": "translated", + "value": "대기 중" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Valor obrigatório ausente." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Pending" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Pendente" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mungon vlerë e domosdoshme" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Pending" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Në pritje" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "อยู่ระหว่างดำเนินการ" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bekliyor" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Required value missing." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Pending" } } } }, - "Reschedule" : { - "comment" : "Reschedule a Sync Action ", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reschedule" + "Personal": { + "comment": "Drives", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Personal" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erneut ausführen" + "de": { + "stringUnit": { + "state": "translated", + "value": "Persönlich" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reschedule" + "en": { + "stringUnit": { + "state": "translated", + "value": "Personal" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reschedule" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Personal" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reschedule" + "es": { + "stringUnit": { + "state": "translated", + "value": "Personal" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reprogramar" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Personal" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reschedule" + "ko": { + "stringUnit": { + "state": "translated", + "value": "개인" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "재예약" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Personal" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reschedule" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Pessoal" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reschedule" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Personal" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reschedule" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Personale" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reprogramar " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ส่วนตัว" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reschedule" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kişisel" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reprogramar " + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Personal" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reschedule" + } + } + }, + "Please check if you have sufficient permissions to delete %@.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Please check if you have sufficient permissions to delete %@." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Riplanifikoje" + "de": { + "stringUnit": { + "state": "translated", + "value": "Bitte prüfen Sie, ob Sie ausreichend Berechtigungen besitzen, um %@ zu löschen." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำหนดเวลาใหม่" + "en": { + "stringUnit": { + "state": "translated", + "value": "Please check if you have sufficient permissions to delete %@." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำหนดเวลาใหม่" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Please check if you have sufficient permissions to delete %@." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yeniden planla" + "es": { + "stringUnit": { + "state": "translated", + "value": "Por favor compruebe si tiene suficientes permisos para eliminar %@." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reschedule" - } - } - } - }, - "Resolution of private link failed." : { - "comment" : "OCErrorPrivateLinkResolutionFailed", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resolution of private link failed." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Veuillez vérifier si vous disposez des autorisations suffisantes pour supprimer %@." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auflösung des privaten Links fehlgeschlagen." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@을(를) 삭제할 수 있는 권한이 있는지 확인하십시오" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resolution of private link failed." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Please check if you have sufficient permissions to delete %@." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resolution of private link failed." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Please check if you have sufficient permissions to delete %@." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resolution of private link failed." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Please check if you have sufficient permissions to delete %@." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Falló la resolución del enlace privado." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Por favor, verifique se você tem permissões suficientes para excluir %@." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resolution of private link failed." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Пожалуйста, проверьте что у вас есть достаточные права для удаления %@." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "개인 링크 확인에 실패함" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ju lutemi, kontrolloni nëse keni leje të mjaftueshme për të fshirë %@." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resolution of private link failed." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "โปรดตรวจสอบว่าคุณมีสิทธิ์เพียงพอที่จะลบ %@" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resolution of private link failed." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@ dosyasını silebilmek için erişim yetkisini kontrol edin." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resolution of private link failed." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "请检查你是否有足够权限删除 %@" } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A resolução do linque privado falhou. " + } + } + }, + "Populating database…": { + "comment": "Account prepopulation", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Populating database…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resolution of private link failed." + "de": { + "stringUnit": { + "state": "translated", + "value": "Befülle Datenbank…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A resolução do linque privado falhou. " + "en": { + "stringUnit": { + "state": "translated", + "value": "Populating database…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resolution of private link failed." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Populating database…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ftillimi i lidhjes private dështoi." + "es": { + "stringUnit": { + "state": "translated", + "value": "Populating database…" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การแก้ไขลิงก์ส่วนตัวล้มเหลว" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Populating database…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การแก้ไขลิงก์ส่วนตัวล้มเหลว" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Populating database…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Özel bağlantının çözümlenmesi başarısız oldu." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Populating database…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resolution of private link failed." - } - } - } - }, - "Resource does not exist." : { - "comment" : "OCErrorResourceDoesNotExist", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Preenchendo o banco de dados..." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ressource existiert nicht." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Populating database…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po popullohet baza e të dhënave…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Populating database…" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Populating database…" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Populating database…" } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + } + } + }, + "Previous token refresh attempts indicated an invalid refresh token.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Previous token refresh attempts indicated an invalid refresh token." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "de": { + "stringUnit": { + "state": "translated", + "value": "Frühere Token-Aktualisierungsversuche zeigten ein ungültiges Aktualisierungs-Token an." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "en": { + "stringUnit": { + "state": "translated", + "value": "Previous token refresh attempts indicated an invalid refresh token." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Previous token refresh attempts indicated an invalid refresh token." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "es": { + "stringUnit": { + "state": "translated", + "value": "Previous token refresh attempts indicated an invalid refresh token." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O recurso não existe." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Previous token refresh attempts indicated an invalid refresh token." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Previous token refresh attempts indicated an invalid refresh token." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O recurso não existe." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Previous token refresh attempts indicated an invalid refresh token." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Tentativas anteriores de atualização de token indicaram um token de atualização inválido." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Burimi s’ekziston." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Previous token refresh attempts indicated an invalid refresh token." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Përpjekje të mëparshme rifreskimi token-i treguan një token të pavlefshëm freskimi." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Previous token refresh attempts indicated an invalid refresh token." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Previous token refresh attempts indicated an invalid refresh token." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource does not exist." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Previous token refresh attempts indicated an invalid refresh_token." } } } }, - "Resource not found." : { - "comment" : "OCDAVErrorNotFoundOCErrorResourceNotFound", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource not found." + "Private link format invalid.": { + "comment": "OCErrorPrivateLinkInvalidFormat", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Private link format invalid." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ressource nicht gefunden." + "de": { + "stringUnit": { + "state": "translated", + "value": "Format des privaten Links ungültig." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource not found." + "en": { + "stringUnit": { + "state": "translated", + "value": "Private link format invalid." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource not found." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Private link format invalid." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource not found." + "es": { + "stringUnit": { + "state": "translated", + "value": "El formato de enlace privado no es válido." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recurso no encontrado." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Private link format invalid." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource not found." + "ko": { + "stringUnit": { + "state": "translated", + "value": "잘못된 개인 링크 형식" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "리소스를 찾을 수 없습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Private link format invalid." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource not found." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Formato de linque privado inválido. " } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource not found." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Private link format invalid." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource not found." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Format i pavlefshëm lidhjesh private." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recurso não encontrado. " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "รูปแบบลิงก์ส่วนตัวไม่ถูกต้อง" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource not found." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Özel bağlantı biçimi geçersiz." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recurso não encontrado. " + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Private link format invalid." } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource not found." + } + } + }, + "Proceed": { + "comment": "Issue resolution choice", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Proceed" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Burimi s’u gjet." + "de": { + "stringUnit": { + "state": "translated", + "value": "Fortfahren" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบทรัพยากร" + "en": { + "stringUnit": { + "state": "translated", + "value": "Proceed" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบทรัพยากร" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Proceed" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kaynak bulunamadı." + "es": { + "stringUnit": { + "state": "translated", + "value": "Proceder" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Resource not found." - } - } - } - }, - "Response was in an unknown format." : { - "comment" : "OCErrorResponseUnknownFormat", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Response was in an unknown format." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Exécuter" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Antwort hat ein unbekanntes Format." + "ko": { + "stringUnit": { + "state": "translated", + "value": "진행" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Response was in an unknown format." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Proceed" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Response was in an unknown format." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Proceed" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Response was in an unknown format." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Proceed" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La respuesta en formato desconocido." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Prosseguir" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "La réponse était dans un format inconnu." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Продолжить" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "알 수 없는 응답 형식입니다." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Bëje" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Response was in an unknown format." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ดำเนินการ" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Response was in an unknown format." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Devam et" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Response was in an unknown format." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "继续" } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Response was in an unknown format." + } + } + }, + "Process Sync Records": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Process Sync Records" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Response was in an unknown format." + "de": { + "stringUnit": { + "state": "translated", + "value": "Sync-Datensätze verarbeiten" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A resposta estava em um formato desconhecido." + "en": { + "stringUnit": { + "state": "translated", + "value": "Process Sync Records" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Response was in an unknown format." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Process Sync Records" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A resposta estava em um formato desconhecido." + "es": { + "stringUnit": { + "state": "translated", + "value": "Procesar registros de sincronización" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ответ был в неизвестном формате." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Process Sync Records" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Përgjigja qe në një format të panjohur." + "ko": { + "stringUnit": { + "state": "translated", + "value": "프로세스 동기화 기록" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "มีการตอบสนองในรูปแบบที่ไม่รู้จัก" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Process Sync Records" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "มีการตอบสนองในรูปแบบที่ไม่รู้จัก" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Registros de Sincronização de Processo " } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yanıt bilinmeyen bir dosya biçiminde." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Process Sync Records" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "响应的格式未知。" - } - } - } - }, - "Retrieving capabilities…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Process Sync Records" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Empfange Fähigkeiten…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ประมวลผลบันทึกการซิงค์" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "İşlem Senkronizasyonu Kayıtları" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Process Sync Records" + } + } + } + }, + "Public upload was disabled by the administrator.": { + "comment": "OCErrorSharePublicUploadDisabled", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Public upload was disabled by the administrator." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Das öffentliche Hochladen ist durch den Administrator/die Administratorin deaktiviert." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Public upload was disabled by the administrator." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Public upload was disabled by the administrator." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "es": { + "stringUnit": { + "state": "translated", + "value": "La subida pública ha sido deshabilitada por el administrador." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Public upload was disabled by the administrator." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "관리자에 의해 공개 업로드가 비활성화 되었습니다." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Public upload was disabled by the administrator." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O envio de arquivo público foi desativado pelo administrador." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Public upload was disabled by the administrator." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ngarkimi publik është çaktivizuar nga përgjegjësi." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การอัปโหลดสาธารณะถูกปิดใช้งานโดยผู้ดูแลระบบ" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Herkese açık yükleme, yönetici tarafından devre dışı bırakıldı." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving capabilities…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Public upload was disabled by the administrator." } } } }, - "Retrieving file list for %@…" : { - "comment" : "Retrieving file list", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving file list for %@…" + "Recipients can upload but existing contents are not revealed.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Recipients can upload but existing contents are not revealed." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dateiliste abrufen für %@…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Empfangende können hochladen, aber existierende Inhalte werden nicht angezeigt." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving file list for %@…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Recipients can upload but existing contents are not revealed." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving file list for %@…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Recipients can upload but existing contents are not revealed." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving file list for %@…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Recipients can upload but existing contents are not revealed." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recuperando lista de archivo para %@…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Recipients can upload but existing contents are not revealed." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Récupération de la liste des fichiers pour %@…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Recipients can upload but existing contents are not revealed." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@에 대한 파일 목록 검색 중... " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Recipients can upload but existing contents are not revealed." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving file list for %@…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Os destinatários podem fazer upload, mas os conteúdos existentes não são revelados." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving file list for %@…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Recipients can upload but existing contents are not revealed." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving file list for %@…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Marrësit mund të ngarkojnë, por lënda ekzistuese nuk shfaqet." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving file list for %@…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Recipients can upload but existing contents are not revealed." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving file list for %@…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Recipients can upload but existing contents are not revealed." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recuperando lista de arquivos para %@…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Recipients can upload but existing contents are not revealed." } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving file list for %@…" + } + } + }, + "Recipients can view and download contents.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view and download contents." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recuperando lista de arquivos para %@…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Empfangende können Inhalte sehen und herunterladen." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Получение списка файлов для %@…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view and download contents." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po merret listë kartelash për %@…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view and download contents." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังเรียกดูรายการไฟล์สำหรับ %@..." + "es": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view and download contents." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังเรียกดูรายการไฟล์สำหรับ %@..." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view and download contents." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@öğesinin dosya listesi alınıyor..." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view and download contents." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "正在获取文件列表 %@…" - } - } - } - }, - "Retrieving items for %@" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving items for %@" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view and download contents." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Abrufen von Elementen für %@" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Os destinatários podem visualizar e baixar o conteúdo." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving items for %@" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view and download contents." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving items for %@" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Marrësit mund të shohin dhe shkarkojnë lëndë." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving items for %@" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view and download contents." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recuperando elementos para %@" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view and download contents." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving items for %@" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view and download contents." + } + } + } + }, + "Recipients can view, download and edit contents.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and edit contents." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@에 대한 항목을 검색하는 중" + "de": { + "stringUnit": { + "state": "translated", + "value": "Empfangende können Inhalte einsehen, herunterladen und bearbeiten." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving items for %@" + "en": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and edit contents." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving items for %@" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and edit contents." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving items for %@" + "es": { + "stringUnit": { + "state": "translated", + "value": "Los recipientes pueden ver, descargar y editar el contenido." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recuperando itens para %@" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and edit contents." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving items for %@" + "ko": { + "stringUnit": { + "state": "translated", + "value": "받는 사람은 콘텐츠를 조회, 다운로드 및 편집할 수 있습니다." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Recuperando itens para %@" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and edit contents." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving items for %@" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Os destinatários podem visualizar, baixar e editar o conteúdo." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po merren objekte për %@" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and edit contents." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังดึงรายการสำหรับ %@" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Marrësit mund të shohin, shkarkojnë dhe përpunojnë lëndë." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังดึงรายการสำหรับ %@" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ผู้รับสามารถดู ดาวน์โหลด และแก้ไขเนื้อหา" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ için ögeler alınıyor" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Alıcılar içeriği görüntüleyebilir, indirebilir ve düzenleyebilir." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving items for %@" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and edit contents." } } } }, - "Retrieving metadata…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "Recipients can view, download and upload contents.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and upload contents." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Empfange Metadaten…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Empfangende können Inhalte sehen, herunterladen und hochladen." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and upload contents." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and upload contents." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Los recipientes pueden ver, descargar y subir el contenido." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and upload contents." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "받는 사람은 콘텐츠를 조회, 다운로드, 업로드할 수 있습니다." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and upload contents." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Os destinatários podem visualizar, baixar e fazer upload de conteúdo." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and upload contents." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Marrësit mund të shohin, shkarkojnë dhe ngarkojnë lëndë." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ผู้รับสามารถดู ดาวน์โหลด และอัปโหลดเนื้อหา" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Alıcılar içeriği görüntüleyebilir, indirebilir ve karşı tarafa yükleyebilir." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download and upload contents." + } + } + } + }, + "Recipients can view, download, edit, delete and upload contents.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download, edit, delete and upload contents." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Empfangende können Inhalte sehen, herunterladen, ändern, löschen und hochladen." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download, edit, delete and upload contents." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retrieving metadata…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download, edit, delete and upload contents." } - } - } - }, - "Retry" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retry" + }, + "es": { + "stringUnit": { + "state": "translated", + "value": "Destinatarios pueden ver, descargar, editar, borrar y subir contenido." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Erneut versuchen" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download, edit, delete and upload contents." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retry" + "ko": { + "stringUnit": { + "state": "translated", + "value": "받는 사람은 컨텐츠를 조회, 다운로드, 편집, 삭제, 업로드할 수 있습니다." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retry" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download, edit, delete and upload contents." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retry" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Os destinatários podem visualizar, baixar, editar, excluir e enviar conteúdos." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Reintentar" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download, edit, delete and upload contents." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retry" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Marrësit mund të shohin shkarkojnë, përpunojnë, fshijnë dhe ngarkojnë lëndë." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "다시 시도" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ผู้รับสามารถดู ดาวน์โหลด แก้ไข ลบและอัปโหลดเนื้อหา" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retry" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Alıcılar içerik görüntüleyebilir, düzenleyebilir, silebilir ve karşı tarafa yükleyebilir." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retry" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Recipients can view, download, edit, delete and upload contents." + } + } + } + }, + "Redirection": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Redirection" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retry" + "de": { + "stringUnit": { + "state": "translated", + "value": "Umleitung" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Repetir" + "en": { + "stringUnit": { + "state": "translated", + "value": "Redirection" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retry" + "es": { + "stringUnit": { + "state": "translated", + "value": "Redirection" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Repetir" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Redirection" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retry" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Redirection" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Riprovo" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Redirection" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลองใหม่อีกครั้ง" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Redirection" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ลองใหม่อีกครั้ง" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Redirection" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yeniden Dene" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Redirection" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Retry" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Redirection" } } } }, - "Running" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Running" + "Rejecting share…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Rejecting share…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "In Ausführung" + "de": { + "stringUnit": { + "state": "translated", + "value": "Weise Freigabe ab…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Running" + "en": { + "stringUnit": { + "state": "translated", + "value": "Rejecting share…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Running" + "es": { + "stringUnit": { + "state": "translated", + "value": "Rejecting share…" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Running" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Rejecting share…" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ejecutandose" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Rejecting share…" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Running" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Rejecting share…" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "실행 중" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Rejecting share…" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Running" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Rejecting share…" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Running" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Rejecting share…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Running" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Rejecting share…" } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Executando" + } + } + }, + "Remove Database Version": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Remove Database Version" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Running" + "de": { + "stringUnit": { + "state": "translated", + "value": "Datenbankversion entfernen" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Executando" + "en": { + "stringUnit": { + "state": "translated", + "value": "Remove Database Version" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Running" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Remove Database Version" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po xhiron" + "es": { + "stringUnit": { + "state": "translated", + "value": "Eliminar la versión de la base de datos" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังรัน" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Remove Database Version" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังรัน" + "ko": { + "stringUnit": { + "state": "translated", + "value": "데이터베이스 버전 삭제" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Çalışıyor" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Remove Database Version" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Running" - } - } - } - }, - "Scheduled folder scans" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Scheduled folder scans" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Remover Versão do Banco de Dados " } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Geplante Ordner-Scans" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Remove Database Version" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Scheduled folder scans" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Hiq Version Baze të Dhënash" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Scheduled folder scans" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ลบเวอร์ชันฐานข้อมูล" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Scheduled folder scans" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Veritabanı Sürümünü Kaldır" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Programar análisis de carpetas" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Remove Database Version" } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Scheduled folder scans" + } + } + }, + "Removed Items": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Removed Items" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "예약된 폴더 검사" + "de": { + "stringUnit": { + "state": "translated", + "value": "Entfernte Elemente" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Scheduled folder scans" + "en": { + "stringUnit": { + "state": "translated", + "value": "Removed Items" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Scheduled folder scans" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Removed Items" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Scheduled folder scans" + "es": { + "stringUnit": { + "state": "translated", + "value": "Artículos eliminados" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Verificações programadas de pasta" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Removed Items" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Scheduled folder scans" + "ko": { + "stringUnit": { + "state": "translated", + "value": "삭제된 항목" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Verificações programadas de pasta" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Removed Items" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Scheduled folder scans" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Itens Removidos " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kontrolle të planifikuar dosjesh" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Removed Items" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "สแกนโฟลเดอร์กำหนดการแล้ว" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Objekte të Hequr" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "สแกนโฟลเดอร์กำหนดการแล้ว" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "รายการถูกลบแล้ว" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Planlanan klasör taramaları" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kaldırılan Ögeler" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Scheduled folder scans" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Removed Items" } } } }, - "Server detection failed because of too many redirects." : { - "comment" : "OCErrorServerTooManyRedirects", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed because of too many redirects." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Servererkennung ist aufgrund von zu vielen Umleitungen fehlgeschlagen." + "Removing local copy of %@…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Removing local copy of %@…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed because of too many redirects." + "de": { + "stringUnit": { + "state": "translated", + "value": "Entferne lokale Kopie von %@…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed because of too many redirects." + "en": { + "stringUnit": { + "state": "translated", + "value": "Removing local copy of %@…" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed because of too many redirects." + "es": { + "stringUnit": { + "state": "translated", + "value": "Removing local copy of %@…" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La detección del servidor falló debido a demasiadas redirecciones." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Removing local copy of %@…" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "La détection du serveur a échoué en raison d'un trop grand nombre de redirections." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Removing local copy of %@…" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "너무 많은 리디렉션으로 서버 감지에 실패했습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Removing local copy of %@…" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed because of too many redirects." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Removing local copy of %@…" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed because of too many redirects." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Removing local copy of %@…" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed because of too many redirects." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Removing local copy of %@…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed because of too many redirects." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Removing local copy of %@…" } - }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed because of too many redirects." - } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A detecção do servidor falhou devido a muitos redirecionamentos." + } + } + }, + "Renaming %@ to %@…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Renaming %@ to %@…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed because of too many redirects." + "de": { + "stringUnit": { + "state": "translated", + "value": "%@ in %@ umbenennen…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A detecção do servidor falhou devido a muitos redirecionamentos." + "en": { + "stringUnit": { + "state": "translated", + "value": "Renaming %@ to %@…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Определение сервера не прошло из-за слишком большого количества перенаправлений." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Renaming %@ to %@…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zbulimi i shërbyesit dështoi për shkak të shumë ridrejtimeve." + "es": { + "stringUnit": { + "state": "translated", + "value": "Renombrando %@ por %@…" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเนื่องจากมีการเปลี่ยนเส้นทางมากเกินไป" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Renommer %@ en %@…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเนื่องจากมีการเปลี่ยนเส้นทางมากเกินไป" + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@에서 %@으로 이름 변경 중..." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Çok sayıda yönlendirme içeren bağlantı olduğundan sunucu algılama başarısız oldu." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Renaming %@ to %@…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "由于跳转次数过多,服务器检测失败。" - } - } - } - }, - "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." : { - "comment" : "OCErrorServerDetectionFailed", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Renaming %@ to %@…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Servererkennung ist fehlgeschlagen, was z.B. passiert, wenn der Server unter der URL keine ownCloud-Instanz ist." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Renaming %@ to %@…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Renomeando %@ para %@…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Переименование %@ в %@…" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po riemërtohet %@ si %@…" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La detección del servidor falló, p.e. cuando la dirección URL del servidor no contiene una instancia de ownCloud." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังเปลี่ยนชื่อ %@ เป็น %@..." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "La détection du serveur a échoué, c.-à-d lorsque le serveur d'une URL n'est pas une instance ownCloud." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@öğesi %@olarak isimlendiriliyor..." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "서버 감지에 실패했습니다. URL의 서버가 클라우드 인스턴스가 아닙니다." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "正在重命名 %@ 为 %@…" } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + } + } + }, + "Replace": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Replace" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "de": { + "stringUnit": { + "state": "translated", + "value": "Ersetzen" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "en": { + "stringUnit": { + "state": "translated", + "value": "Replace" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Replace" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "es": { + "stringUnit": { + "state": "translated", + "value": "Reemplazar" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A detecção do servidor falhou, ou seja, quando o servidor em uma URL não é uma instância do ownCloud." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Replace" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." + "ko": { + "stringUnit": { + "state": "translated", + "value": "바꾸기" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A detecção do servidor falhou, ou seja, quando o servidor em uma URL não é uma instância do ownCloud." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Replace" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Не прошло определение сервера, то есть сервер по ссылке не является экземпляром ownCloud." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Substituir " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zbulimi i shërbyesit dështoi, domethënë, kur shërbyesi te një URL s’është instancë ownCloud." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Replace" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเช่น เมื่อใช้ URL ของเซิร์ฟเวอร์ที่ไม่ใช่อินสแตนซ์ของ ownCloud" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Zëvendësoje" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเช่น เมื่อใช้ URL ของเซิร์ฟเวอร์ที่ไม่ใช่อินสแตนซ์ของ ownCloud" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "แทนที่" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sunucu algılama başarısız oldu, bu durum örneğin URL'deki sunucu ownCloud örneği olmadığında olduğu gibi." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yer değiştir" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "服务器检测失败,可能由于此 URL 上运行的不是 ownCloud 示例。" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Replace" } } } }, - "Server doesn't seem to support any authentication method supported by this app." : { - "comment" : "OCErrorServerNoSupportedAuthMethods", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server doesn't seem to support any authentication method supported by this app." + "Request completed with error.": { + "comment": "OCErrorRequestCompletedWithError", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Request completed with error." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Der Server scheint keine Authentifizierungsmethoden dieser Anwendung zu unterstützen." + "de": { + "stringUnit": { + "state": "translated", + "value": "Anfrage mit Fehler abgeschlossen." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server doesn't seem to support any authentication method supported by this app." + "en": { + "stringUnit": { + "state": "translated", + "value": "Request completed with error." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server doesn't seem to support any authentication method supported by this app." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Request completed with error." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server doesn't seem to support any authentication method supported by this app." + "es": { + "stringUnit": { + "state": "translated", + "value": "Solicitud completada con error." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "El servidor parece no dar soporte a ningún método de autenticación soportado por esta aplicación." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Demande terminée avec une erreur." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Le serveur ne semble supporter aucune méthode d'authentification prise en charge par cette application." + "ko": { + "stringUnit": { + "state": "translated", + "value": "요청이 오류와 함께 완료되었습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "서버가 이 앱에서 지원하는 인증 방법을 지원하지 않습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Request completed with error." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server doesn't seem to support any authentication method supported by this app." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Request completed with error." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server doesn't seem to support any authentication method supported by this app." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Request completed with error." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server doesn't seem to support any authentication method supported by this app." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Solicitação concluída com erro." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server doesn't seem to support any authentication method supported by this app." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Запрос завершился с ошибкой." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server doesn't seem to support any authentication method supported by this app." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kërkesa u plotësua me gabim." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O servidor não parece suportar nenhum método de autenticação suportado por este aplicativo." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "คำขอเสร็จสิ้นแต่มีข้อผิดพลาดเกิดขึ้น" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server doesn't seem to support any authentication method supported by this app." + "tr": { + "stringUnit": { + "state": "translated", + "value": "İstek bir hata ile sonlandı." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O servidor não parece suportar nenhum método de autenticação suportado por este aplicativo." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Request completed with error." } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Похоже, сервер не поддерживает ни один из методов аутентификации, которые поддерживает данное приложение." + } + } + }, + "Request couldn't be scheduled because the underlying URL session has been invalidated.": { + "comment": "OCErrorRequestURLSessionInvalidated", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shërbyesi nuk duket se mbulon ndonjë metodë mirëfilltësimi të mbuluar nga ky aplikacion." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Anforderung konnte nicht geplant werden, da die zugrundeliegende URL-Sitzung ungültig gemacht wurde." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์ดูเหมือนจะไม่รองรับวิธีการรับรองความถูกต้องใดๆ ที่แอปนี้สนับสนุน" + "en": { + "stringUnit": { + "state": "translated", + "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์ดูเหมือนจะไม่รองรับวิธีการรับรองความถูกต้องใดๆ ที่แอปนี้สนับสนุน" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sunucu, bu uygulamanın desteklediği hiç bir doğrulama yöntemini desteklemiyor." + "es": { + "stringUnit": { + "state": "translated", + "value": "La solicitud no se pudo programar porque la sesión de URL subyacente se ha invalidado." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "服务器不支持此应用支持的任何验证方式。" - } - } - } - }, - "Server down for maintenance" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance" + "fr": { + "stringUnit": { + "state": "translated", + "value": "La demande n'a pas pu être planifiée car la session URL sous-jacente a été invalidé." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server heruntergefahren für Wartungsarbeiten" + "ko": { + "stringUnit": { + "state": "translated", + "value": "기본 URL 세션이 무효화되었기 때문에 요청을 예약할 수 없습니다" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Servidor inactivo por mantenimiento" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A solicitação não pôde ser agendada porque a sessão de URL subjacente foi invalidada." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Serveur en cours de maintenance" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Не удалось поставить запрос на исполнение, так как нижележащий ссылочный сеанс был сброшен." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "유지보수를 위해 서버가 중단됨" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kërkesa s’u planifikua dot, ngaqë sesioni URL përkatës është bërë i pavlefshëm." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่สามารถกำหนดเวลาคำขอได้เนื่องจากเซสชัน URL พื้นฐานนั้นไม่ถูกต้อง" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Arkaplandaki URL oturumu geçersiz kılındığı için istek planlanamadı." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Request couldn't be scheduled because the underlying URL session has been invalidated." } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Servidor inativo para manutenção" + } + } + }, + "Request timed out": { + "comment": "OCErrorRequestTimeout", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Request timed out" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance" + "de": { + "stringUnit": { + "state": "translated", + "value": "Zeitüberschreitung bei der Anfrage" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Servidor inativo para manutenção" + "en": { + "stringUnit": { + "state": "translated", + "value": "Request timed out" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Сервер не работает, находится на обслуживании" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Request timed out" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shërbyesi jashtë funksionimi, për mirëmbajtje" + "es": { + "stringUnit": { + "state": "translated", + "value": "Tiempo de espera agotado" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Request timed out" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" + "ko": { + "stringUnit": { + "state": "translated", + "value": "요청 시간 초과됨" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bakım dolayısıyla sunucu kapalı" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Request timed out" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "服务器正在维护" - } - } - } - }, - "Server down for maintenance." : { - "comment" : "OCDAVErrorServiceUnavailable", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Solicitação expirou" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server heruntergefahren für Wartungsarbeiten." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Request timed out" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kërkesës i mbaroi koha" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การร้องขอหมดเวลา" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance." + "tr": { + "stringUnit": { + "state": "translated", + "value": "İstek zaman aşımına uğradı" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Servidor inactivo por mantenimiento." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Request timed out" } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Serveur indisponible pour maintenance." + } + } + }, + "Request was cancelled because the server certificate was rejected.": { + "comment": "OCErrorRequestServerCertificateRejected", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Request was cancelled because the server certificate was rejected." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "유지 관리를 위해 서버가 다운되었습니다." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Anfrage wurde storniert, weil das Serverzertifikat abgelehnt wurde." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance." + "en": { + "stringUnit": { + "state": "translated", + "value": "Request was cancelled because the server certificate was rejected." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Request was cancelled because the server certificate was rejected." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance." + "es": { + "stringUnit": { + "state": "translated", + "value": "La solicitud fue cancelada porque el certificado del servidor fue rechazado." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance." + "fr": { + "stringUnit": { + "state": "translated", + "value": "La demande a été annulée car le certificat du serveur a été rejeté." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance." + "ko": { + "stringUnit": { + "state": "translated", + "value": "서버 인증서가 거부되어 요청이 취소되었습니다." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Servidor desativado para manutenção." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Request was cancelled because the server certificate was rejected." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server down for maintenance." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Request was cancelled because the server certificate was rejected." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Servidor desativado para manutenção." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Request was cancelled because the server certificate was rejected." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Сервер не работает, находится на обслуживании." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A solicitação foi cancelada porque o certificado do servidor foi rejeitado." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shërbyes jashtë funksionimi, për mirëmbajtje" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Запрос был отменён, так как сертификат сервера был отклонён." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kërkesa u anulua, ngaqë dëshmi e shërbyesit u hodh poshtë." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "คำขอถูกยกเลิกเนื่องจากใบรับรองเซิร์ฟเวอร์ถูกปฏิเสธ" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bakım dolayısıyla sunucu kapalı." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sunucu sertifikası reddedildiğinden ötürü istek iptal edildi." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "服务器正在维护。" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "由于服务器证书被拒绝,请求被取消" } } } }, - "Server redirection to bad/invalid URL." : { - "comment" : "OCErrorServerBadRedirection", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server redirection to bad/invalid URL." + "Request was cancelled.": { + "comment": "OCErrorRequestCancelled", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Request was cancelled." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Serverumleitung auf schlechte/ungültige URL." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Anfrage wurde abgebrochen." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server redirection to bad/invalid URL." + "en": { + "stringUnit": { + "state": "translated", + "value": "Request was cancelled." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server redirection to bad/invalid URL." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Request was cancelled." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server redirection to bad/invalid URL." + "es": { + "stringUnit": { + "state": "translated", + "value": "La solicitud fue cancelada." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redireccionamiento del servidor a una URL incorrecta/inválida." + "fr": { + "stringUnit": { + "state": "translated", + "value": "La demande a été annulée." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirection du serveur vers une URL incorrecte / non valide." + "ko": { + "stringUnit": { + "state": "translated", + "value": "요청이 취소되었습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "잘못된 URL로 서버 리디렉션" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Request was cancelled." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server redirection to bad/invalid URL." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Request was cancelled." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server redirection to bad/invalid URL." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Request was cancelled." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server redirection to bad/invalid URL." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Pedido cancelado." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server redirection to bad/invalid URL." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Запрос был отменён." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server redirection to bad/invalid URL." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kërkesa u anulua." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirecionamento de servidor para URL errado/inválido." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "คำขอถูกยกเลิก" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server redirection to bad/invalid URL." + "tr": { + "stringUnit": { + "state": "translated", + "value": "İstek iptal edildi." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Redirecionamento de servidor para URL errado/inválido." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "请求已取消。" + } + } + } + }, + "Request was dropped by the NSURLSession.": { + "comment": "OCErrorRequestDroppedByURLSession", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Request was dropped by the NSURLSession." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Пенерапнавление сервера на плохую или недопустимую ссылку." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Anfrage wurde von der NSURLSession verworfen." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ridrejtim shërbyesi te URL e keqe/e pavlefshme." + "en": { + "stringUnit": { + "state": "translated", + "value": "Request was dropped by the NSURLSession." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์เปลี่ยนเส้นทางไปยัง URL ที่ไม่ถูกต้อง" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Request was dropped by the NSURLSession." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์เปลี่ยนเส้นทางไปยัง URL ที่ไม่ถูกต้อง" + "es": { + "stringUnit": { + "state": "translated", + "value": "La solicitud fue retirada por NSURLSession." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sunucu kötü/geçersiz bir yönlendirmesi içeriyor." + "fr": { + "stringUnit": { + "state": "translated", + "value": "La demande a été abandonnée par la NSURLSession." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "服务端跳转至非法或无效的 URL。" + "ko": { + "stringUnit": { + "state": "translated", + "value": "요청이 NSURL 세션에서 삭제되었습니다." } - } - } - }, - "Server returns status %ld" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server returns status %ld" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "Request was dropped by the NSURLSession." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server gibt Status %ld zurück " + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Request was dropped by the NSURLSession." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server returns status %ld" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Request was dropped by the NSURLSession." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server returns status %ld" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A solicitação foi descartada pela NSURLSession." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server returns status %ld" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Запрос был отброшен NSURLSession." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "El servidor devuelve el estado %ld" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kërkesa u hodh tej nga NSURLSession." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server returns status %ld" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "คำร้องขอถูกยกเลิกแล้วโดย NSURLSession" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "서버가 응답을 반환함: %ld" + "tr": { + "stringUnit": { + "state": "translated", + "value": "İstek NSURLSession tarafından iptal edildi." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server returns status %ld" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Request was dropped by the NSURLSession." + } + } + } + }, + "Request was removed before scheduling.": { + "comment": "OCErrorRequestRemovedBeforeScheduling", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Request was removed before scheduling." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server returns status %ld" + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Anfrage wurde vor der Ausführung entfernt." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server returns status %ld" + "en": { + "stringUnit": { + "state": "translated", + "value": "Request was removed before scheduling." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O servidor retorna ao status %ld" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Request was removed before scheduling." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server returns status %ld" + "es": { + "stringUnit": { + "state": "translated", + "value": "Solicitud fue eliminada antes de la programación." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O servidor retorna ao status %ld" + "fr": { + "stringUnit": { + "state": "translated", + "value": "La demande a été supprimée avant la planification." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server returns status %ld" + "ko": { + "stringUnit": { + "state": "translated", + "value": "예약하기 전에 요청이 제거되었습니다." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shërbyesi u përgjigj me gjendje %ld" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Request was removed before scheduling." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์ตอบกลับสถานะ %ld" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Request was removed before scheduling." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์ตอบกลับสถานะ %ld" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Request was removed before scheduling." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sunucu %ld durumunu döndürüyor" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A solicitação foi removida antes do agendamento." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server returns status %ld" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Запрос был отменён до постановки на выполнение." } - } - } - }, - "Server software %@ not supported." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + }, + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kërkesa u hoq para se të planifikohej." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ nicht unterstützt" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "คำขอถูกลบออกก่อนกำหนดเวลา" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "tr": { + "stringUnit": { + "state": "translated", + "value": "İstek, iş planlanmadan önce silindi." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Request was removed before scheduling." + } + } + } + }, + "Required value missing.": { + "comment": "OCErrorRequiredValueMissing", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Required value missing." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "de": { + "stringUnit": { + "state": "translated", + "value": "Erforderlicher Wert fehlt." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "en": { + "stringUnit": { + "state": "translated", + "value": "Required value missing." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Required value missing." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "es": { + "stringUnit": { + "state": "translated", + "value": "Required value missing." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Required value missing." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Required value missing." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Required value missing." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Valor obrigatório ausente." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Required value missing." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Mungon vlerë e domosdoshme" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Required value missing." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Required value missing." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Server software %@ not supported." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Required value missing." } } } }, - "Set detailed permissions" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "Reschedule": { + "comment": "Reschedule a Sync Action ", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Reschedule" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Detaillierte Rechte festlegen" + "de": { + "stringUnit": { + "state": "translated", + "value": "Erneut ausführen" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "en": { + "stringUnit": { + "state": "translated", + "value": "Reschedule" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Reschedule" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "es": { + "stringUnit": { + "state": "translated", + "value": "Reprogramar" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Reschedule" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "ko": { + "stringUnit": { + "state": "translated", + "value": "재예약" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Reschedule" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Reprogramar " } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Reschedule" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Riplanifikoje" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Definir permissões detalhadas" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำหนดเวลาใหม่" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yeniden planla" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Definir permissões detalhadas" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Reschedule" + } + } + } + }, + "Resolution of private link failed.": { + "comment": "OCErrorPrivateLinkResolutionFailed", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Resolution of private link failed." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "de": { + "stringUnit": { + "state": "translated", + "value": "Auflösung des privaten Links fehlgeschlagen." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Caktoni leje të hollësishme" + "en": { + "stringUnit": { + "state": "translated", + "value": "Resolution of private link failed." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Resolution of private link failed." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "es": { + "stringUnit": { + "state": "translated", + "value": "Falló la resolución del enlace privado." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Resolution of private link failed." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Set detailed permissions" + "ko": { + "stringUnit": { + "state": "translated", + "value": "개인 링크 확인에 실패함" } - } - } - }, - "Share not found." : { - "comment" : "OCErrorShareNotFound", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Share not found." + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "Resolution of private link failed." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Freigabe nicht gefunden." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A resolução do linque privado falhou. " } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Share not found." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Resolution of private link failed." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Share not found." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ftillimi i lidhjes private dështoi." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Share not found." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การแก้ไขลิงก์ส่วนตัวล้มเหลว" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Compatido NO encontrado" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Özel bağlantının çözümlenmesi başarısız oldu." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Share not found." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Resolution of private link failed." + } + } + } + }, + "Resource does not exist.": { + "comment": "OCErrorResourceDoesNotExist", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Resource does not exist." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "공유를 찾을 수 없음" + "de": { + "stringUnit": { + "state": "translated", + "value": "Ressource existiert nicht." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Share not found." + "en": { + "stringUnit": { + "state": "translated", + "value": "Resource does not exist." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Share not found." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Resource does not exist." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Share not found." + "es": { + "stringUnit": { + "state": "translated", + "value": "Resource does not exist." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Compartilhamento não encontrado." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Resource does not exist." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Share not found." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Resource does not exist." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Compartilhamento não encontrado." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Resource does not exist." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Share not found." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O recurso não existe." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "S’u gjet pjesë." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Resource does not exist." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบการแชร์" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Burimi s’ekziston." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบการแชร์" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Resource does not exist." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Paylaşım bulunamadı" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Resource does not exist." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Share not found." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Resource does not exist." } } } }, - "Shared with me" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "Resource not found.": { + "comment": "OCDAVErrorNotFoundOCErrorResourceNotFound", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Resource not found." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Mit mir geteilt" + "de": { + "stringUnit": { + "state": "translated", + "value": "Ressource nicht gefunden." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "en": { + "stringUnit": { + "state": "translated", + "value": "Resource not found." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Resource not found." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "es": { + "stringUnit": { + "state": "translated", + "value": "Recurso no encontrado." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Compartido conmigo" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Resource not found." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "ko": { + "stringUnit": { + "state": "translated", + "value": "리소스를 찾을 수 없습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Resource not found." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Recurso não encontrado. " } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Resource not found." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Burimi s’u gjet." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Compartilhou comigo" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่พบทรัพยากร" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kaynak bulunamadı." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Compartilhou comigo" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Resource not found." } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + } + } + }, + "Response was in an unknown format.": { + "comment": "OCErrorResponseUnknownFormat", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Response was in an unknown format." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ndarë me mua" + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Antwort hat ein unbekanntes Format." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "en": { + "stringUnit": { + "state": "translated", + "value": "Response was in an unknown format." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Response was in an unknown format." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Benimle paylaşılmış" + "es": { + "stringUnit": { + "state": "translated", + "value": "La respuesta en formato desconocido." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shared with me" + "fr": { + "stringUnit": { + "state": "translated", + "value": "La réponse était dans un format inconnu." } - } - } - }, - "Shares" : { - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares" + }, + "ko": { + "stringUnit": { + "state": "translated", + "value": "알 수 없는 응답 형식입니다." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Freigaben" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Response was in an unknown format." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Response was in an unknown format." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Response was in an unknown format." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A resposta estava em um formato desconhecido." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Compartidos" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Ответ был в неизвестном формате." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Përgjigja qe në një format të panjohur." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "공유" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "มีการตอบสนองในรูปแบบที่ไม่รู้จัก" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yanıt bilinmeyen bir dosya biçiminde." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "响应的格式未知。" + } + } + } + }, + "Retrieving capabilities…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Retrieving capabilities…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares" + "de": { + "stringUnit": { + "state": "translated", + "value": "Empfange Fähigkeiten…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Compartilhamentos" + "en": { + "stringUnit": { + "state": "translated", + "value": "Retrieving capabilities…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares" + "es": { + "stringUnit": { + "state": "translated", + "value": "Retrieving capabilities…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Compartilhamentos" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Retrieving capabilities…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Retrieving capabilities…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pjesë" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Retrieving capabilities…" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "แชร์" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Retrieving capabilities…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "แชร์" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Retrieving capabilities…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Paylaşımlar" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Retrieving capabilities…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Retrieving capabilities…" } } } }, - "Shares are unavailable." : { - "comment" : "OCErrorShareUnavailable", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares are unavailable." + "Retrieving file list for %@…": { + "comment": "Retrieving file list", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Retrieving file list for %@…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Freigaben nicht verfügbar." + "de": { + "stringUnit": { + "state": "translated", + "value": "Dateiliste abrufen für %@…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares are unavailable." + "en": { + "stringUnit": { + "state": "translated", + "value": "Retrieving file list for %@…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares are unavailable." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Retrieving file list for %@…" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares are unavailable." + "es": { + "stringUnit": { + "state": "translated", + "value": "Recuperando lista de archivo para %@…" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Compartidos No disponibles" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Récupération de la liste des fichiers pour %@…" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares are unavailable." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@에 대한 파일 목록 검색 중... " } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "공유할 수 없음" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Retrieving file list for %@…" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares are unavailable." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Retrieving file list for %@…" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares are unavailable." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Retrieving file list for %@…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares are unavailable." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Recuperando lista de arquivos para %@…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Os compartilhamentos não estão indisponíveis." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Получение списка файлов для %@…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares are unavailable." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po merret listë kartelash për %@…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Os compartilhamentos não estão indisponíveis." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังเรียกดูรายการไฟล์สำหรับ %@..." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares are unavailable." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@öğesinin dosya listesi alınıyor..." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Pjesët s’janë të passhme." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "正在获取文件列表 %@…" } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "แชร์ไม่พร้อมใช้งาน" + } + } + }, + "Retrieving items for %@": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Retrieving items for %@" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "แชร์ไม่พร้อมใช้งาน" + "de": { + "stringUnit": { + "state": "translated", + "value": "Abrufen von Elementen für %@" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Paylaşımlar kullanılabilir değil" + "en": { + "stringUnit": { + "state": "translated", + "value": "Retrieving items for %@" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shares are unavailable." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Retrieving items for %@" } - } - } - }, - "Sharing requires an active connection." : { - "comment" : "Sharing", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + }, + "es": { + "stringUnit": { + "state": "translated", + "value": "Recuperando elementos para %@" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Freigabe erfordert eine aktive Verbindung." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Retrieving items for %@" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "ko": { + "stringUnit": { + "state": "translated", + "value": "%@에 대한 항목을 검색하는 중" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Retrieving items for %@" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Recuperando itens para %@" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Compartir necesita una conexión activa." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Retrieving items for %@" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po merren objekte për %@" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังดึงรายการสำหรับ %@" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@ için ögeler alınıyor" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Retrieving items for %@" + } + } + } + }, + "Retrieving metadata…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Retrieving metadata…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "de": { + "stringUnit": { + "state": "translated", + "value": "Empfange Metadaten…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O compartilhamento requer uma conexão ativa." + "en": { + "stringUnit": { + "state": "translated", + "value": "Retrieving metadata…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "es": { + "stringUnit": { + "state": "translated", + "value": "Retrieving metadata…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O compartilhamento requer uma conexão ativa." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Retrieving metadata…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Retrieving metadata…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ndarja me të tjerë lyp një lidhje aktive" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Retrieving metadata…" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Retrieving metadata…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Retrieving metadata…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Paylaşım etkin bir bağlantı gerektirir." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Retrieving metadata…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sharing requires an active connection." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Retrieving metadata…" } } } }, - "special characters" : { - "comment" : "Password Policy", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sonderzeichen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "Retry": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Retry" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "de": { + "stringUnit": { + "state": "translated", + "value": "Erneut versuchen" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "en": { + "stringUnit": { + "state": "translated", + "value": "Retry" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Retry" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "es": { + "stringUnit": { + "state": "translated", + "value": "Reintentar" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Retry" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "ko": { + "stringUnit": { + "state": "translated", + "value": "다시 시도" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Retry" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Repetir" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Retry" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Riprovo" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ลองใหม่อีกครั้ง" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yeniden Dene" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "special characters" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Retry" } } } }, - "Standard error output" : { - "comment" : "Logging", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Standard error output" + "Running": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Running" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Standardfehlerausgabe" + "de": { + "stringUnit": { + "state": "translated", + "value": "In Ausführung" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Standard error output" + "en": { + "stringUnit": { + "state": "translated", + "value": "Running" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Standard error output" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Running" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Standard error output" + "es": { + "stringUnit": { + "state": "translated", + "value": "Ejecutandose" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Salida de error estándar" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Running" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sortie d'erreur standard" + "ko": { + "stringUnit": { + "state": "translated", + "value": "실행 중" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "표준 오류 출력" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Running" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Standard error output" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Executando" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Standard error output" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Running" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Standard error output" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po xhiron" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Standard error output" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังรัน" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Standard error output" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Çalışıyor" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Saída de erro padrão" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Running" + } + } + } + }, + "Scheduled folder scans": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Scheduled folder scans" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Standard error output" + "de": { + "stringUnit": { + "state": "translated", + "value": "Geplante Ordner-Scans" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Saída de erro padrão" + "en": { + "stringUnit": { + "state": "translated", + "value": "Scheduled folder scans" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Вывод на стандартную диагностику" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Scheduled folder scans" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Output standard gabimesh" + "es": { + "stringUnit": { + "state": "translated", + "value": "Programar análisis de carpetas" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ข้อมูลข้อผิดพลาดมาตรฐาน" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Scheduled folder scans" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ข้อมูลข้อผิดพลาดมาตรฐาน" + "ko": { + "stringUnit": { + "state": "translated", + "value": "예약된 폴더 검사" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Standart hata çıktısı" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Scheduled folder scans" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "标准错误输出" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Verificações programadas de pasta" } - } - } - }, - "State" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "State" + }, + "ru": { + "stringUnit": { + "state": "translated", + "value": "Scheduled folder scans" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Status" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kontrolle të planifikuar dosjesh" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "State" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "สแกนโฟลเดอร์กำหนดการแล้ว" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "State" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Planlanan klasör taramaları" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "State" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Scheduled folder scans" + } + } + } + }, + "Server detection failed because of too many redirects.": { + "comment": "OCErrorServerTooManyRedirects", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Server detection failed because of too many redirects." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Estado" + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Servererkennung ist aufgrund von zu vielen Umleitungen fehlgeschlagen." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "State" + "en": { + "stringUnit": { + "state": "translated", + "value": "Server detection failed because of too many redirects." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "상태" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Server detection failed because of too many redirects." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "State" + "es": { + "stringUnit": { + "state": "translated", + "value": "La detección del servidor falló debido a demasiadas redirecciones." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "State" + "fr": { + "stringUnit": { + "state": "translated", + "value": "La détection du serveur a échoué en raison d'un trop grand nombre de redirections." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "State" + "ko": { + "stringUnit": { + "state": "translated", + "value": "너무 많은 리디렉션으로 서버 감지에 실패했습니다." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Estado" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Server detection failed because of too many redirects." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "State" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Server detection failed because of too many redirects." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Estado" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Server detection failed because of too many redirects." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "State" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A detecção do servidor falhou devido a muitos redirecionamentos." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Gjendje" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Определение сервера не прошло из-за слишком большого количества перенаправлений." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "สถานะ" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Zbulimi i shërbyesit dështoi për shkak të shumë ridrejtimeve." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "สถานะ" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเนื่องจากมีการเปลี่ยนเส้นทางมากเกินไป" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Durum" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Çok sayıda yönlendirme içeren bağlantı olduğundan sunucu algılama başarısız oldu." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "State" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "由于跳转次数过多,服务器检测失败。" } } } }, - "Sync Record ID" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "Server detection failed, i.e. when the server at a URL is not an ownCloud instance.": { + "comment": "OCErrorServerDetectionFailed", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Datensatz-ID" + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Servererkennung ist fehlgeschlagen, was z.B. passiert, wenn der Server unter der URL keine ownCloud-Instanz ist." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "en": { + "stringUnit": { + "state": "translated", + "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "es": { + "stringUnit": { + "state": "translated", + "value": "La detección del servidor falló, p.e. cuando la dirección URL del servidor no contiene una instancia de ownCloud." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sincronizar ID de registro" + "fr": { + "stringUnit": { + "state": "translated", + "value": "La détection du serveur a échoué, c.-à-d lorsque le serveur d'une URL n'est pas une instance ownCloud." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "ko": { + "stringUnit": { + "state": "translated", + "value": "서버 감지에 실패했습니다. URL의 서버가 클라우드 인스턴스가 아닙니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "기록 ID 동기화" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Server detection failed, i.e. when the server at a URL is not an ownCloud instance." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A detecção do servidor falhou, ou seja, quando o servidor em uma URL não é uma instância do ownCloud." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID de registro de sincronização " + "ru": { + "stringUnit": { + "state": "translated", + "value": "Не прошло определение сервера, то есть сервер по ссылке не является экземпляром ownCloud." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Zbulimi i shërbyesit dështoi, domethënë, kur shërbyesi te një URL s’është instancë ownCloud." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "ID de registro de sincronização " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การตรวจหาเซิร์ฟเวอร์ล้มเหลวเช่น เมื่อใช้ URL ของเซิร์ฟเวอร์ที่ไม่ใช่อินสแตนซ์ของ ownCloud" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sunucu algılama başarısız oldu, bu durum örneğin URL'deki sunucu ownCloud örneği olmadığında olduğu gibi." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Njëkohëso ID Zëri" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "服务器检测失败,可能由于此 URL 上运行的不是 ownCloud 示例。" + } + } + } + }, + "Server doesn't seem to support any authentication method supported by this app.": { + "comment": "OCErrorServerNoSupportedAuthMethods", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Server doesn't seem to support any authentication method supported by this app." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "de": { + "stringUnit": { + "state": "translated", + "value": "Der Server scheint keine Authentifizierungsmethoden dieser Anwendung zu unterstützen." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "en": { + "stringUnit": { + "state": "translated", + "value": "Server doesn't seem to support any authentication method supported by this app." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Senkronize Kayıt ID" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Server doesn't seem to support any authentication method supported by this app." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sync Record ID" + "es": { + "stringUnit": { + "state": "translated", + "value": "El servidor parece no dar soporte a ningún método de autenticación soportado por esta aplicación." } - } - } - }, - "The action couldn't be performed on the targeted item because the client lacks permissions." : { - "comment" : "OCErrorItemInsufficientPermissions", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." + }, + "fr": { + "stringUnit": { + "state": "translated", + "value": "Le serveur ne semble supporter aucune méthode d'authentification prise en charge par cette application." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Aktion konnte am Zielelement nicht ausgeführt werden, da dem Client die Berechtigungen fehlen." + "ko": { + "stringUnit": { + "state": "translated", + "value": "서버가 이 앱에서 지원하는 인증 방법을 지원하지 않습니다." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Server doesn't seem to support any authentication method supported by this app." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Server doesn't seem to support any authentication method supported by this app." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Server doesn't seem to support any authentication method supported by this app." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La acción no se pudo realizar en el elemento de destino porque el cliente carece de permisos." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O servidor não parece suportar nenhum método de autenticação suportado por este aplicativo." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "L'action n'a pas pu être effectuée sur l'élément ciblé car le client ne dispose pas des autorisations." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Похоже, сервер не поддерживает ни один из методов аутентификации, которые поддерживает данное приложение." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "클라이언트에 권한이 없기 때문에 대상 항목에 대해 작업을 수행할 수 없습니다." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Shërbyesi nuk duket se mbulon ndonjë metodë mirëfilltësimi të mbuluar nga ky aplikacion." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เซิร์ฟเวอร์ดูเหมือนจะไม่รองรับวิธีการรับรองความถูกต้องใดๆ ที่แอปนี้สนับสนุน" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sunucu, bu uygulamanın desteklediği hiç bir doğrulama yöntemini desteklemiyor." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "服务器不支持此应用支持的任何验证方式。" + } + } + } + }, + "Server down for maintenance": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Server down for maintenance" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A ação não pôde ser executada no item de destino porque o cliente não tem permissões." + "de": { + "stringUnit": { + "state": "translated", + "value": "Server heruntergefahren für Wartungsarbeiten" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permissions." + "en": { + "stringUnit": { + "state": "translated", + "value": "Server down for maintenance" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A ação não pôde ser executada no item de destino porque o cliente não tem permissões." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Server down for maintenance" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Не удалось выполнить действие над указанным элементом, так как у клиента не хватает разрешений." + "es": { + "stringUnit": { + "state": "translated", + "value": "Servidor inactivo por mantenimiento" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Veprimi s’u krye dot mbi objektin e synuar, ngaqë klientit i mungojnë lejet." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Serveur en cours de maintenance" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไคลเอนต์ไม่มีสิทธิ์ดำเนินการกับรายการเป้าหมาย" + "ko": { + "stringUnit": { + "state": "translated", + "value": "유지보수를 위해 서버가 중단됨" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไคลเอนต์ไม่มีสิทธิ์ดำเนินการกับรายการเป้าหมาย" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Server down for maintenance" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İstemci tarafında izin yetersizliği olduğundan bu işlem hedefteki öge üzerinde uygulanamaz." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Servidor inativo para manutenção" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "由于客户端缺少权限,此操作无法在指定的项目上完成。" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Сервер не работает, находится на обслуживании" } - } - } - }, - "The action couldn't be performed on the targeted item because the client lacks permisssions." : { - "comment" : "OCErrorItemInsufficientPermissions", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + }, + "sq": { + "stringUnit": { + "state": "translated", + "value": "Shërbyesi jashtë funksionimi, për mirëmbajtje" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Aktion konnte für das Zielelement nicht ausgeführt werden, da dem Client die entsprechenden Berechtigungen fehlen." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bakım dolayısıyla sunucu kapalı" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "服务器正在维护" + } + } + } + }, + "Server down for maintenance.": { + "comment": "OCDAVErrorServiceUnavailable", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Server down for maintenance." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "de": { + "stringUnit": { + "state": "translated", + "value": "Server heruntergefahren für Wartungsarbeiten." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "en": { + "stringUnit": { + "state": "translated", + "value": "Server down for maintenance." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Server down for maintenance." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "es": { + "stringUnit": { + "state": "translated", + "value": "Servidor inactivo por mantenimiento." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Serveur indisponible pour maintenance." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "ko": { + "stringUnit": { + "state": "translated", + "value": "유지 관리를 위해 서버가 다운되었습니다." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Server down for maintenance." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Server down for maintenance." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Server down for maintenance." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Servidor desativado para manutenção." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Сервер не работает, находится на обслуживании." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Shërbyes jashtë funksionimi, për mirëmbajtje" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เซิร์ฟเวอร์กำลังอยู่ในช่วงปิดปรับปรุง" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bakım dolayısıyla sunucu kapalı." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "The action couldn't be performed on the targeted item because the client lacks permisssions." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "服务器正在维护。" } } } }, - "The certificate for %@ has previously been rejected by the user." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "Server redirection to bad/invalid URL.": { + "comment": "OCErrorServerBadRedirection", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Server redirection to bad/invalid URL." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Das Zertifikat für %@ wurde zuvor vom Benutzer abgelehnt." + "de": { + "stringUnit": { + "state": "translated", + "value": "Serverumleitung auf schlechte/ungültige URL." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "en": { + "stringUnit": { + "state": "translated", + "value": "Server redirection to bad/invalid URL." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Server redirection to bad/invalid URL." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "es": { + "stringUnit": { + "state": "translated", + "value": "Redireccionamiento del servidor a una URL incorrecta/inválida." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Redirection du serveur vers une URL incorrecte / non valide." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "ko": { + "stringUnit": { + "state": "translated", + "value": "잘못된 URL로 서버 리디렉션" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Server redirection to bad/invalid URL." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Server redirection to bad/invalid URL." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Server redirection to bad/invalid URL." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Redirecionamento de servidor para URL errado/inválido." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Пенерапнавление сервера на плохую или недопустимую ссылку." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ridrejtim shërbyesi te URL e keqe/e pavlefshme." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เซิร์ฟเวอร์เปลี่ยนเส้นทางไปยัง URL ที่ไม่ถูกต้อง" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sunucu kötü/geçersiz bir yönlendirmesi içeriyor." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %@ has previously been rejected by the user." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "服务端跳转至非法或无效的 URL。" } } } }, - "The certificate for %@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %@." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Das Zertifikat für %1$@ besteht die TLS-Validierung aber erfüllt nicht die Akzeptanzregeln zum Ersetzen des Zertifikats für %2$@." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "Server returns status %ld": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Server returns status %ld" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "de": { + "stringUnit": { + "state": "translated", + "value": "Server gibt Status %ld zurück " } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "en": { + "stringUnit": { + "state": "translated", + "value": "Server returns status %ld" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Server returns status %ld" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "es": { + "stringUnit": { + "state": "translated", + "value": "El servidor devuelve el estado %ld" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Server returns status %ld" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "ko": { + "stringUnit": { + "state": "translated", + "value": "서버가 응답을 반환함: %ld" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Server returns status %ld" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O servidor retorna ao status %ld" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Server returns status %ld" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Shërbyesi u përgjigj me gjendje %ld" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เซิร์ฟเวอร์ตอบกลับสถานะ %ld" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sunucu %ld durumunu döndürüyor" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Server returns status %ld" } } } }, - "The certificate is invalid or contains errors" : { - "comment" : "OCErrorCertificateInvalid", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate is invalid or contains errors" + "Server software %@ not supported.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Server software %@ not supported." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Das Zertifikat ist ungültig oder enthält Fehler" + "de": { + "stringUnit": { + "state": "translated", + "value": "Server software %@ nicht unterstützt" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate is invalid or contains errors" + "en": { + "stringUnit": { + "state": "translated", + "value": "Server software %@ not supported." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate is invalid or contains errors" + "es": { + "stringUnit": { + "state": "translated", + "value": "Server software %@ not supported." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate is invalid or contains errors" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Server software %@ not supported." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "El certificado es inválido o contiene errores" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Server software %@ not supported." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Le certificat n'est pas valide ou contient des erreurs" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Server software %@ not supported." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "인증서가 잘못되었거나 오류를 포함하고 있습니다." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Server software %@ not supported." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate is invalid or contains errors" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Server software %@ not supported." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate is invalid or contains errors" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Server software %@ not supported." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate is invalid or contains errors" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Server software %@ not supported." } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate is invalid or contains errors" + } + } + }, + "Set detailed permissions": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Set detailed permissions" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate is invalid or contains errors" + "de": { + "stringUnit": { + "state": "translated", + "value": "Detaillierte Rechte festlegen" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O certificado é inválido ou contém erros" + "en": { + "stringUnit": { + "state": "translated", + "value": "Set detailed permissions" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The certificate is invalid or contains errors" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Set detailed permissions" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O certificado é inválido ou contém erros" + "es": { + "stringUnit": { + "state": "translated", + "value": "Set detailed permissions" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Сертификат неверен или содержит ошибки." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Set detailed permissions" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Dëshmia është e pavlefshme ose përmban gabime" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Set detailed permissions" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ใบรับรองไม่ถูกต้องหรือมีข้อผิดพลาด" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Set detailed permissions" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ใบรับรองไม่ถูกต้องหรือมีข้อผิดพลาด" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Definir permissões detalhadas" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sertifika geçersiz ya da hatalar barındırmakta" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Set detailed permissions" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "证书无效或存在错误。" - } - } - } - }, - "The connection is redirected from %@ to %@." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Caktoni leje të hollësishme" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Verbindung wird von %1$@ nach %2$@ umgeleitet." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Set detailed permissions" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Set detailed permissions" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Set detailed permissions" + } + } + } + }, + "Share not found.": { + "comment": "OCErrorShareNotFound", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Share not found." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "de": { + "stringUnit": { + "state": "translated", + "value": "Freigabe nicht gefunden." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "en": { + "stringUnit": { + "state": "translated", + "value": "Share not found." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Share not found." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "es": { + "stringUnit": { + "state": "translated", + "value": "Compatido NO encontrado" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Share not found." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "ko": { + "stringUnit": { + "state": "translated", + "value": "공유를 찾을 수 없음" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Share not found." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Compartilhamento não encontrado." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Share not found." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "sq": { + "stringUnit": { + "state": "translated", + "value": "S’u gjet pjesë." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่พบการแชร์" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Paylaşım bulunamadı" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "The connection is redirected from %1$@ to %2$@." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Share not found." } } } }, - "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "Shared with me": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Shared with me" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Der Inhalt der Datei auf dem Server hat sich seit dem Start des Downloads geändert - oder die Datei ist auf dem Server nicht mehr verfügbar." + "de": { + "stringUnit": { + "state": "translated", + "value": "Mit mir geteilt" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "en": { + "stringUnit": { + "state": "translated", + "value": "Shared with me" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Shared with me" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "es": { + "stringUnit": { + "state": "translated", + "value": "Compartido conmigo" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "El contenido del archivo en el servidor ha cambiado desde que se inició la descarga, o el archivo ya no está disponible en el servidor." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Shared with me" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Shared with me" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "다운로드를 시작한 후 서버의 파일 내용이 변경되었거나 서버에서 파일을 더 이상 사용할 수 없습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Shared with me" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Compartilhou comigo" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Shared with me" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ndarë me mua" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O conteúdo do arquivo no servidor mudou desde o início da tarefa de baixar o arquivo - ou o arquivo não está mais disponível no servidor. " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Shared with me" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Benimle paylaşılmış" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O conteúdo do arquivo no servidor mudou desde o início da tarefa de baixar o arquivo - ou o arquivo não está mais disponível no servidor. " + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Shared with me" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." - } - }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lënda e kartelës te shërbyesi ka ndryshuar që nga fillimi i shkarkimit - ose kartela s’është më e passhme që prej shërbyesit." + } + } + }, + "Shares": { + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Shares" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เนื้อหาของไฟล์บนเซิร์ฟเวอร์มีการเปลี่ยนแปลงตั้งแต่เริ่มดาวน์โหลด - หรือไฟล์ไม่พร้อมใช้งานบนเซิร์ฟเวอร์อีกต่อไป" + "de": { + "stringUnit": { + "state": "translated", + "value": "Freigaben" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เนื้อหาของไฟล์บนเซิร์ฟเวอร์มีการเปลี่ยนแปลงตั้งแต่เริ่มดาวน์โหลด - หรือไฟล์ไม่พร้อมใช้งานบนเซิร์ฟเวอร์อีกต่อไป" + "en": { + "stringUnit": { + "state": "translated", + "value": "Shares" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İndirme başladığından beri sunucudaki dosyanın içeriği değişti - veya dosya artık sunucuda mevcut değil." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Shares" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." - } - } - } - }, - "The destination item has not been found." : { - "comment" : "OCErrorItemDestinationNotFound", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "es": { + "stringUnit": { + "state": "translated", + "value": "Compartidos" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Das Ziel-Element wurde nicht gefunden." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Shares" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "ko": { + "stringUnit": { + "state": "translated", + "value": "공유" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Shares" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Compartilhamentos" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "L'élément de destination n'a pas été trouvé." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Shares" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Pjesë" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "แชร์" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Paylaşımlar" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Shares" } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + } + } + }, + "Shares are unavailable.": { + "comment": "OCErrorShareUnavailable", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Shares are unavailable." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "de": { + "stringUnit": { + "state": "translated", + "value": "Freigaben nicht verfügbar." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "en": { + "stringUnit": { + "state": "translated", + "value": "Shares are unavailable." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Shares are unavailable." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Не найден целевой элемент." + "es": { + "stringUnit": { + "state": "translated", + "value": "Compartidos No disponibles" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Shares are unavailable." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "ko": { + "stringUnit": { + "state": "translated", + "value": "공유할 수 없음" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The destination item has not been found." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Shares are unavailable." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "未找到目标项目。" - } - } - } - }, - "The downloaded file's checksum does not match the checksum provided by the server." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The downloaded file's checksum does not match the checksum provided by the server." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Os compartilhamentos não estão indisponíveis." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Prüfsumme der heruntergeladenen Datei stimmt nicht mit der vom Server bereitgestellten Prüfsumme überein." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Shares are unavailable." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The downloaded file's checksum does not match the checksum provided by the server." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Pjesët s’janë të passhme." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The downloaded file's checksum does not match the checksum provided by the server." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "แชร์ไม่พร้อมใช้งาน" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The downloaded file's checksum does not match the checksum provided by the server." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Paylaşımlar kullanılabilir değil" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La suma de comprobación del archivo descargado no coincide con la suma de comprobación proporcionada por el servidor." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Shares are unavailable." } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The downloaded file's checksum does not match the checksum provided by the server." + } + } + }, + "Sharing requires an active connection.": { + "comment": "Sharing", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Sharing requires an active connection." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "다운로드한 파일의 체크섬이 서버에서 제공한 체크섬과 일치하지 않습니다." + "de": { + "stringUnit": { + "state": "translated", + "value": "Freigabe erfordert eine aktive Verbindung." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The downloaded file's checksum does not match the checksum provided by the server." + "en": { + "stringUnit": { + "state": "translated", + "value": "Sharing requires an active connection." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The downloaded file's checksum does not match the checksum provided by the server." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Sharing requires an active connection." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The downloaded file's checksum does not match the checksum provided by the server." + "es": { + "stringUnit": { + "state": "translated", + "value": "Compartir necesita una conexión activa." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A soma de verificação do arquivo baixado não corresponde à soma de verificação fornecida pelo servidor. " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Sharing requires an active connection." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The downloaded file's checksum does not match the checksum provided by the server." + "ko": { + "stringUnit": { + "state": "translated", + "value": "Sharing requires an active connection." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A soma de verificação do arquivo baixado não corresponde à soma de verificação fornecida pelo servidor. " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Sharing requires an active connection." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "The downloaded file's checksum does not match the checksum provided by the server." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O compartilhamento requer uma conexão ativa." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Checksum-i i kartelës së shkarkuar nuk përputhet me checksum-in e dhënë nga shërbyesi." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Sharing requires an active connection." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบทรัพยากร" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ndarja me të tjerë lyp një lidhje aktive" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบทรัพยากร" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Sharing requires an active connection." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İndirilen dosyanın sağlama toplamı, sunucu tarafından sağlanan sağlama toplamı ile eşleşmiyor." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Paylaşım etkin bir bağlantı gerektirir." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "The downloaded file's checksum does not match the checksum provided by the server." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Sharing requires an active connection." } } } }, - "The file no longer exists on the server in this location." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die Datei existiert auf dem Server nicht mehr an diesem Ort." + "Standard error output": { + "comment": "Logging", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Standard error output" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "de": { + "stringUnit": { + "state": "translated", + "value": "Standardfehlerausgabe" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "en": { + "stringUnit": { + "state": "translated", + "value": "Standard error output" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Standard error output" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "es": { + "stringUnit": { + "state": "translated", + "value": "Salida de error estándar" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Sortie d'erreur standard" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "ko": { + "stringUnit": { + "state": "translated", + "value": "표준 오류 출력" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Standard error output" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Standard error output" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Standard error output" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Saída de erro padrão" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Вывод на стандартную диагностику" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Output standard gabimesh" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ข้อมูลข้อผิดพลาดมาตรฐาน" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Standart hata çıktısı" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "The file no longer exists on the server in this location." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "标准错误输出" } } } }, - "The logged in user is not matching the required user ID." : { - "comment" : "OCErrorAuthorizationNotMatchingRequiredUserID", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The logged in user is not matching the required user ID." + "State": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "State" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Der angemeldete Benutzer stimmt nicht mit der erforderlichen Benutzer-ID überein." + "de": { + "stringUnit": { + "state": "translated", + "value": "Status" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The logged in user is not matching the required user ID." + "en": { + "stringUnit": { + "state": "translated", + "value": "State" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The logged in user is not matching the required user ID." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "State" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The logged in user is not matching the required user ID." + "es": { + "stringUnit": { + "state": "translated", + "value": "Estado" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "El usuario que inició sesión no coincide con el ID de usuario requerido." + "fr": { + "stringUnit": { + "state": "translated", + "value": "State" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The logged in user is not matching the required user ID." + "ko": { + "stringUnit": { + "state": "translated", + "value": "상태" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "로그인한 사용자가 요구된 사용자 ID와 일치하지 않습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "State" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The logged in user is not matching the required user ID." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Estado" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The logged in user is not matching the required user ID." + "ru": { + "stringUnit": { + "state": "translated", + "value": "State" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The logged in user is not matching the required user ID." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Gjendje" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O usuário conectado não corresponde ao ID de usuário necessário. " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "สถานะ" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The logged in user is not matching the required user ID." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Durum" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O usuário conectado não corresponde ao ID de usuário necessário. " + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "State" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "The logged in user is not matching the required user ID." + } + } + }, + "Sync Record ID": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Sync Record ID" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Përdoruesi i futur nuk përputhet me ID-në e kërkuar të përdoruesit." + "de": { + "stringUnit": { + "state": "translated", + "value": "Sync Datensatz-ID" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ผู้ใช้ที่ล็อกอินไม่ตรงกับ ID ผู้ใช้ที่ต้องการ" + "en": { + "stringUnit": { + "state": "translated", + "value": "Sync Record ID" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ผู้ใช้ที่ล็อกอินไม่ตรงกับ ID ผู้ใช้ที่ต้องการ" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Sync Record ID" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Oturum açan kullanıcı, gerekli kullanıcı kimliğiyle eşleşmiyor." + "es": { + "stringUnit": { + "state": "translated", + "value": "Sincronizar ID de registro" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "The logged in user is not matching the required user ID." - } - } - } - }, - "The operation on the targeted item is not allowed." : { - "comment" : "OCErrorItemOperationForbidden", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation on the targeted item is not allowed." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Sync Record ID" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Der Vorgang am Zielelement ist nicht erlaubt." + "ko": { + "stringUnit": { + "state": "translated", + "value": "기록 ID 동기화" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation on the targeted item is not allowed." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Sync Record ID" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation on the targeted item is not allowed." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "ID de registro de sincronização " } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation on the targeted item is not allowed." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Sync Record ID" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La operación en el artículo apuntado no está permitida." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Njëkohëso ID Zëri" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "L'opération sur l'élément ciblé n'est pas autorisée." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Sync Record ID" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "대상 항목에 대한 작업이 허용되지 않습니다." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Senkronize Kayıt ID" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation on the targeted item is not allowed." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Sync Record ID" + } + } + } + }, + "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation on the targeted item is not allowed." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die von Ihnen angegebene URL verwendet das HTTP- und nicht das HTTPS-Schema, sodass Ihre Kommunikation nicht verschlüsselt wäre." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation on the targeted item is not allowed." + "en": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation on the targeted item is not allowed." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation on the targeted item is not allowed." + "es": { + "stringUnit": { + "state": "translated", + "value": "La URL usa HTTP en lugar de HTTPS. Si Vd. continua, la comunicación no será encriptada." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A operação no item de destino não é permitida." + "fr": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation on the targeted item is not allowed." + "ko": { + "stringUnit": { + "state": "translated", + "value": "제공한 URL은 HTTPS 구성표 대신 HTTP를 사용하므로, 통신이 암호화되지 않습니다." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A operação no item de destino não é permitida." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Операция над указанным элементом не разрешена." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O URL que você forneceu usa o esquema HTTP, e não o HTTPS, logo sua comunicação não será criptografada." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Veprimi s’është i lejueshëm mbi objektin e synuar." + "ru": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่อนุญาตให้ดำเนินการกับรายการเป้าหมาย" + "sq": { + "stringUnit": { + "state": "translated", + "value": "URL-ja që dhatë përdor HTTP, në vend se skemën HTTPS, ndaj komunikimi juaj s’do të jetë i fshehtëzuar." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่อนุญาตให้ดำเนินการกับรายการเป้าหมาย" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "คถุณกำลังใช้งาน URL HTTP แทนที่จะเป็นรูปแบบ HTTPS ดังนั้นการสื่อสารของคุณจะไม่ถูกเข้ารหัส" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Hedeflenen öğe üzerinde işleme izin verilmiyor." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sağladığınız URL, HTTPS şeması yerine HTTP kullanır, bu nedenle iletişiminiz şifrelenmez." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "不允许在指定的项目上进行操作。" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." } } } }, - "The operation was cancelled." : { - "comment" : "OCErrorCancelled", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation was cancelled." + "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Der Vorgang wurde abgebrochen." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die von Ihnen angegebene URL verwendet das HTTP- und nicht das HTTPS-Schema. Wenn Sie fortfahren, wird Ihre Kommunikation nicht verschlüsselt." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation was cancelled." + "en": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation was cancelled." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation was cancelled." + "es": { + "stringUnit": { + "state": "translated", + "value": "La URL usa HTTP en lugar de HTTPS. Si Vd. continua, la comunicación no será encriptada." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La operación fue cancelada." + "fr": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "L'opération a été annulée." + "ko": { + "stringUnit": { + "state": "translated", + "value": "제공한 URL은 HTTPS 구성표 대신 HTTP를 사용합니다. 계속하면 통신이 암호화되지 않습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "작업이 취소되었습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation was cancelled." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O URL fornecido por você usa o HTTP em vez do esquema HTTPS. Se você continuar, sua comunicação não será criptografada." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation was cancelled." + "ru": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation was cancelled." + "sq": { + "stringUnit": { + "state": "translated", + "value": "URL-ja që dhatë përdor HTTP, në vend se skemën HTTPS. Nëse vazhdoni, komunikimi juaj s’do të jetë i fshehtëzuar." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation was cancelled." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "URL ที่คุณระบุใช้โปรโตคอล HTTP หากคุณดำเนินการต่อการสื่อสารของคุณจะไม่ถูกเข้ารหัส (แนะนำให้ใช้ HTTPS แทน)" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation was cancelled." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sağladığınız URL, HTTPS şeması yerine HTTP'yi kullanır. Devam ederseniz, iletişiminiz şifrelenmeyecektir." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A operação foi cancelada." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." } - }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The operation was cancelled." + } + } + }, + "The action couldn't be performed on the targeted item because the client lacks permissions.": { + "comment": "OCErrorItemInsufficientPermissions", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permissions." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A operação foi cancelada." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Aktion konnte am Zielelement nicht ausgeführt werden, da dem Client die Berechtigungen fehlen." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Операция была отменена." + "en": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permissions." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Veprimi u anulua." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permissions." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การดำเนินการถูกยกเลิก" + "es": { + "stringUnit": { + "state": "translated", + "value": "La acción no se pudo realizar en el elemento de destino porque el cliente carece de permisos." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "การดำเนินการถูกยกเลิก" + "fr": { + "stringUnit": { + "state": "translated", + "value": "L'action n'a pas pu être effectuée sur l'élément ciblé car le client ne dispose pas des autorisations." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "İşlem iptal edildi." + "ko": { + "stringUnit": { + "state": "translated", + "value": "클라이언트에 권한이 없기 때문에 대상 항목에 대해 작업을 수행할 수 없습니다." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "该操作已取消。" - } - } - } - }, - "The provided path is not normalized." : { - "comment" : "OCErrorUnnormalizedPath", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The provided path is not normalized." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permissions." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Der angegebene Pfad ist nicht normalisiert." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A ação não pôde ser executada no item de destino porque o cliente não tem permissões." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The provided path is not normalized." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Не удалось выполнить действие над указанным элементом, так как у клиента не хватает разрешений." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The provided path is not normalised." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Veprimi s’u krye dot mbi objektin e synuar, ngaqë klientit i mungojnë lejet." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The provided path is not normalised." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไคลเอนต์ไม่มีสิทธิ์ดำเนินการกับรายการเป้าหมาย" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La ruta proporcionada no está normalizada." + "tr": { + "stringUnit": { + "state": "translated", + "value": "İstemci tarafında izin yetersizliği olduğundan bu işlem hedefteki öge üzerinde uygulanamaz." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The provided path is not normalized." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "由于客户端缺少权限,此操作无法在指定的项目上完成。" } - }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "제공된 경로가 정규화되지 않았습니다." + } + } + }, + "The action couldn't be performed on the targeted item because the client lacks permisssions.": { + "comment": "OCErrorItemInsufficientPermissions", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The provided path is not normalized." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Aktion konnte für das Zielelement nicht ausgeführt werden, da dem Client die entsprechenden Berechtigungen fehlen." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The provided path is not normalized." + "en": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The provided path is not normalized." + "es": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O caminho fornecido não está normalizado. " + "fr": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The provided path is not normalized." + "ko": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O caminho fornecido não está normalizado. " + "mk": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "The provided path is not normalized." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Shtegu i dhënë s’është i normalizuar." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Path ที่ระบุไม่ได้ทำให้เป็นค่าปกติ" + "ru": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Path ที่ระบุไม่ได้ทำให้เป็นค่าปกติ" + "sq": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sağlanan yol normalleştirilmedi." + "tr": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "The provided path is not normalized." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "The action couldn't be performed on the targeted item because the client lacks permisssions." } } } }, - "The target directory %@ doesn't seem to exist." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target directory %@ doesn't seem to exist." + "The certificate for %@ has previously been rejected by the user.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %@ has previously been rejected by the user." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Das Zielverzeichnis %@ scheint nicht zu existieren." + "de": { + "stringUnit": { + "state": "translated", + "value": "Das Zertifikat für %@ wurde zuvor vom Benutzer abgelehnt." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target directory %@ doesn't seem to exist." + "en": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %@ has previously been rejected by the user." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target directory %@ doesn't seem to exist." + "es": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %@ has previously been rejected by the user." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target directory %@ doesn't seem to exist." + "fr": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %@ has previously been rejected by the user." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Parece que no existe el directorio destino %@." + "ko": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %@ has previously been rejected by the user." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Le répertoire cible %@ ne semble pas exister." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %@ has previously been rejected by the user." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "대상 디렉터리 %@이(가) 존재하지 않습니다." + "ru": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %@ has previously been rejected by the user." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target directory %@ doesn't seem to exist." + "sq": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %@ has previously been rejected by the user." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target directory %@ doesn't seem to exist." + "tr": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %@ has previously been rejected by the user." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target directory %@ doesn't seem to exist." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %@ has previously been rejected by the user." } - }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target directory %@ doesn't seem to exist." + } + } + }, + "The certificate for %@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %@.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target directory %@ doesn't seem to exist." + "de": { + "stringUnit": { + "state": "translated", + "value": "Das Zertifikat für %1$@ besteht die TLS-Validierung aber erfüllt nicht die Akzeptanzregeln zum Ersetzen des Zertifikats für %2$@." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O diretório de destino %@ parece não existir." + "en": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target directory %@ doesn't seem to exist." + "es": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O diretório de destino %@ parece não existir." + "fr": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Похоже, целевой каталог %@ не существует." + "ko": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Drejtoria objektiv %@ s’duket se ekziston." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบไดเร็กทอรี %@" + "ru": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบไดเร็กทอรี %@" + "sq": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Hedef klasörü %@ bulunamadı." + "tr": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "目标目录 %@ 似乎不存在。" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "The certificate for %1$@ passes TLS validation but doesn't pass the acceptance rule to replace the certificate for %2$@." } } } }, - "The target location has not been found." : { - "comment" : "OCErrorItemDestinationNotFound", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "The certificate is invalid or contains errors": { + "comment": "OCErrorCertificateInvalid", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The certificate is invalid or contains errors" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Das Ziel wurde nicht gefunden." + "de": { + "stringUnit": { + "state": "translated", + "value": "Das Zertifikat ist ungültig oder enthält Fehler" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "en": { + "stringUnit": { + "state": "translated", + "value": "The certificate is invalid or contains errors" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The certificate is invalid or contains errors" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "es": { + "stringUnit": { + "state": "translated", + "value": "El certificado es inválido o contiene errores" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Le certificat n'est pas valide ou contient des erreurs" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "ko": { + "stringUnit": { + "state": "translated", + "value": "인증서가 잘못되었거나 오류를 포함하고 있습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The certificate is invalid or contains errors" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "The certificate is invalid or contains errors" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "The certificate is invalid or contains errors" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O certificado é inválido ou contém erros" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O local de destino não foi encontrado." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Сертификат неверен или содержит ошибки." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Dëshmia është e pavlefshme ose përmban gabime" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O local de destino não foi encontrado." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ใบรับรองไม่ถูกต้องหรือมีข้อผิดพลาด" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sertifika geçersiz ya da hatalar barındırmakta" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vendndodhja e synuar nuk u gjet." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "证书无效或存在错误。" + } + } + } + }, + "The connection is redirected from %@ to %@.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The connection is redirected from %1$@ to %2$@." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Verbindung wird von %1$@ nach %2$@ umgeleitet." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "en": { + "stringUnit": { + "state": "translated", + "value": "The connection is redirected from %1$@ to %2$@." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "es": { + "stringUnit": { + "state": "translated", + "value": "The connection is redirected from %1$@ to %2$@." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "The target location has not been found." + "fr": { + "stringUnit": { + "state": "translated", + "value": "The connection is redirected from %1$@ to %2$@." } - } - } - }, - "The targeted item has changed." : { - "comment" : "OCErrorItemChanged", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has changed." + }, + "ko": { + "stringUnit": { + "state": "translated", + "value": "The connection is redirected from %1$@ to %2$@." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Das Zielelement hat sich geändert." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The connection is redirected from %1$@ to %2$@." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has changed." + "ru": { + "stringUnit": { + "state": "translated", + "value": "The connection is redirected from %1$@ to %2$@." + } + }, + "sq": { + "stringUnit": { + "state": "translated", + "value": "The connection is redirected from %1$@ to %2$@." + } + }, + "tr": { + "stringUnit": { + "state": "translated", + "value": "The connection is redirected from %1$@ to %2$@." + } + }, + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "The connection is redirected from %1$@ to %2$@." + } + } + } + }, + "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has changed." + "de": { + "stringUnit": { + "state": "translated", + "value": "Der Inhalt der Datei auf dem Server hat sich seit dem Start des Downloads geändert - oder die Datei ist auf dem Server nicht mehr verfügbar." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has changed." + "en": { + "stringUnit": { + "state": "translated", + "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "El elemento de destino ha cambiado." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "L'élément ciblé a changé." + "es": { + "stringUnit": { + "state": "translated", + "value": "El contenido del archivo en el servidor ha cambiado desde que se inició la descarga, o el archivo ya no está disponible en el servidor." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "대상 항목이 변경되었습니다." + "fr": { + "stringUnit": { + "state": "translated", + "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has changed." + "ko": { + "stringUnit": { + "state": "translated", + "value": "다운로드를 시작한 후 서버의 파일 내용이 변경되었거나 서버에서 파일을 더 이상 사용할 수 없습니다." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has changed." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has changed." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O conteúdo do arquivo no servidor mudou desde o início da tarefa de baixar o arquivo - ou o arquivo não está mais disponível no servidor. " } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has changed." + "ru": { + "stringUnit": { + "state": "translated", + "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has changed." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Lënda e kartelës te shërbyesi ka ndryshuar që nga fillimi i shkarkimit - ose kartela s’është më e passhme që prej shërbyesit." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O item referenciadoado foi alterado." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เนื้อหาของไฟล์บนเซิร์ฟเวอร์มีการเปลี่ยนแปลงตั้งแต่เริ่มดาวน์โหลด - หรือไฟล์ไม่พร้อมใช้งานบนเซิร์ฟเวอร์อีกต่อไป" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has changed." + "tr": { + "stringUnit": { + "state": "translated", + "value": "İndirme başladığından beri sunucudaki dosyanın içeriği değişti - veya dosya artık sunucuda mevcut değil." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O item referenciadoado foi alterado." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "The contents of the file on the server has changed since initiating download - or the file is no longer available on the server." } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Указанный элемент изменился." + } + } + }, + "The destination item has not been found.": { + "comment": "OCErrorItemDestinationNotFound", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The destination item has not been found." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Objekti i synuar ka ndryshuar." + "de": { + "stringUnit": { + "state": "translated", + "value": "Das Ziel-Element wurde nicht gefunden." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รายการเป้าหมายมีการเปลี่ยนแปลง" + "en": { + "stringUnit": { + "state": "translated", + "value": "The destination item has not been found." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รายการเป้าหมายมีการเปลี่ยนแปลง" + "es": { + "stringUnit": { + "state": "translated", + "value": "The destination item has not been found." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Seçili öge değiştirildi." + "fr": { + "stringUnit": { + "state": "translated", + "value": "L'élément de destination n'a pas été trouvé." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "目标项目已被更改。" - } - } - } - }, - "The targeted item has not been found." : { - "comment" : "OCErrorItemNotFound", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has not been found." + "ko": { + "stringUnit": { + "state": "translated", + "value": "The destination item has not been found." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Das Zielelement wurde nicht gefunden." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The destination item has not been found." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has not been found." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "The destination item has not been found." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has not been found." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "The destination item has not been found." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has not been found." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Не найден целевой элемент." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "El elemento apuntado no ha sido encontrado." + "sq": { + "stringUnit": { + "state": "translated", + "value": "The destination item has not been found." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "L'élément ciblé n'a pas été trouvé." + "tr": { + "stringUnit": { + "state": "translated", + "value": "The destination item has not been found." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "대상 항목을 찾을 수 없습니다." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "未找到目标项目。" } - }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has not been found." + } + } + }, + "The downloaded file's checksum does not match the checksum provided by the server.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The downloaded file's checksum does not match the checksum provided by the server." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has not been found." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Prüfsumme der heruntergeladenen Datei stimmt nicht mit der vom Server bereitgestellten Prüfsumme überein." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has not been found." + "en": { + "stringUnit": { + "state": "translated", + "value": "The downloaded file's checksum does not match the checksum provided by the server." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has not been found." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The downloaded file's checksum does not match the checksum provided by the server." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has not been found." + "es": { + "stringUnit": { + "state": "translated", + "value": "La suma de comprobación del archivo descargado no coincide con la suma de comprobación proporcionada por el servidor." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O item de destino não foi encontrado." + "fr": { + "stringUnit": { + "state": "translated", + "value": "The downloaded file's checksum does not match the checksum provided by the server." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The targeted item has not been found." + "ko": { + "stringUnit": { + "state": "translated", + "value": "다운로드한 파일의 체크섬이 서버에서 제공한 체크섬과 일치하지 않습니다." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O item de destino não foi encontrado." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The downloaded file's checksum does not match the checksum provided by the server." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Не найден указанный элемент." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A soma de verificação do arquivo baixado não corresponde à soma de verificação fornecida pelo servidor. " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Objekti i synuar nuk u gjet." + "ru": { + "stringUnit": { + "state": "translated", + "value": "The downloaded file's checksum does not match the checksum provided by the server." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบรายการเป้าหมาย" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Checksum-i i kartelës së shkarkuar nuk përputhet me checksum-in e dhënë nga shërbyesi." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่พบรายการเป้าหมาย" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่พบทรัพยากร" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Seçili öge bulunamadı." + "tr": { + "stringUnit": { + "state": "translated", + "value": "İndirilen dosyanın sağlama toplamı, sunucu tarafından sağlanan sağlama toplamı ile eşleşmiyor." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "未找到目标项目。" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "The downloaded file's checksum does not match the checksum provided by the server." } } } }, - "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "The file no longer exists on the server in this location.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The file no longer exists on the server in this location." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die von Ihnen angegebene URL verwendet das HTTP- und nicht das HTTPS-Schema, sodass Ihre Kommunikation nicht verschlüsselt wäre." + "de": { + "stringUnit": { + "state": "translated", + "value": "Die Datei existiert auf dem Server nicht mehr an diesem Ort." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "en": { + "stringUnit": { + "state": "translated", + "value": "The file no longer exists on the server in this location." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "es": { + "stringUnit": { + "state": "translated", + "value": "The file no longer exists on the server in this location." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "fr": { + "stringUnit": { + "state": "translated", + "value": "The file no longer exists on the server in this location." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La URL usa HTTP en lugar de HTTPS. Si Vd. continua, la comunicación no será encriptada." + "ko": { + "stringUnit": { + "state": "translated", + "value": "The file no longer exists on the server in this location." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The file no longer exists on the server in this location." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "제공한 URL은 HTTPS 구성표 대신 HTTP를 사용하므로, 통신이 암호화되지 않습니다." + "ru": { + "stringUnit": { + "state": "translated", + "value": "The file no longer exists on the server in this location." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "sq": { + "stringUnit": { + "state": "translated", + "value": "The file no longer exists on the server in this location." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "tr": { + "stringUnit": { + "state": "translated", + "value": "The file no longer exists on the server in this location." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "The file no longer exists on the server in this location." } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O URL que você forneceu usa o esquema HTTP, e não o HTTPS, logo sua comunicação não será criptografada." + } + } + }, + "The logged in user is not matching the required user ID.": { + "comment": "OCErrorAuthorizationNotMatchingRequiredUserID", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The logged in user is not matching the required user ID." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "de": { + "stringUnit": { + "state": "translated", + "value": "Der angemeldete Benutzer stimmt nicht mit der erforderlichen Benutzer-ID überein." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O URL que você forneceu usa o esquema HTTP, e não o HTTPS, logo sua comunicação não será criptografada." + "en": { + "stringUnit": { + "state": "translated", + "value": "The logged in user is not matching the required user ID." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The logged in user is not matching the required user ID." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL-ja që dhatë përdor HTTP, në vend se skemën HTTPS, ndaj komunikimi juaj s’do të jetë i fshehtëzuar." + "es": { + "stringUnit": { + "state": "translated", + "value": "El usuario que inició sesión no coincide con el ID de usuario requerido." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คถุณกำลังใช้งาน URL HTTP แทนที่จะเป็นรูปแบบ HTTPS ดังนั้นการสื่อสารของคุณจะไม่ถูกเข้ารหัส" + "fr": { + "stringUnit": { + "state": "translated", + "value": "The logged in user is not matching the required user ID." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คถุณกำลังใช้งาน URL HTTP แทนที่จะเป็นรูปแบบ HTTPS ดังนั้นการสื่อสารของคุณจะไม่ถูกเข้ารหัส" + "ko": { + "stringUnit": { + "state": "translated", + "value": "로그인한 사용자가 요구된 사용자 ID와 일치하지 않습니다." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sağladığınız URL, HTTPS şeması yerine HTTP kullanır, bu nedenle iletişiminiz şifrelenmez." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The logged in user is not matching the required user ID." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme, so your communication would not be encrypted." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O usuário conectado não corresponde ao ID de usuário necessário. " } - } - } - }, - "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + }, + "ru": { + "stringUnit": { + "state": "translated", + "value": "The logged in user is not matching the required user ID." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Die von Ihnen angegebene URL verwendet das HTTP- und nicht das HTTPS-Schema. Wenn Sie fortfahren, wird Ihre Kommunikation nicht verschlüsselt." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Përdoruesi i futur nuk përputhet me ID-në e kërkuar të përdoruesit." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ผู้ใช้ที่ล็อกอินไม่ตรงกับ ID ผู้ใช้ที่ต้องการ" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Oturum açan kullanıcı, gerekli kullanıcı kimliğiyle eşleşmiyor." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "The logged in user is not matching the required user ID." + } + } + } + }, + "The operation on the targeted item is not allowed.": { + "comment": "OCErrorItemOperationForbidden", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The operation on the targeted item is not allowed." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "La URL usa HTTP en lugar de HTTPS. Si Vd. continua, la comunicación no será encriptada." + "de": { + "stringUnit": { + "state": "translated", + "value": "Der Vorgang am Zielelement ist nicht erlaubt." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "en": { + "stringUnit": { + "state": "translated", + "value": "The operation on the targeted item is not allowed." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "제공한 URL은 HTTPS 구성표 대신 HTTP를 사용합니다. 계속하면 통신이 암호화되지 않습니다." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The operation on the targeted item is not allowed." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "es": { + "stringUnit": { + "state": "translated", + "value": "La operación en el artículo apuntado no está permitida." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "fr": { + "stringUnit": { + "state": "translated", + "value": "L'opération sur l'élément ciblé n'est pas autorisée." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "ko": { + "stringUnit": { + "state": "translated", + "value": "대상 항목에 대한 작업이 허용되지 않습니다." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O URL fornecido por você usa o HTTP em vez do esquema HTTPS. Se você continuar, sua comunicação não será criptografada." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The operation on the targeted item is not allowed." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "The operation on the targeted item is not allowed." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O URL fornecido por você usa o HTTP em vez do esquema HTTPS. Se você continuar, sua comunicação não será criptografada." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "The operation on the targeted item is not allowed." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A operação no item de destino não é permitida." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL-ja që dhatë përdor HTTP, në vend se skemën HTTPS. Nëse vazhdoni, komunikimi juaj s’do të jetë i fshehtëzuar." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Операция над указанным элементом не разрешена." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL ที่คุณระบุใช้โปรโตคอล HTTP หากคุณดำเนินการต่อการสื่อสารของคุณจะไม่ถูกเข้ารหัส (แนะนำให้ใช้ HTTPS แทน)" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Veprimi s’është i lejueshëm mbi objektin e synuar." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL ที่คุณระบุใช้โปรโตคอล HTTP หากคุณดำเนินการต่อการสื่อสารของคุณจะไม่ถูกเข้ารหัส (แนะนำให้ใช้ HTTPS แทน)" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่อนุญาตให้ดำเนินการกับรายการเป้าหมาย" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sağladığınız URL, HTTPS şeması yerine HTTP'yi kullanır. Devam ederseniz, iletişiminiz şifrelenmeyecektir." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Hedeflenen öğe üzerinde işleme izin verilmiyor." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "The URL you provided uses the HTTP rather than the HTTPS scheme. If you continue, your communication will not be encrypted." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "不允许在指定的项目上进行操作。" } } } }, - "There already is an item at the destination of this action." : { - "comment" : "OCErrorItemAlreadyExists", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "There already is an item at the destination of this action." + "The operation was cancelled.": { + "comment": "OCErrorCancelled", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The operation was cancelled." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Am Ziel dieser Aktion befindet sich bereits ein Element." + "de": { + "stringUnit": { + "state": "translated", + "value": "Der Vorgang wurde abgebrochen." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "There already is an item at the destination of this action." + "en": { + "stringUnit": { + "state": "translated", + "value": "The operation was cancelled." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "There already is an item at the destination of this action." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The operation was cancelled." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "There already is an item at the destination of this action." + "es": { + "stringUnit": { + "state": "translated", + "value": "La operación fue cancelada." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ya hay un elemento en el destino de esta acción." + "fr": { + "stringUnit": { + "state": "translated", + "value": "L'opération a été annulée." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Il y a déjà un élément à la destination de cette action." + "ko": { + "stringUnit": { + "state": "translated", + "value": "작업이 취소되었습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "현재 작업의 대상에 항목이 이미 있습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The operation was cancelled." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "There already is an item at the destination of this action." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "The operation was cancelled." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "There already is an item at the destination of this action." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "The operation was cancelled." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "There already is an item at the destination of this action." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A operação foi cancelada." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "There already is an item at the destination of this action." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Операция была отменена." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "There already is an item at the destination of this action." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Veprimi u anulua." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Já existe um item no destino desta ação." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "การดำเนินการถูกยกเลิก" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "There already is an item at the destination of this action." + "tr": { + "stringUnit": { + "state": "translated", + "value": "İşlem iptal edildi." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Já existe um item no destino desta ação." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "该操作已取消。" + } + } + } + }, + "The provided path is not normalized.": { + "comment": "OCErrorUnnormalizedPath", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The provided path is not normalized." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "В месте назначения этого действия уже есть элемент." + "de": { + "stringUnit": { + "state": "translated", + "value": "Der angegebene Pfad ist nicht normalisiert." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ka tashmë një objekt te destinacioni për këtë veprim." + "en": { + "stringUnit": { + "state": "translated", + "value": "The provided path is not normalized." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "มีการกระทำรายการนี้อยู่ที่ปลายทางแล้ว" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The provided path is not normalised." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "มีการกระทำรายการนี้อยู่ที่ปลายทางแล้ว" + "es": { + "stringUnit": { + "state": "translated", + "value": "La ruta proporcionada no está normalizada." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bu işlemin hedefinde zaten bir öğe var." + "fr": { + "stringUnit": { + "state": "translated", + "value": "The provided path is not normalized." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "There already is an item at the destination of this action." + "ko": { + "stringUnit": { + "state": "translated", + "value": "제공된 경로가 정규화되지 않았습니다." } - } - } - }, - "This feature is currently not implemented" : { - "comment" : "OCErrorFeatureNotImplemented", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is currently not implemented" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "The provided path is not normalized." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Diese Funktion ist derzeit nicht implementiert." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O caminho fornecido não está normalizado. " } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is currently not implemented" + "ru": { + "stringUnit": { + "state": "translated", + "value": "The provided path is not normalized." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is currently not implemented" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Shtegu i dhënë s’është i normalizuar." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is currently not implemented" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Path ที่ระบุไม่ได้ทำให้เป็นค่าปกติ" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esta función no está actualmente implementada" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Sağlanan yol normalleştirilmedi." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cette fonctionnalité n'est actuellement pas implémentée" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "The provided path is not normalized." + } + } + } + }, + "The target directory %@ doesn't seem to exist.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The target directory %@ doesn't seem to exist." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "이 기능은 현재 구현되지 않았습니다." + "de": { + "stringUnit": { + "state": "translated", + "value": "Das Zielverzeichnis %@ scheint nicht zu existieren." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is currently not implemented" + "en": { + "stringUnit": { + "state": "translated", + "value": "The target directory %@ doesn't seem to exist." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is currently not implemented" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The target directory %@ doesn't seem to exist." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is currently not implemented" + "es": { + "stringUnit": { + "state": "translated", + "value": "Parece que no existe el directorio destino %@." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is currently not implemented" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Le répertoire cible %@ ne semble pas exister." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is currently not implemented" + "ko": { + "stringUnit": { + "state": "translated", + "value": "대상 디렉터리 %@이(가) 존재하지 않습니다." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Este recurso não está atualmente implementado" + "mk": { + "stringUnit": { + "state": "translated", + "value": "The target directory %@ doesn't seem to exist." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is currently not implemented" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "The target directory %@ doesn't seem to exist." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Este recurso não está atualmente implementado" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "The target directory %@ doesn't seem to exist." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Эта возможность в настоящий момент не реализована" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O diretório de destino %@ parece não existir." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kjo veçori hëpërhë s’është sendërtuar" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Похоже, целевой каталог %@ не существует." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ยังไม่เปิดใช้งานคุณลักษณะนี้ในปัจจุบัน" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Drejtoria objektiv %@ s’duket se ekziston." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ยังไม่เปิดใช้งานคุณลักษณะนี้ในปัจจุบัน" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่พบไดเร็กทอรี %@" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bu özellik henüz eklenmedi" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Hedef klasörü %@ bulunamadı." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "此功能未实装" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "目标目录 %@ 似乎不存在。" } } } }, - "This feature is not supported for this item." : { - "comment" : "OCErrorFeatureNotSupportedForItem", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this item." + "The target location has not been found.": { + "comment": "OCErrorItemDestinationNotFound", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The target location has not been found." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Diese Funktion wird für dieses Element nicht unterstützt." + "de": { + "stringUnit": { + "state": "translated", + "value": "Das Ziel wurde nicht gefunden." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this item." + "en": { + "stringUnit": { + "state": "translated", + "value": "The target location has not been found." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this item." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The target location has not been found." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this item." + "es": { + "stringUnit": { + "state": "translated", + "value": "The target location has not been found." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esta función no es compatible con este elemento." + "fr": { + "stringUnit": { + "state": "translated", + "value": "The target location has not been found." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cette fonctionnalité n'est pas prise en charge pour cet élément." + "ko": { + "stringUnit": { + "state": "translated", + "value": "The target location has not been found." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "이 항목은이 기능을 지원하지 않습니다." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The target location has not been found." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this item." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O local de destino não foi encontrado." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this item." + "ru": { + "stringUnit": { + "state": "translated", + "value": "The target location has not been found." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this item." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Vendndodhja e synuar nuk u gjet." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this item." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "The target location has not been found." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this item." + "tr": { + "stringUnit": { + "state": "translated", + "value": "The target location has not been found." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Este recurso não é suportado para este item." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "The target location has not been found." + } + } + } + }, + "The targeted item has changed.": { + "comment": "OCErrorItemChanged", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The targeted item has changed." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this item." + "de": { + "stringUnit": { + "state": "translated", + "value": "Das Zielelement hat sich geändert." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Este recurso não é suportado para este item." + "en": { + "stringUnit": { + "state": "translated", + "value": "The targeted item has changed." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Эта возможность не поддерживается для данного элемента." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The targeted item has changed." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kjo veçori nuk mbulohet për këtë objekt." + "es": { + "stringUnit": { + "state": "translated", + "value": "El elemento de destino ha cambiado." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คุณสมบัตินี้ไม่รองรับสำหรับรายการนี้" + "fr": { + "stringUnit": { + "state": "translated", + "value": "L'élément ciblé a changé." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คุณสมบัตินี้ไม่รองรับสำหรับรายการนี้" + "ko": { + "stringUnit": { + "state": "translated", + "value": "대상 항목이 변경되었습니다." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bu özellik seçili öğe için desteklenmez." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The targeted item has changed." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "此项不支持此功能。" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "The targeted item has changed." } - } - } - }, - "This feature is not supported for this server (version)." : { - "comment" : "OCErrorFeatureNotSupportedByServer", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this server (version)." + }, + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "The targeted item has changed." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Diese Funktion wird für diesen Server bzw. in dieser Version nicht unterstützt." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O item referenciadoado foi alterado." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this server (version)." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Указанный элемент изменился." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this server (version)." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Objekti i synuar ka ndryshuar." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this server (version)." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "รายการเป้าหมายมีการเปลี่ยนแปลง" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esta función no está soportada en este servidor (versión)." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Seçili öge değiştirildi." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cette fonctionnalité n'est pas supportée pour ce serveur (version)." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "目标项目已被更改。" + } + } + } + }, + "The targeted item has not been found.": { + "comment": "OCErrorItemNotFound", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "The targeted item has not been found." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "이 기능은 현재 서버(버전)에서 지원되지 않습니다." + "de": { + "stringUnit": { + "state": "translated", + "value": "Das Zielelement wurde nicht gefunden." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this server (version)." + "en": { + "stringUnit": { + "state": "translated", + "value": "The targeted item has not been found." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this server (version)." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "The targeted item has not been found." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this server (version)." + "es": { + "stringUnit": { + "state": "translated", + "value": "El elemento apuntado no ha sido encontrado." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this server (version)." + "fr": { + "stringUnit": { + "state": "translated", + "value": "L'élément ciblé n'a pas été trouvé." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this server (version)." + "ko": { + "stringUnit": { + "state": "translated", + "value": "대상 항목을 찾을 수 없습니다." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Este recurso não é suportado para este (versão) servidor." + "mk": { + "stringUnit": { + "state": "translated", + "value": "The targeted item has not been found." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "This feature is not supported for this server (version)." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "The targeted item has not been found." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Este recurso não é suportado para este (versão) servidor." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "The targeted item has not been found." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Эта возможность не поддерживается для данного сервера (версия)." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O item de destino não foi encontrado." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kjo veçori nuk mbulohet për këtë shërbyes (version)." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Не найден указанный элемент." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์ยังไม่รองรับคุณสมบัตินี้" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Objekti i synuar nuk u gjet." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์ยังไม่รองรับคุณสมบัตินี้" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่พบรายการเป้าหมาย" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bu özellik bu sunucu versiyonu tarafından desteklenmez." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Seçili öge bulunamadı." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "此功能不受此服务器 (版本) 支持。" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "未找到目标项目。" } } } }, - "This file is currently being processed and is not yet available for use. Please try again shortly." : { - "comment" : "App Provider", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "There already is an item at the destination of this action.": { + "comment": "OCErrorItemAlreadyExists", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "There already is an item at the destination of this action." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Diese Datei wird derzeit verarbeitet und kann noch nicht verwendet werden. Bitte versuchen Sie es in Kürze erneut." + "de": { + "stringUnit": { + "state": "translated", + "value": "Am Ziel dieser Aktion befindet sich bereits ein Element." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "en": { + "stringUnit": { + "state": "translated", + "value": "There already is an item at the destination of this action." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "There already is an item at the destination of this action." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "es": { + "stringUnit": { + "state": "translated", + "value": "Ya hay un elemento en el destino de esta acción." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Il y a déjà un élément à la destination de cette action." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "ko": { + "stringUnit": { + "state": "translated", + "value": "현재 작업의 대상에 항목이 이미 있습니다." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "mk": { + "stringUnit": { + "state": "translated", + "value": "There already is an item at the destination of this action." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "There already is an item at the destination of this action." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "There already is an item at the destination of this action." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Já existe um item no destino desta ação." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Este arquivo está sendo processado e ainda não está disponível para uso. Tente novamente em breve." + "ru": { + "stringUnit": { + "state": "translated", + "value": "В месте назначения этого действия уже есть элемент." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ka tashmë një objekt te destinacioni për këtë veprim." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Este arquivo está sendo processado e ainda não está disponível para uso. Tente novamente em breve." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "มีการกระทำรายการนี้อยู่ที่ปลายทางแล้ว" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bu işlemin hedefinde zaten bir öğe var." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kjo kartelë aktualisht po përpunohet dhe s’është ende e lirë për përdorim. Ju lutemi, riprovoni pas pak." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "There already is an item at the destination of this action." } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + } + } + }, + "This feature is currently not implemented": { + "comment": "OCErrorFeatureNotImplemented", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "This feature is currently not implemented" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "de": { + "stringUnit": { + "state": "translated", + "value": "Diese Funktion ist derzeit nicht implementiert." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." + "en": { + "stringUnit": { + "state": "translated", + "value": "This feature is currently not implemented" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "This file is currently being processed and is not yet available for use. Please try again shortly." - } - } - } - }, - "This server runs an unsupported version (%@). Version %@ or later is required by this app." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "This feature is currently not implemented" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Auf diesem Server wird eine nicht unterstützte Version (%@) ausgeführt. Die Version %@ oder höher wird von dieser App benötigt." + "es": { + "stringUnit": { + "state": "translated", + "value": "Esta función no está actualmente implementada" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Cette fonctionnalité n'est actuellement pas implémentée" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "ko": { + "stringUnit": { + "state": "translated", + "value": "이 기능은 현재 구현되지 않았습니다." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "mk": { + "stringUnit": { + "state": "translated", + "value": "This feature is currently not implemented" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Este servidor ejecuta una versión no soportada (%@). La versión %@o posterior es necesaria para utilizar esta aplicación." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "This feature is currently not implemented" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ce serveur exécute une version non supporté (%@). La version %@ou une version ultérieure est requise par cette application." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "This feature is currently not implemented" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "이 서버는 지원되지 않는 버전(%@)을 실행합니다. 이 앱에는 버전 %@ 이상이 필요합니다." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Este recurso não está atualmente implementado" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Эта возможность в настоящий момент не реализована" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kjo veçori hëpërhë s’është sendërtuar" } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ยังไม่เปิดใช้งานคุณลักษณะนี้ในปัจจุบัน" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bu özellik henüz eklenmedi" } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "此功能未实装" } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Este servidor roda uma versão não suportada ( %@ ). Versão %@ ou superior, é requerida para rodar este aplicativo." + } + } + }, + "This feature is not supported for this item.": { + "comment": "OCErrorFeatureNotSupportedForItem", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "This feature is not supported for this item." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "de": { + "stringUnit": { + "state": "translated", + "value": "Diese Funktion wird für dieses Element nicht unterstützt." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Este servidor roda uma versão não suportada ( %@ ). Versão %@ ou superior, é requerida para rodar este aplicativo." + "en": { + "stringUnit": { + "state": "translated", + "value": "This feature is not supported for this item." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "На сервере работает неподдерживаемая версия (%@). Для данного приложения требуется версия %@ или позже." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "This feature is not supported for this item." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ky shërbyes xhiron një version të pambuluar (%@). Ky aplikacion lyp versionin %@ ose të mëvonshëm." + "es": { + "stringUnit": { + "state": "translated", + "value": "Esta función no es compatible con este elemento." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์นี้กำลังใช้เวอร์ชันที่ไม่ได้รับการสนับสนุน (%@) เวอร์ชัน %@ หรือเก่ากว่าที่แอปนี้ต้องการ" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Cette fonctionnalité n'est pas prise en charge pour cet élément." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เซิร์ฟเวอร์นี้กำลังใช้เวอร์ชันที่ไม่ได้รับการสนับสนุน (%@) เวอร์ชัน %@ หรือเก่ากว่าที่แอปนี้ต้องการ" + "ko": { + "stringUnit": { + "state": "translated", + "value": "이 항목은이 기능을 지원하지 않습니다." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bu sunucu desteklenmeyen%@sürümünü çalıştırmakta, fakat uygulama için %@versiyonu gerekmektedir." + "mk": { + "stringUnit": { + "state": "translated", + "value": "This feature is not supported for this item." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server runs an unsupported version (%@). Version %@ or later is required by this app." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "This feature is not supported for this item." } - } - } - }, - "This server version is not supported." : { - "comment" : "OCErrorServerVersionNotSupported", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server version is not supported." + }, + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "This feature is not supported for this item." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Diese Server-Version wird nicht unterstützt." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Este recurso não é suportado para este item." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server version is not supported." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Эта возможность не поддерживается для данного элемента." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server version is not supported." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kjo veçori nuk mbulohet për këtë objekt." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server version is not supported." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "คุณสมบัตินี้ไม่รองรับสำหรับรายการนี้" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esta versión del servidor no es compatible." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bu özellik seçili öğe için desteklenmez." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Cette version de serveur n'est pas supportée." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "此项不支持此功能。" + } + } + } + }, + "This feature is not supported for this server (version).": { + "comment": "OCErrorFeatureNotSupportedByServer", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "This feature is not supported for this server (version)." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "이 서버 버전은 지원되지 않습니다." + "de": { + "stringUnit": { + "state": "translated", + "value": "Diese Funktion wird für diesen Server bzw. in dieser Version nicht unterstützt." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server version is not supported." + "en": { + "stringUnit": { + "state": "translated", + "value": "This feature is not supported for this server (version)." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server version is not supported." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "This feature is not supported for this server (version)." } }, - "nb-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server version is not supported." + "es": { + "stringUnit": { + "state": "translated", + "value": "Esta función no está soportada en este servidor (versión)." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server version is not supported." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Cette fonctionnalité n'est pas supportée pour ce serveur (version)." } }, - "nn-NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server version is not supported." + "ko": { + "stringUnit": { + "state": "translated", + "value": "이 기능은 현재 서버(버전)에서 지원되지 않습니다." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esta versão do servidor não é suportada." + "mk": { + "stringUnit": { + "state": "translated", + "value": "This feature is not supported for this server (version)." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "This server version is not supported." + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "This feature is not supported for this server (version)." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esta versão do servidor não é suportada." + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "This feature is not supported for this server (version)." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Эта версия сервера не поддерживается." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Este recurso não é suportado para este (versão) servidor." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ky version shërbyesi nuk mbulohet." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Эта возможность не поддерживается для данного сервера (версия)." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ยังไม่รองรับเซิร์ฟเวอร์เวอร์ชันนี้" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kjo veçori nuk mbulohet për këtë shërbyes (version)." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ยังไม่รองรับเซิร์ฟเวอร์เวอร์ชันนี้" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เซิร์ฟเวอร์ยังไม่รองรับคุณสมบัตินี้" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bu sunucu versiyonu desteklenmiyor." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bu özellik bu sunucu versiyonu tarafından desteklenmez." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "不支持的服务器版本。" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "此功能不受此服务器 (版本) 支持。" } } } }, - "Thumbnail database size" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Thumbnail database size" + "This file is currently being processed and is not yet available for use. Please try again shortly.": { + "comment": "App Provider", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Größe der Miniaturbild-Datenbank" + "de": { + "stringUnit": { + "state": "translated", + "value": "Diese Datei wird derzeit verarbeitet und kann noch nicht verwendet werden. Bitte versuchen Sie es in Kürze erneut." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Thumbnail database size" + "en": { + "stringUnit": { + "state": "translated", + "value": "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Thumbnail database size" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Thumbnail database size" + "es": { + "stringUnit": { + "state": "translated", + "value": "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tamaño de la base de datos de miniaturas" + "fr": { + "stringUnit": { + "state": "translated", + "value": "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Thumbnail database size" + "ko": { + "stringUnit": { + "state": "translated", + "value": "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "데이터베이스 크기 미리 보기 그림" + "mk": { + "stringUnit": { + "state": "translated", + "value": "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Thumbnail database size" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Este arquivo está sendo processado e ainda não está disponível para uso. Tente novamente em breve." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Thumbnail database size" + "ru": { + "stringUnit": { + "state": "translated", + "value": "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Thumbnail database size" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Kjo kartelë aktualisht po përpunohet dhe s’është ende e lirë për përdorim. Ju lutemi, riprovoni pas pak." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tamanho do banco de dados de miniaturas " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Thumbnail database size" + "tr": { + "stringUnit": { + "state": "translated", + "value": "This file is currently being processed and is not yet available for use. Please try again shortly." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tamanho do banco de dados de miniaturas " + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "This file is currently being processed and is not yet available for use. Please try again shortly." + } + } + } + }, + "This server runs an unsupported version (%@). Version %@ or later is required by this app.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Thumbnail database size" + "de": { + "stringUnit": { + "state": "translated", + "value": "Auf diesem Server wird eine nicht unterstützte Version (%@) ausgeführt. Die Version %@ oder höher wird von dieser App benötigt." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Madhësi baze të dhënash miniaturash" + "en": { + "stringUnit": { + "state": "translated", + "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ขนาดฐานข้อมูลภาพขนาดย่อ" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ขนาดฐานข้อมูลภาพขนาดย่อ" + "es": { + "stringUnit": { + "state": "translated", + "value": "Este servidor ejecuta una versión no soportada (%@). La versión %@o posterior es necesaria para utilizar esta aplicación." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Küçük resim veritabanı boyutu" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Ce serveur exécute une version non supporté (%@). La version %@ou une version ultérieure est requise par cette application." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Thumbnail database size" + "ko": { + "stringUnit": { + "state": "translated", + "value": "이 서버는 지원되지 않는 버전(%@)을 실행합니다. 이 앱에는 버전 %@ 이상이 필요합니다." } - } - } - }, - "Timestamp" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Timestamp" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zeitstempel" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Timestamp" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Timestamp" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Este servidor roda uma versão não suportada ( %@ ). Versão %@ ou superior, é requerida para rodar este aplicativo." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Timestamp" + "ru": { + "stringUnit": { + "state": "translated", + "value": "На сервере работает неподдерживаемая версия (%@). Для данного приложения требуется версия %@ или позже." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Marca de tiempo" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ky shërbyes xhiron një version të pambuluar (%@). Ky aplikacion lyp versionin %@ ose të mëvonshëm." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Timestamp" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เซิร์ฟเวอร์นี้กำลังใช้เวอร์ชันที่ไม่ได้รับการสนับสนุน (%@) เวอร์ชัน %@ หรือเก่ากว่าที่แอปนี้ต้องการ" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "타임 스탬프" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bu sunucu desteklenmeyen%@sürümünü çalıştırmakta, fakat uygulama için %@versiyonu gerekmektedir." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Timestamp" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "This server runs an unsupported version (%@). Version %@ or later is required by this app." + } + } + } + }, + "This server version is not supported.": { + "comment": "OCErrorServerVersionNotSupported", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "This server version is not supported." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Timestamp" + "de": { + "stringUnit": { + "state": "translated", + "value": "Diese Server-Version wird nicht unterstützt." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Timestamp" + "en": { + "stringUnit": { + "state": "translated", + "value": "This server version is not supported." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Carimbo de tempo " + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "This server version is not supported." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Timestamp" + "es": { + "stringUnit": { + "state": "translated", + "value": "Esta versión del servidor no es compatible." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Carimbo de tempo " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Cette version de serveur n'est pas supportée." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Timestamp" + "ko": { + "stringUnit": { + "state": "translated", + "value": "이 서버 버전은 지원되지 않습니다." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vulë kohore" + "mk": { + "stringUnit": { + "state": "translated", + "value": "This server version is not supported." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ประทับเวลา" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "This server version is not supported." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ประทับเวลา" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "This server version is not supported." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zaman damgası" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Esta versão do servidor não é suportada." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Timestamp" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Эта версия сервера не поддерживается." } - } - } - }, - "Too few {{localizedName}}" : { - "comment" : "Password Policy", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + }, + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ky version shërbyesi nuk mbulohet." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zu wenige {{localizedName}}" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ยังไม่รองรับเซิร์ฟเวอร์เวอร์ชันนี้" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bu sunucu versiyonu desteklenmiyor." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "不支持的服务器版本。" + } + } + } + }, + "Thumbnail database size": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Thumbnail database size" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "de": { + "stringUnit": { + "state": "translated", + "value": "Größe der Miniaturbild-Datenbank" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "en": { + "stringUnit": { + "state": "translated", + "value": "Thumbnail database size" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Thumbnail database size" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "es": { + "stringUnit": { + "state": "translated", + "value": "Tamaño de la base de datos de miniaturas" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Thumbnail database size" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "ko": { + "stringUnit": { + "state": "translated", + "value": "데이터베이스 크기 미리 보기 그림" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Thumbnail database size" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Tamanho do banco de dados de miniaturas " } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Thumbnail database size" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Madhësi baze të dhënash miniaturash" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ขนาดฐานข้อมูลภาพขนาดย่อ" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Küçük resim veritabanı boyutu" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too few {{localizedName}}" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Thumbnail database size" } } } }, - "Too many {{localizedName}}" : { - "comment" : "Password Policy", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zu viele {{localizedName}}" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "Timestamp": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Timestamp" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "de": { + "stringUnit": { + "state": "translated", + "value": "Zeitstempel" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "en": { + "stringUnit": { + "state": "translated", + "value": "Timestamp" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Timestamp" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "es": { + "stringUnit": { + "state": "translated", + "value": "Marca de tiempo" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Timestamp" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "ko": { + "stringUnit": { + "state": "translated", + "value": "타임 스탬프" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Timestamp" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Carimbo de tempo " } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Timestamp" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Vulë kohore" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ประทับเวลา" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Zaman damgası" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Too many {{localizedName}}" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Timestamp" } } } }, - "Total Items" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total Items" + "Too few {{localizedName}}": { + "comment": "Password Policy", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Too few {{localizedName}}" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Elemente insgesamt" + "de": { + "stringUnit": { + "state": "translated", + "value": "Zu wenige {{localizedName}}" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total Items" + "en": { + "stringUnit": { + "state": "translated", + "value": "Too few {{localizedName}}" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total Items" + "es": { + "stringUnit": { + "state": "translated", + "value": "Too few {{localizedName}}" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total Items" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Too few {{localizedName}}" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Artículos totales" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Too few {{localizedName}}" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total Items" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Too few {{localizedName}}" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "모든 항목" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Too few {{localizedName}}" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total Items" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Too few {{localizedName}}" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total Items" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Too few {{localizedName}}" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total Items" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Too few {{localizedName}}" + } + } + } + }, + "Too many {{localizedName}}": { + "comment": "Password Policy", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Too many {{localizedName}}" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total de Itens" + "de": { + "stringUnit": { + "state": "translated", + "value": "Zu viele {{localizedName}}" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total Items" + "en": { + "stringUnit": { + "state": "translated", + "value": "Too many {{localizedName}}" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total de Itens" + "es": { + "stringUnit": { + "state": "translated", + "value": "Too many {{localizedName}}" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total Items" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Too many {{localizedName}}" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Objekte gjithsej" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Too many {{localizedName}}" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รายการทั้งหมด" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Too many {{localizedName}}" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "รายการทั้งหมด" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Too many {{localizedName}}" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Toplam Öge" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Too many {{localizedName}}" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Total Items" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Too many {{localizedName}}" + } + }, + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Too many {{localizedName}}" } } } }, - "Unknown share type." : { - "comment" : "OCErrorShareUnknownType", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown share type." + "Total Items": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Total Items" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unbekannter Freigabetyp." + "de": { + "stringUnit": { + "state": "translated", + "value": "Elemente insgesamt" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown share type." + "en": { + "stringUnit": { + "state": "translated", + "value": "Total Items" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown share type." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Total Items" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown share type." + "es": { + "stringUnit": { + "state": "translated", + "value": "Artículos totales" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tipo de compartido desconocido." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Total Items" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown share type." + "ko": { + "stringUnit": { + "state": "translated", + "value": "모든 항목" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "알 수 없는 공유 유형" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Total Items" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown share type." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Total de Itens" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown share type." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Total Items" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown share type." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Objekte gjithsej" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tipo de compartilhamento desconhecido." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "รายการทั้งหมด" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown share type." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Toplam Öge" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tipo de compartilhamento desconhecido." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Total Items" + } + } + } + }, + "URL": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "URL" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown share type." + "de": { + "stringUnit": { + "state": "translated", + "value": "URL" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lloj i panjohur pjese." + "en": { + "stringUnit": { + "state": "translated", + "value": "URL" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ประเภทการแชร์ที่ไม่รู้จัก" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "URL" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ประเภทการแชร์ที่ไม่รู้จัก" + "es": { + "stringUnit": { + "state": "translated", + "value": "URL" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bilinmeyen paylaşım türü." + "fr": { + "stringUnit": { + "state": "translated", + "value": "URL" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown share type." + "ko": { + "stringUnit": { + "state": "translated", + "value": "URL" } - } - } - }, - "Unknown user" : { - "comment" : "OCErrorUnknownUser", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown user" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "URL" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unbekannter Benutzer" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "URL" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown user" + "ru": { + "stringUnit": { + "state": "translated", + "value": "URL" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown user" + "sq": { + "stringUnit": { + "state": "translated", + "value": "URL" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown user" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "URL" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Usuario desconocido" + "tr": { + "stringUnit": { + "state": "translated", + "value": "URL" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown user" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "URL" + } + } + } + }, + "UUID": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "알려지지 않은 사용자" + "de": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown user" + "en": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown user" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown user" + "es": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Usuário desconhecido" + "fr": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown user" + "ko": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Usuário desconhecido" + "mk": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown user" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Përdorues i panjohur" + "ru": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่รู้จักผู้ใช้" + "sq": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่รู้จักผู้ใช้" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bilinmeyen kullanıcı" + "tr": { + "stringUnit": { + "state": "translated", + "value": "UUID" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Unknown user" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "UUID" } } } }, - "Update failed with status code %lu" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" - } - }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update mit Status-Code %lu fehlgeschlagen." - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" - } - }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "Unknown share type.": { + "comment": "OCErrorShareUnknownType", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Unknown share type." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "de": { + "stringUnit": { + "state": "translated", + "value": "Unbekannter Freigabetyp." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "en": { + "stringUnit": { + "state": "translated", + "value": "Unknown share type." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Unknown share type." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "es": { + "stringUnit": { + "state": "translated", + "value": "Tipo de compartido desconocido." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Unknown share type." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "ko": { + "stringUnit": { + "state": "translated", + "value": "알 수 없는 공유 유형" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Unknown share type." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Tipo de compartilhamento desconhecido." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Unknown share type." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Lloj i panjohur pjese." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ประเภทการแชร์ที่ไม่รู้จัก" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bilinmeyen paylaşım türü." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Update failed with status code %lu" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Unknown share type." } } } }, - "Updating metadata for '%@'…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "Unknown user": { + "comment": "OCErrorUnknownUser", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Unknown user" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Aktualisiere Metadaten für ‚%@‘…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Unbekannter Benutzer" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Unknown user" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Unknown user" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Usuario desconocido" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Unknown user" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "알려지지 않은 사용자" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Unknown user" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Usuário desconhecido" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Unknown user" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Përdorues i panjohur" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่รู้จักผู้ใช้" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bilinmeyen kullanıcı" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Unknown user" + } + } + } + }, + "Update failed with status code %lu": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Update failed with status code %lu" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Update mit Status-Code %lu fehlgeschlagen." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Update failed with status code %lu" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating metadata for '%@'…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Update failed with status code %lu" } - } - } - }, - "Updating share…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + }, + "fr": { + "stringUnit": { + "state": "translated", + "value": "Update failed with status code %lu" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Freigabe aktualisieren…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Update failed with status code %lu" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Update failed with status code %lu" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Update failed with status code %lu" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Update failed with status code %lu" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Update failed with status code %lu" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Update failed with status code %lu" + } + } + } + }, + "Updating metadata for '%@'…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Updating metadata for '%@'…" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Aktualisiere Metadaten für ‚%@‘…" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Updating metadata for '%@'…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Updating metadata for '%@'…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Updating metadata for '%@'…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Updating metadata for '%@'…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Updating metadata for '%@'…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Updating metadata for '%@'…" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Updating metadata for '%@'…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Updating metadata for '%@'…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Updating share…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Updating metadata for '%@'…" } } } }, - "Upgrading database…" : { - "comment" : "Database upgrades", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upgrading database…" + "Updating share…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Updating share…" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Aktualisiere Datenbank…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Freigabe aktualisieren…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upgrading database…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Updating share…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upgrading database…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Updating share…" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upgrading database…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Updating share…" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Actualizando la base de datos…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Updating share…" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upgrading database…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Updating share…" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "데이터베이스 업그레이드 중..." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Updating share…" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upgrading database…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Updating share…" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upgrading database…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Updating share…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upgrading database…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Updating share…" } - }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Atualizando banco de dados... " + } + } + }, + "Upgrading database…": { + "comment": "Database upgrades", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Upgrading database…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upgrading database…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Aktualisiere Datenbank…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Atualizando banco de dados... " + "en": { + "stringUnit": { + "state": "translated", + "value": "Upgrading database…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upgrading database…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Upgrading database…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po përmirësohet baza e të dhënave…" + "es": { + "stringUnit": { + "state": "translated", + "value": "Actualizando la base de datos…" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังอัปเกรดฐานข้อมูล..." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Upgrading database…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังอัปเกรดฐานข้อมูล..." + "ko": { + "stringUnit": { + "state": "translated", + "value": "데이터베이스 업그레이드 중..." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Veritabanı güncelleniyor..." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Upgrading database…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upgrading database…" - } - } - } - }, - "Upload, edit, delete, download and preview" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Atualizando banco de dados... " } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Hochladen, Bearbeiten, Löschen, Herunterladen und Vorschau" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Upgrading database…" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po përmirësohet baza e të dhënave…" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังอัปเกรดฐานข้อมูล..." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Veritabanı güncelleniyor..." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Upgrading database…" } - }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + } + } + }, + "Upload, edit, delete, download and preview": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download and preview" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "de": { + "stringUnit": { + "state": "translated", + "value": "Hochladen, Bearbeiten, Löschen, Herunterladen und Vorschau" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "en": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download and preview" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download and preview" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "es": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download and preview" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Carregar, editar, excluir, baixar e visualizar" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download and preview" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download and preview" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Carregar, editar, excluir, baixar e visualizar" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download and preview" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Carregar, editar, excluir, baixar e visualizar" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ngarkoni, përpunoni, fshini, shkarkoni dhe bëni paraparje" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download and preview" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ngarkoni, përpunoni, fshini, shkarkoni dhe bëni paraparje" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download and preview" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download and preview" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download and preview" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download and preview" } } } }, - "Upload, edit, delete, download, preview and share" : { - "extractionState" : "stale", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "Upload, edit, delete, download, preview and share": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download, preview and share" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Hochladen, Bearbeiten, Löschen, Herunterladen, Vorschau und Teilen" + "de": { + "stringUnit": { + "state": "translated", + "value": "Hochladen, Bearbeiten, Löschen, Herunterladen, Vorschau und Teilen" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "en": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download, preview and share" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download, preview and share" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "es": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download, preview and share" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download, preview and share" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download, preview and share" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download, preview and share" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Carregar, editar, excluir, baixar, visualizar e compartilhar" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download, preview and share" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ngarkoni, përpunoni, fshini, shkarkoni, bëni paraparje dhe ndani me të tjerë" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Carregar, editar, excluir, baixar, visualizar e compartilhar" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download, preview and share" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download, preview and share" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Carregar, editar, excluir, baixar, visualizar e compartilhar" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Upload, edit, delete, download, preview and share" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + } + } + }, + "Uploader": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Uploader" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ngarkoni, përpunoni, fshini, shkarkoni, bëni paraparje dhe ndani me të tjerë" + "de": { + "stringUnit": { + "state": "translated", + "value": "Uploader" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "en": { + "stringUnit": { + "state": "translated", + "value": "Uploader" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Uploader" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" + "es": { + "stringUnit": { + "state": "translated", + "value": "Uploader" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Upload, edit, delete, download, preview and share" - } - } - } - }, - "Uploader" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Uploader" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Uploader" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Uploader" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Enviador" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Uploader" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ngarkues" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Uploader" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Uploader" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Uploader" } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + } + } + }, + "Uploading %@…": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Uploading %@…" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "de": { + "stringUnit": { + "state": "translated", + "value": "Lade %@ hoch…" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Enviador" + "en": { + "stringUnit": { + "state": "translated", + "value": "Uploading %@…" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "es": { + "stringUnit": { + "state": "translated", + "value": "Uploading %@…" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Enviador" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Uploading %@…" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Uploading %@…" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ngarkues" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Uploading %@…" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Uploading %@…" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Uploading %@…" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Uploading %@…" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploader" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Uploading %@…" } } } }, - "Uploading %@…" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "Uploads to this folder are not allowed.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Uploads to this folder are not allowed." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Lade %@ hoch…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Uploads in diesen Ordner sind nicht erlaubt." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Uploads to this folder are not allowed." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Uploads to this folder are not allowed." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "es": { + "stringUnit": { + "state": "translated", + "value": "No se permiten cargas a esta carpeta." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Uploads to this folder are not allowed." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "ko": { + "stringUnit": { + "state": "translated", + "value": "이 폴더를 업로드하는 것은 허용되지 않습니다." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Uploads to this folder are not allowed." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "O envio para esta pasta não é permitido. " } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Uploads to this folder are not allowed." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Nuk lejohen ngarkime te kjo dosje." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ไม่อนุญาตให้อัปโหลดไปยังโฟลเดอร์นี้" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bu klasöre yüklemelere izin verilmez." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Uploads to this folder are not allowed." } - }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + } + } + }, + "Use Origin URL as URL": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Use Origin URL as URL" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "de": { + "stringUnit": { + "state": "translated", + "value": "Ursprungs-URL als URL verwenden" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploading %@…" + "en": { + "stringUnit": { + "state": "translated", + "value": "Use Origin URL as URL" } - } - } - }, - "Uploads to this folder are not allowed." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploads to this folder are not allowed." + }, + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Use Origin URL as URL" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploads in diesen Ordner sind nicht erlaubt." + "es": { + "stringUnit": { + "state": "translated", + "value": "Usar URL de origen como URL" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploads to this folder are not allowed." + "fr": { + "stringUnit": { + "state": "translated", + "value": "Use Origin URL as URL" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploads to this folder are not allowed." + "ko": { + "stringUnit": { + "state": "translated", + "value": "기존 URL을 URL로 사용" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploads to this folder are not allowed." + "mk": { + "stringUnit": { + "state": "translated", + "value": "Use Origin URL as URL" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "No se permiten cargas a esta carpeta." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Use a Original URL como URL " } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploads to this folder are not allowed." + "ru": { + "stringUnit": { + "state": "translated", + "value": "Use Origin URL as URL" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "이 폴더를 업로드하는 것은 허용되지 않습니다." + "sq": { + "stringUnit": { + "state": "translated", + "value": "Si URL përdor URL-në e Origjinës" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploads to this folder are not allowed." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ใช้ URL ต้นทางเป็น URL" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploads to this folder are not allowed." + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kaynak URL'yi URL olarak kullan" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploads to this folder are not allowed." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Use Origin URL as URL" + } + } + } + }, + "User Name": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "User Name" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O envio para esta pasta não é permitido. " + "de": { + "stringUnit": { + "state": "translated", + "value": "Benutzername" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploads to this folder are not allowed." + "en": { + "stringUnit": { + "state": "translated", + "value": "User Name" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "O envio para esta pasta não é permitido. " + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "User Name" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploads to this folder are not allowed." + "es": { + "stringUnit": { + "state": "translated", + "value": "Nombre de usuario" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nuk lejohen ngarkime te kjo dosje." + "fr": { + "stringUnit": { + "state": "translated", + "value": "User Name" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่อนุญาตให้อัปโหลดไปยังโฟลเดอร์นี้" + "ko": { + "stringUnit": { + "state": "translated", + "value": "사용자 이름" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ไม่อนุญาตให้อัปโหลดไปยังโฟลเดอร์นี้" + "mk": { + "stringUnit": { + "state": "translated", + "value": "User Name" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bu klasöre yüklemelere izin verilmez." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Nome do Usuário " } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Uploads to this folder are not allowed." + "ru": { + "stringUnit": { + "state": "translated", + "value": "User Name" } - } - } - }, - "upper-case characters" : { - "comment" : "Password Policy", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + }, + "sq": { + "stringUnit": { + "state": "translated", + "value": "Emër përdoruesi" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Großbuchstaben" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ชื่อผู้ใช้" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kullanıcı Adı" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "User Name" + } + } + } + }, + "UserInfo": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "UserInfo" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "de": { + "stringUnit": { + "state": "translated", + "value": "Benutzer-Informationen" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "en": { + "stringUnit": { + "state": "translated", + "value": "UserInfo" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "UserInfo" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "es": { + "stringUnit": { + "state": "translated", + "value": "Información de usuario" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "fr": { + "stringUnit": { + "state": "translated", + "value": "UserInfo" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "ko": { + "stringUnit": { + "state": "translated", + "value": "사용자정보" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "mk": { + "stringUnit": { + "state": "translated", + "value": "UserInfo" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Informação do Usuário " } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "ru": { + "stringUnit": { + "state": "translated", + "value": "UserInfo" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Hollësi Përdoruesi" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "ข้อมูลผู้ใช้" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "tr": { + "stringUnit": { + "state": "translated", + "value": "UserInfo" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "upper-case characters" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "UserInfo" } } } }, - "URL" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "Vacuum": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Vacuum" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "de": { + "stringUnit": { + "state": "translated", + "value": "Vakuum" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "en": { + "stringUnit": { + "state": "translated", + "value": "Vacuum" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Vacuum" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "es": { + "stringUnit": { + "state": "translated", + "value": "Aspiradora" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Vacuum" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "ko": { + "stringUnit": { + "state": "translated", + "value": "진공" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Vacuum" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Vácuo " } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Vacuum" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Zbrazëti" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เครื่องดูดฝุ่น" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Vakum" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Vacuum" + } + } + } + }, + "Viewer": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Viewer" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "de": { + "stringUnit": { + "state": "translated", + "value": "Betrachter" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "en": { + "stringUnit": { + "state": "translated", + "value": "Viewer" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Viewer" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "es": { + "stringUnit": { + "state": "translated", + "value": "Viewer" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Viewer" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "URL" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Viewer" } - } - } - }, - "Use Origin URL as URL" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use Origin URL as URL" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "Viewer" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ursprungs-URL als URL verwenden" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Visualizador" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use Origin URL as URL" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Viewer" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use Origin URL as URL" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Parës" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use Origin URL as URL" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Viewer" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Usar URL de origen como URL" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Viewer" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use Origin URL as URL" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Viewer" + } + } + } + }, + "Wait Conditions": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Wait Conditions" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "기존 URL을 URL로 사용" + "de": { + "stringUnit": { + "state": "translated", + "value": "Wartebedingungen" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use Origin URL as URL" + "en": { + "stringUnit": { + "state": "translated", + "value": "Wait Conditions" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use Origin URL as URL" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Wait Conditions" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use Origin URL as URL" + "es": { + "stringUnit": { + "state": "translated", + "value": "Condiciones de espera" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use a Original URL como URL " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Wait Conditions" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use Origin URL as URL" + "ko": { + "stringUnit": { + "state": "translated", + "value": "조건 대기" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use a Original URL como URL " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Wait Conditions" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use Origin URL as URL" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Condições de Espera " } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Si URL përdor URL-në e Origjinës" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Wait Conditions" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ใช้ URL ต้นทางเป็น URL" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Wait Conditions" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ใช้ URL ต้นทางเป็น URL" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "เงื่อนไขการรอ" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kaynak URL'yi URL olarak kullan" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Bekleme Koşulları" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Use Origin URL as URL" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Wait Conditions" } } } }, - "User Name" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "User Name" + "Waiting for metadata refresh": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Waiting for metadata refresh" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Benutzername" + "de": { + "stringUnit": { + "state": "translated", + "value": "Warten auf Aktualisierung der Metadaten" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "User Name" + "en": { + "stringUnit": { + "state": "translated", + "value": "Waiting for metadata refresh" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "User Name" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Waiting for metadata refresh" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "User Name" + "es": { + "stringUnit": { + "state": "translated", + "value": "Esperando la actualización de los metadatos" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nombre de usuario" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Waiting for metadata refresh" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "User Name" + "ko": { + "stringUnit": { + "state": "translated", + "value": "메타데이터 새로고침을 대기 중" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "사용자 이름" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Waiting for metadata refresh" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "User Name" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Aguardando atualização de metadados " } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "User Name" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Waiting for metadata refresh" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "User Name" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po pritet për rifreskimin e tejtëdhënave" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nome do Usuário " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังรอการรีเฟรชข้อมูล metadata" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "User Name" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Metadata yenilemesi bekleniyor" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Nome do Usuário " + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Waiting for metadata refresh" + } + } + } + }, + "Waiting for user": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Waiting for user" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "User Name" + "de": { + "stringUnit": { + "state": "translated", + "value": "Warten auf den Benutzer" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Emër përdoruesi" + "en": { + "stringUnit": { + "state": "translated", + "value": "Waiting for user" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ชื่อผู้ใช้" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Waiting for user" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ชื่อผู้ใช้" + "es": { + "stringUnit": { + "state": "translated", + "value": "Esperando al usuario" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kullanıcı Adı" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Waiting for user" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "User Name" + "ko": { + "stringUnit": { + "state": "translated", + "value": "사용자 대기 중" } - } - } - }, - "UserInfo" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "UserInfo" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "Waiting for user" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Benutzer-Informationen" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Esperando pelo usuário " } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "UserInfo" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Waiting for user" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "UserInfo" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po pritet për përdorues" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "UserInfo" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังรอผู้ใช้" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Información de usuario" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Kullanıcı bekleniyor" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "UserInfo" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Waiting for user" + } + } + } + }, + "Waiting to retry (%ld of %ld)": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Waiting to retry (%ld of %ld)" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "사용자정보" + "de": { + "stringUnit": { + "state": "translated", + "value": "Warten auf Neuversuch (%ld von %ld)" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "UserInfo" + "en": { + "stringUnit": { + "state": "translated", + "value": "Waiting to retry (%ld of %ld)" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "UserInfo" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Waiting to retry (%ld of %ld)" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "UserInfo" + "es": { + "stringUnit": { + "state": "translated", + "value": "Esperando reintentar (%ld de %ld)" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Informação do Usuário " + "fr": { + "stringUnit": { + "state": "translated", + "value": "Waiting to retry (%ld of %ld)" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "UserInfo" + "ko": { + "stringUnit": { + "state": "translated", + "value": "재시도 대기 중 (%ld / %ld)" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Informação do Usuário " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Waiting to retry (%ld of %ld)" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "UserInfo" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Esperando para tentar novamente (%ld de %ld)" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Hollësi Përdoruesi" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Waiting to retry (%ld of %ld)" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ข้อมูลผู้ใช้" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Po pritet të riprovohet (%ld nga %ld)" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "ข้อมูลผู้ใช้" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "กำลังรอเพื่อลองใหม่ (%ld จาก %ld)" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "UserInfo" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yeniden denenmeyi bekliyor (%ld / %ld)" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "UserInfo" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Waiting to retry (%ld of %ld)" } } } }, - "UUID" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "Web finger response lacks server instance relation.": { + "comment": "OCErrorWebFingerLacksServerInstanceRelation", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Web finger response lacks server instance relation." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "de": { + "stringUnit": { + "state": "translated", + "value": "Webfinger-Antwort fehlt Bezug zur Serverinstanz." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "en": { + "stringUnit": { + "state": "translated", + "value": "Web finger response lacks server instance relation." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Web finger response lacks server instance relation." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "es": { + "stringUnit": { + "state": "translated", + "value": "Web finger response lacks server instance relation." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Web finger response lacks server instance relation." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "ko": { + "stringUnit": { + "state": "translated", + "value": "Web finger response lacks server instance relation." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Web finger response lacks server instance relation." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "A resposta do dedo da Web carece de relação de instância do servidor." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Web finger response lacks server instance relation." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Web finger response lacks server instance relation." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "Web finger response lacks server instance relation." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Web finger response lacks server instance relation." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "Web finger response lacks server instance relation." } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + } + } + }, + "You logged in as user %@, but must log in as user %@. Please retry.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "You logged in as user %@, but must log in as user %@. Please retry." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "de": { + "stringUnit": { + "state": "translated", + "value": "Sie haben sich als Benutzer %@ angemeldet, müssen sich aber als Benutzer %@ anmelden. Bitte versuchen Sie es erneut." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "en": { + "stringUnit": { + "state": "translated", + "value": "You logged in as user %@, but must log in as user %@. Please retry." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "You logged in as user %@, but must log in as user %@. Please retry." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" + "es": { + "stringUnit": { + "state": "translated", + "value": "Ha iniciado sesión como usuario %@, pero debe iniciar sesión como usuario %@. Por favor, inténtalo de nuevo." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "UUID" - } - } - } - }, - "Vacuum" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vacuum" + "fr": { + "stringUnit": { + "state": "translated", + "value": "You logged in as user %@, but must log in as user %@. Please retry." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vakuum" + "ko": { + "stringUnit": { + "state": "translated", + "value": "사용자 %@으로 로그인했지만 사용자 %@으로 로그인해야 합니다. 다시 시도하십시오." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vacuum" + "mk": { + "stringUnit": { + "state": "translated", + "value": "You logged in as user %@, but must log in as user %@. Please retry." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vacuum" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Você efetuou login como usuário %@, mas deve efetuar login como usuário %@. Por favor tente novamente. " } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vacuum" + "ru": { + "stringUnit": { + "state": "translated", + "value": "You logged in as user %@, but must log in as user %@. Please retry." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Aspiradora" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Hytë si përdoruesi %@, por duhet të hyni si një përdorues %@. Ju lutemi, riprovoni." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vacuum" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "คุณเข้าสู่ระบบในฐานะผู้ใช้ %@ แต่จำเป็นต้องเข้าสู่ระบบในฐานะผู้ใช้ %@ โปรดลองอีกครั้ง" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "진공" + "tr": { + "stringUnit": { + "state": "translated", + "value": "%@ kullanıcısı olarak giriş yaptınız, ancak %@ kullanıcısı olarak giriş yapmalısınız. Lütfen tekrar deneyiniz." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vacuum" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "You logged in as user %@, but must log in as user %@. Please retry." } - }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vacuum" + } + } + }, + "characters": { + "comment": "OCPasswordPolicyRule+StandardRules", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "characters" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vacuum" + "de": { + "stringUnit": { + "state": "translated", + "value": "Zeichen" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vácuo " + "en": { + "stringUnit": { + "state": "translated", + "value": "characters" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vacuum" + "es": { + "stringUnit": { + "state": "translated", + "value": "characters" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vácuo " + "fr": { + "stringUnit": { + "state": "translated", + "value": "characters" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vacuum" + "ko": { + "stringUnit": { + "state": "translated", + "value": "characters" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Zbrazëti" + "mk": { + "stringUnit": { + "state": "translated", + "value": "characters" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เครื่องดูดฝุ่น" + "ru": { + "stringUnit": { + "state": "translated", + "value": "characters" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เครื่องดูดฝุ่น" + "sq": { + "stringUnit": { + "state": "translated", + "value": "characters" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vakum" + "tr": { + "stringUnit": { + "state": "translated", + "value": "characters" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Vacuum" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "characters" } } } }, - "Viewer" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "copy": { + "comment": "Copies", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "copy" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Betrachter" + "de": { + "stringUnit": { + "state": "translated", + "value": "Kopie" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "en": { + "stringUnit": { + "state": "translated", + "value": "copy" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "copy" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "es": { + "stringUnit": { + "state": "translated", + "value": "Copiar" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "fr": { + "stringUnit": { + "state": "translated", + "value": "copy" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "ko": { + "stringUnit": { + "state": "translated", + "value": "복사" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "mk": { + "stringUnit": { + "state": "translated", + "value": "copy" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "copiar" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "ru": { + "stringUnit": { + "state": "translated", + "value": "copy" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "sq": { + "stringUnit": { + "state": "translated", + "value": "kopjoje" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Visualizador" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "คัดลอก" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "tr": { + "stringUnit": { + "state": "translated", + "value": "kopyala" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Visualizador" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "copy" } - }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + } + } + }, + "digits": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "digits" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Parës" + "de": { + "stringUnit": { + "state": "translated", + "value": "Ziffern" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "en": { + "stringUnit": { + "state": "translated", + "value": "digits" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "es": { + "stringUnit": { + "state": "translated", + "value": "digits" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "fr": { + "stringUnit": { + "state": "translated", + "value": "digits" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Viewer" + "ko": { + "stringUnit": { + "state": "translated", + "value": "digits" } - } - } - }, - "Wait Conditions" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wait Conditions" + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "digits" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wartebedingungen" + "ru": { + "stringUnit": { + "state": "translated", + "value": "digits" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wait Conditions" + "sq": { + "stringUnit": { + "state": "translated", + "value": "digits" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wait Conditions" + "tr": { + "stringUnit": { + "state": "translated", + "value": "digits" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wait Conditions" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "digits" + } + } + } + }, + "itemProperty.isFavorite": { + "comment": "Item property name (via -localizedNameForProperty:)", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Favorite" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Condiciones de espera" + "de": { + "stringUnit": { + "state": "translated", + "value": "Favorit" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wait Conditions" + "en": { + "stringUnit": { + "state": "translated", + "value": "Favorite" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "조건 대기" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Favourite" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wait Conditions" + "es": { + "stringUnit": { + "state": "translated", + "value": "Favorito" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wait Conditions" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Ajouter aux favoris" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wait Conditions" + "ko": { + "stringUnit": { + "state": "translated", + "value": "즐겨찾기" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Condições de Espera " + "mk": { + "stringUnit": { + "state": "translated", + "value": "Favorite" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wait Conditions" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Favorite" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Condições de Espera " + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Favorite" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wait Conditions" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Favorito" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wait Conditions" + "ru": { + "stringUnit": { + "state": "translated", + "value": "В избранное" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เงื่อนไขการรอ" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Vëre Si të Parapëlqyer" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "เงื่อนไขการรอ" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "รายการโปรด" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bekleme Koşulları" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Favorilere ekle" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Wait Conditions" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "收藏" } } } }, - "Waiting for metadata refresh" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for metadata refresh" + "itemProperty.lastModified": { + "comment": "Item property name (via -localizedNameForProperty:)", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Last modified" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Warten auf Aktualisierung der Metadaten" + "de": { + "stringUnit": { + "state": "translated", + "value": "Letzte Änderung" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for metadata refresh" + "en": { + "stringUnit": { + "state": "translated", + "value": "Last modified" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for metadata refresh" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Last modified" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for metadata refresh" + "es": { + "stringUnit": { + "state": "translated", + "value": "Ultima modificación" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esperando la actualización de los metadatos" + "fr": { + "stringUnit": { + "state": "translated", + "value": "Dernière modification" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for metadata refresh" + "ko": { + "stringUnit": { + "state": "translated", + "value": "최종 수정됨" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "메타데이터 새로고침을 대기 중" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Last modified" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for metadata refresh" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Last modified" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for metadata refresh" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Last modified" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for metadata refresh" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Última modificação" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Aguardando atualização de metadados " + "ru": { + "stringUnit": { + "state": "translated", + "value": "Последнее изменение" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for metadata refresh" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Ndryshuar së fundi më" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Aguardando atualização de metadados " + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "แก้ไขครั้งล่าสุด" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for metadata refresh" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Son değiştirme" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po pritet për rifreskimin e tejtëdhënave" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "最后更改" + } + } + } + }, + "itemProperty.localAttributes": { + "comment": "Item property name (via -localizedNameForProperty:)", + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "Local attributes" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังรอการรีเฟรชข้อมูล metadata" + "de": { + "stringUnit": { + "state": "translated", + "value": "Lokale Eigenschaften" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังรอการรีเฟรชข้อมูล metadata" + "en": { + "stringUnit": { + "state": "translated", + "value": "Local attributes" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Metadata yenilemesi bekleniyor" + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "Local attributes" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for metadata refresh" + "es": { + "stringUnit": { + "state": "translated", + "value": "Atributos locales" } - } - } - }, - "Waiting for user" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for user" + }, + "fr": { + "stringUnit": { + "state": "translated", + "value": "Attributs locaux" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Warten auf den Benutzer" + "ko": { + "stringUnit": { + "state": "translated", + "value": "로컬 속성" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for user" + "mk": { + "stringUnit": { + "state": "translated", + "value": "Local attributes" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for user" + "nb-NO": { + "stringUnit": { + "state": "translated", + "value": "Local attributes" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for user" + "nn-NO": { + "stringUnit": { + "state": "translated", + "value": "Local attributes" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esperando al usuario" + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "Atributos locais" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for user" + "ru": { + "stringUnit": { + "state": "translated", + "value": "Локальные атрибуты" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "사용자 대기 중" + "sq": { + "stringUnit": { + "state": "translated", + "value": "Atribute lokale" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for user" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "แอตทริบิวต์ต้นทาง" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for user" + "tr": { + "stringUnit": { + "state": "translated", + "value": "Yerel öznitelikler" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for user" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "本地属性" + } + } + } + }, + "lower-case characters": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "lower-case characters" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esperando pelo usuário " + "de": { + "stringUnit": { + "state": "translated", + "value": "Kleinbuchstaben" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for user" + "en": { + "stringUnit": { + "state": "translated", + "value": "lower-case characters" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esperando pelo usuário " + "es": { + "stringUnit": { + "state": "translated", + "value": "lower-case characters" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for user" + "fr": { + "stringUnit": { + "state": "translated", + "value": "lower-case characters" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po pritet për përdorues" + "ko": { + "stringUnit": { + "state": "translated", + "value": "lower-case characters" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังรอผู้ใช้" + "mk": { + "stringUnit": { + "state": "translated", + "value": "lower-case characters" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังรอผู้ใช้" + "ru": { + "stringUnit": { + "state": "translated", + "value": "lower-case characters" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Kullanıcı bekleniyor" + "sq": { + "stringUnit": { + "state": "translated", + "value": "lower-case characters" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting for user" + "tr": { + "stringUnit": { + "state": "translated", + "value": "lower-case characters" + } + }, + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "lower-case characters" } } } }, - "Waiting to retry (%ld of %ld)" : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting to retry (%ld of %ld)" + "special characters": { + "comment": "Password Policy", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "special characters" + } + }, + "de": { + "stringUnit": { + "state": "translated", + "value": "Sonderzeichen" } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Warten auf Neuversuch (%ld von %ld)" + "en": { + "stringUnit": { + "state": "translated", + "value": "special characters" } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting to retry (%ld of %ld)" + "es": { + "stringUnit": { + "state": "translated", + "value": "special characters" } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting to retry (%ld of %ld)" + "fr": { + "stringUnit": { + "state": "translated", + "value": "special characters" } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting to retry (%ld of %ld)" + "ko": { + "stringUnit": { + "state": "translated", + "value": "special characters" } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esperando reintentar (%ld de %ld)" + "mk": { + "stringUnit": { + "state": "translated", + "value": "special characters" } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting to retry (%ld of %ld)" + "ru": { + "stringUnit": { + "state": "translated", + "value": "special characters" } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "재시도 대기 중 (%ld / %ld)" + "sq": { + "stringUnit": { + "state": "translated", + "value": "special characters" } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting to retry (%ld of %ld)" + "tr": { + "stringUnit": { + "state": "translated", + "value": "special characters" } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting to retry (%ld of %ld)" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "special characters" + } + } + } + }, + "upper-case characters": { + "comment": "Password Policy", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "upper-case characters" } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting to retry (%ld of %ld)" + "de": { + "stringUnit": { + "state": "translated", + "value": "Großbuchstaben" } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esperando para tentar novamente (%ld de %ld)" + "en": { + "stringUnit": { + "state": "translated", + "value": "upper-case characters" } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting to retry (%ld of %ld)" + "es": { + "stringUnit": { + "state": "translated", + "value": "upper-case characters" } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Esperando para tentar novamente (%ld de %ld)" + "fr": { + "stringUnit": { + "state": "translated", + "value": "upper-case characters" } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting to retry (%ld of %ld)" + "ko": { + "stringUnit": { + "state": "translated", + "value": "upper-case characters" } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Po pritet të riprovohet (%ld nga %ld)" + "mk": { + "stringUnit": { + "state": "translated", + "value": "upper-case characters" } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังรอเพื่อลองใหม่ (%ld จาก %ld)" + "ru": { + "stringUnit": { + "state": "translated", + "value": "upper-case characters" } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "กำลังรอเพื่อลองใหม่ (%ld จาก %ld)" + "sq": { + "stringUnit": { + "state": "translated", + "value": "upper-case characters" } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Yeniden denenmeyi bekliyor (%ld / %ld)" + "tr": { + "stringUnit": { + "state": "translated", + "value": "upper-case characters" } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Waiting to retry (%ld of %ld)" + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "upper-case characters" } } } }, - "Web finger response lacks server instance relation." : { - "comment" : "OCErrorWebFingerLacksServerInstanceRelation", - "extractionState" : "manual", - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "{{itemName}} can't be copied into itself.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be copied into itself." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Webfinger-Antwort fehlt Bezug zur Serverinstanz." + "de": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} kann nicht in sich selbst kopiert werden." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "en": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be copied into itself." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be copied into itself." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "es": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be copied into itself." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "fr": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be copied into itself." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "ko": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be copied into itself." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "mk": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be copied into itself." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} não pode ser copiado para si mesmo." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "ru": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be copied into itself." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "sq": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} s’mund të kopjohet te vetja." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A resposta do dedo da Web carece de relação de instância do servidor." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be copied into itself." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "tr": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be copied into itself." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "A resposta do dedo da Web carece de relação de instância do servidor." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be copied into itself." + } + } + } + }, + "{{itemName}} can't be moved into itself.": { + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be moved into itself." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "de": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} kann nicht in sich selbst verschoben werden." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "en": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be moved into itself." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be moved into itself." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "es": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be moved into itself." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "fr": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be moved into itself." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "Web finger response lacks server instance relation." + "ko": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be moved into itself." } - } - } - }, - "You logged in as user %@, but must log in as user %@. Please retry." : { - "localizations" : { - "cs" : { - "stringUnit" : { - "state" : "translated", - "value" : "You logged in as user %@, but must log in as user %@. Please retry." + }, + "mk": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be moved into itself." } }, - "de" : { - "stringUnit" : { - "state" : "translated", - "value" : "Sie haben sich als Benutzer %@ angemeldet, müssen sich aber als Benutzer %@ anmelden. Bitte versuchen Sie es erneut." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} não pode ser movido para si mesmo." } }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "You logged in as user %@, but must log in as user %@. Please retry." + "ru": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be moved into itself." } }, - "en_GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "You logged in as user %@, but must log in as user %@. Please retry." + "sq": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} s’mund të kalohet te vetvetja." } }, - "en-GB" : { - "stringUnit" : { - "state" : "translated", - "value" : "You logged in as user %@, but must log in as user %@. Please retry." + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be moved into itself." } }, - "es" : { - "stringUnit" : { - "state" : "translated", - "value" : "Ha iniciado sesión como usuario %@, pero debe iniciar sesión como usuario %@. Por favor, inténtalo de nuevo." + "tr": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be moved into itself." } }, - "fr" : { - "stringUnit" : { - "state" : "translated", - "value" : "You logged in as user %@, but must log in as user %@. Please retry." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} can't be moved into itself." + } + } + } + }, + "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing.": { + "extractionState": "manual", + "localizations": { + "cs": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } }, - "ko" : { - "stringUnit" : { - "state" : "translated", - "value" : "사용자 %@으로 로그인했지만 사용자 %@으로 로그인해야 합니다. 다시 시도하십시오." + "de": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} wird auf dem Server verarbeitet und kann bis zum Ende der Verarbeitung nicht heruntergeladen werden." } }, - "mk" : { - "stringUnit" : { - "state" : "translated", - "value" : "You logged in as user %@, but must log in as user %@. Please retry." + "en": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } }, - "nb_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "You logged in as user %@, but must log in as user %@. Please retry." + "en-GB": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } }, - "nn_NO" : { - "stringUnit" : { - "state" : "translated", - "value" : "You logged in as user %@, but must log in as user %@. Please retry." + "es": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } }, - "pt_BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Você efetuou login como usuário %@, mas deve efetuar login como usuário %@. Por favor tente novamente. " + "fr": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } }, - "pt_PT" : { - "stringUnit" : { - "state" : "translated", - "value" : "You logged in as user %@, but must log in as user %@. Please retry." + "ko": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } }, - "pt-BR" : { - "stringUnit" : { - "state" : "translated", - "value" : "Você efetuou login como usuário %@, mas deve efetuar login como usuário %@. Por favor tente novamente. " + "mk": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } }, - "ru" : { - "stringUnit" : { - "state" : "translated", - "value" : "You logged in as user %@, but must log in as user %@. Please retry." + "pt-BR": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} é atualmente processado no servidor e não pode ser baixado até que termine o processamento." } }, - "sq" : { - "stringUnit" : { - "state" : "translated", - "value" : "Hytë si përdoruesi %@, por duhet të hyni si një përdorues %@. Ju lutemi, riprovoni." + "ru": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } }, - "th_TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คุณเข้าสู่ระบบในฐานะผู้ใช้ %@ แต่จำเป็นต้องเข้าสู่ระบบในฐานะผู้ใช้ %@ โปรดลองอีกครั้ง" + "sq": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} aktualisht po përpunohet te shërbyesi dhe s’mund të shkarkohet, deri sa të përfundojë procesi." } }, - "th-TH" : { - "stringUnit" : { - "state" : "translated", - "value" : "คุณเข้าสู่ระบบในฐานะผู้ใช้ %@ แต่จำเป็นต้องเข้าสู่ระบบในฐานะผู้ใช้ %@ โปรดลองอีกครั้ง" + "th-TH": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } }, - "tr" : { - "stringUnit" : { - "state" : "translated", - "value" : "%@ kullanıcısı olarak giriş yaptınız, ancak %@ kullanıcısı olarak giriş yapmalısınız. Lütfen tekrar deneyiniz." + "tr": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } }, - "zh-Hans" : { - "stringUnit" : { - "state" : "translated", - "value" : "You logged in as user %@, but must log in as user %@. Please retry." + "zh-Hans": { + "stringUnit": { + "state": "translated", + "value": "{{itemName}} is currently processed on the server and can't be downloaded until it finishes processing." } } } } }, - "version" : "1.0" -} \ No newline at end of file + "version": "1.0" +} From 92395524e4cfb3254945c745a2a5dea05c9bf7fc Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Sun, 24 Nov 2024 16:45:13 +0100 Subject: [PATCH 4/7] - OCSearchResult: - add new .error property where errors are set if they were returned from the server - change state of data source to loading on start and then idle on completion --- ownCloudSDK/Core/Search/OCSearchResult.h | 2 ++ ownCloudSDK/Core/Search/OCSearchResult.m | 9 +++++++++ 2 files changed, 11 insertions(+) diff --git a/ownCloudSDK/Core/Search/OCSearchResult.h b/ownCloudSDK/Core/Search/OCSearchResult.h index 07ff537a..5d87f837 100644 --- a/ownCloudSDK/Core/Search/OCSearchResult.h +++ b/ownCloudSDK/Core/Search/OCSearchResult.h @@ -32,6 +32,8 @@ NS_ASSUME_NONNULL_BEGIN @property(strong) OCKQLQuery kqlQuery; @property(strong) OCDataSource *results; +@property(strong,nullable) NSError *error; + @property(strong,nullable) OCProgress *progress; - (void)cancel; diff --git a/ownCloudSDK/Core/Search/OCSearchResult.m b/ownCloudSDK/Core/Search/OCSearchResult.m index 1a06c21f..bfa28d96 100644 --- a/ownCloudSDK/Core/Search/OCSearchResult.m +++ b/ownCloudSDK/Core/Search/OCSearchResult.m @@ -39,6 +39,7 @@ - (instancetype)initWithKQLQuery:(OCKQLQuery)kqlQuery core:(OCCore *)core self.kqlQuery = kqlQuery; self.results = [[OCDataSourceArray alloc] initWithItems:nil]; [((OCDataSourceArray *)self.results) setVersionedItems:@[]]; + self.results.state = OCDataSourceStateLoading; } return (self); @@ -62,6 +63,14 @@ - (void)_handleResultEvent:(OCEvent *)event NSArray *searchResults = OCTypedCast(event.result, NSArray); OCDataSourceArray *searchResultDatasource = (OCDataSourceArray *)self.results; + self.results.state = OCDataSourceStateIdle; + + if (event.error != nil) { + self.error = event.error; + OCLogError(@"Search ended with error: %@", event.error); + return; + } + if (searchResults != nil) { for (OCItem *item in searchResults) From c4fc8412fbd99cb377622089891a360a53297823 Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Fri, 29 Nov 2024 17:07:51 +0100 Subject: [PATCH 5/7] - OCQueryCondition+KQLBuilder: change syntax expression for greater than / less than to be compatible with oCIS KQL --- ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.m b/ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.m index a32cf944..e6ef8626 100644 --- a/ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.m +++ b/ownCloudSDK/Query/Condition/OCQueryCondition+KQLBuilder.m @@ -164,11 +164,11 @@ - (OCKQLString)_kqlStringWithColumnNameMap:(NSDictionary%@)", kqlProperty, smartQuotedValue]; + query = [[NSString alloc] initWithFormat:@"(%@:>%@)", kqlProperty, smartQuotedValue]; break; case OCQueryConditionOperatorPropertyLessThanValue: - query = [[NSString alloc] initWithFormat:@"(%@<%@)", kqlProperty, smartQuotedValue]; + query = [[NSString alloc] initWithFormat:@"(%@:<%@)", kqlProperty, smartQuotedValue]; break; case OCQueryConditionOperatorPropertyEqualToValue: From 7565b3d0b6926ea7b4d30d1242b71b49a2990419 Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Sat, 30 Nov 2024 16:29:57 +0100 Subject: [PATCH 6/7] - OCCore+Search: add quick check for connectivity and return an error if none is available --- ownCloudSDK/Core/Search/OCCore+Search.m | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/ownCloudSDK/Core/Search/OCCore+Search.m b/ownCloudSDK/Core/Search/OCCore+Search.m index 4f341f3b..42f0e044 100644 --- a/ownCloudSDK/Core/Search/OCCore+Search.m +++ b/ownCloudSDK/Core/Search/OCCore+Search.m @@ -18,6 +18,7 @@ #import "OCCore+Search.h" #import "OCConnection.h" +#import "NSError+OCError.h" @implementation OCCore (Search) @@ -25,11 +26,18 @@ - (nullable OCSearchResult *)searchFilesWithPattern:(NSString *)pattern limit:(n { OCSearchResult *searchResult = [[OCSearchResult alloc] initWithKQLQuery:pattern core:self]; - OCProgress *progress = [self.connection searchFilesWithPattern:pattern limit:limit options:options resultTarget:[OCEventTarget eventTargetWithEphermalEventHandlerBlock:^(OCEvent * _Nonnull event, id _Nonnull sender) { - [searchResult _handleResultEvent:event]; - } userInfo:nil ephermalUserInfo:nil]]; - - searchResult.progress = progress; + if (self.connectionStatus != OCCoreConnectionStatusOnline) + { + searchResult.error = OCError(OCErrorNotAvailableOffline); + } + else + { + OCProgress *progress = [self.connection searchFilesWithPattern:pattern limit:limit options:options resultTarget:[OCEventTarget eventTargetWithEphermalEventHandlerBlock:^(OCEvent * _Nonnull event, id _Nonnull sender) { + [searchResult _handleResultEvent:event]; + } userInfo:nil ephermalUserInfo:nil]]; + + searchResult.progress = progress; + } return (searchResult); } From 7bd514a73040560f75113ce325fd26d3bdf4df36 Mon Sep 17 00:00:00 2001 From: Felix Schwarz Date: Sat, 30 Nov 2024 17:05:10 +0100 Subject: [PATCH 7/7] - OCCapabilities: add methods to return supported server-side search properties and server-provided keywords for each property --- .../Connection/Capabilities/OCCapabilities.h | 4 +- .../Connection/Capabilities/OCCapabilities.m | 47 +++++++++++++++++++ 2 files changed, 50 insertions(+), 1 deletion(-) diff --git a/ownCloudSDK/Connection/Capabilities/OCCapabilities.h b/ownCloudSDK/Connection/Capabilities/OCCapabilities.h index 3f08b8d2..49b78083 100644 --- a/ownCloudSDK/Connection/Capabilities/OCCapabilities.h +++ b/ownCloudSDK/Connection/Capabilities/OCCapabilities.h @@ -138,7 +138,9 @@ typedef NSNumber* OCCapabilityBool; @property(readonly,nonatomic) BOOL federatedSharingSupported; #pragma mark - Search -@property(readonly,nonatomic) BOOL serverSideSearchSupported; +@property(readonly,nonatomic) BOOL serverSideSearchSupported; //!< Indicates if ocis-style KQL-based server-side search is available +@property(readonly,nullable,nonatomic) NSArray *enabledServerSideSearchProperties; //!< Returns a list of enabled/supported server-side search properties (f.ex. "name", "mtime", "size", "mediatype", "type", "tag", "tags", "content", "scope") +- (nullable NSArray *)supportedKeywordsForServerSideSearchProperty:(NSString *)searchPropertyName; //!< Returns the server-provided list of supported keywords for that property (f.ex. "document", "spreadsheet", … for "mediatype") #pragma mark - Notifications @property(readonly,nullable,nonatomic) NSArray *notificationEndpoints; diff --git a/ownCloudSDK/Connection/Capabilities/OCCapabilities.m b/ownCloudSDK/Connection/Capabilities/OCCapabilities.m index 1d28fc58..0409cc4c 100644 --- a/ownCloudSDK/Connection/Capabilities/OCCapabilities.m +++ b/ownCloudSDK/Connection/Capabilities/OCCapabilities.m @@ -750,6 +750,53 @@ - (BOOL)serverSideSearchSupported return (OCTypedCast(_capabilities[@"search"], NSDictionary) != nil); } +- (NSArray *)enabledServerSideSearchProperties +{ + NSDictionary *searchCapabilityDict = OCTypedCast(_capabilities[@"search"], NSDictionary); + NSMutableArray *enabledProperties = nil; + if (searchCapabilityDict != nil) + { + NSDictionary *propertyListDict = OCTypedCast(searchCapabilityDict[@"property"], NSDictionary); + if (propertyListDict != nil) + { + for (NSString *property in propertyListDict) + { + NSDictionary *propertyDict = OCTypedCast(propertyListDict[property], NSDictionary); + + if (propertyDict != nil) + { + if ([propertyDict[@"enabled"] isKindOfClass:NSNumber.class] && (((NSNumber *)propertyDict[@"enabled"]).boolValue)) + { + if (enabledProperties == nil) { enabledProperties = [NSMutableArray new]; } + [enabledProperties addObject:property]; + } + } + } + } + } + + return (enabledProperties); +} + +- (nullable NSArray *)supportedKeywordsForServerSideSearchProperty:(NSString *)searchPropertyName +{ + NSDictionary *searchCapabilityDict = OCTypedCast(_capabilities[@"search"], NSDictionary); + NSMutableArray *enabledProperties = nil; + if (searchCapabilityDict != nil) + { + NSDictionary *propertyListDict = OCTypedCast(searchCapabilityDict[@"property"], NSDictionary); + if (propertyListDict != nil) + { + NSDictionary *propertyDict = OCTypedCast(propertyListDict[searchPropertyName], NSDictionary); + if ((propertyDict != nil) && [propertyDict[@"keywords"] isKindOfClass:NSArray.class]) + { + return (propertyDict[@"keywords"]); + } + } + } + return (nil); +} + #pragma mark - Notifications - (NSArray *)notificationEndpoints {