From 8a32d5099c066f2596d9b4dc92e8f454157fd527 Mon Sep 17 00:00:00 2001 From: Mikhail Golovko Date: Mon, 13 Oct 2025 13:38:03 +0300 Subject: [PATCH 1/2] IOS-5312 Delete newSharingExtension toggle --- .../Common/Model/ObjectSearchData.swift | 33 - .../ObjectSearch/ObjectSearchModuleData.swift | 11 - .../ObjectSearch/ObjectSearchView.swift | 31 - .../ObjectSearch/ObjectSearchViewModel.swift | 54 - .../Search/SpaceSearch/SpaceSearchData.swift | 7 - .../Search/SpaceSearch/SpaceSearchView.swift | 30 - .../SpaceSearch/SpaceSearchViewModel.swift | 50 - .../ShareLegacyCoordinatorView.swift | 33 - .../ShareLegacyCoordinatorViewModel.swift | 26 - .../SpaceHub/SpaceHubCoordinatorView.swift | 3 - .../SpaceHubCoordinatorViewModel.swift | 7 +- .../Rows/ShareLegacyArrowRow.swift | 23 - .../Rows/ShareLegacyDebugRowView.swift | 19 - .../Rows/ShareLegacySelectionRow.swift | 20 - .../ShareLegacyContentModels.swift | 42 - .../ShareLegacyOptionsDI.swift | 8 - .../ShareLegacyOptionsInteractor.swift | 236 - .../ShareLegacyOptionsModuleOutput.swift | 7 - .../ShareLegacyOptionsView.swift | 90 - .../ShareLegacyOptionsViewModel.swift | 223 - .../SharingTip/SharingTip.swift | 0 .../SharingTip/SharingTipHandler.swift | 0 .../SharingTip/SharingTipView.swift | 0 .../SharingTip/SharingTipViewModel.swift | 0 .../SpaceHub/Subviews/NewSpaceCardLabel.swift | 2 +- .../Subviews/SpacesManagerRowView.swift | 2 +- .../SpaceObjectIconPickerViewModel.swift | 2 +- .../Generated/FeatureFlags+Flags.swift | 5 - .../FeatureDescription+Flags.swift | 6 - .../Loc/Sources/Loc/Generated/Strings.swift | 36 - .../Loc/Resources/Localizable.xcstrings | 3998 ++--------------- 31 files changed, 312 insertions(+), 4692 deletions(-) delete mode 100644 Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/Common/Model/ObjectSearchData.swift delete mode 100644 Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/ObjectSearch/ObjectSearchModuleData.swift delete mode 100644 Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/ObjectSearch/ObjectSearchView.swift delete mode 100644 Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/ObjectSearch/ObjectSearchViewModel.swift delete mode 100644 Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/SpaceSearch/SpaceSearchData.swift delete mode 100644 Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/SpaceSearch/SpaceSearchView.swift delete mode 100644 Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/SpaceSearch/SpaceSearchViewModel.swift delete mode 100644 Anytype/Sources/PresentationLayer/Flows/ShareLegacyCoordinator/ShareLegacyCoordinatorView.swift delete mode 100644 Anytype/Sources/PresentationLayer/Flows/ShareLegacyCoordinator/ShareLegacyCoordinatorViewModel.swift delete mode 100644 Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/Rows/ShareLegacyArrowRow.swift delete mode 100644 Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/Rows/ShareLegacyDebugRowView.swift delete mode 100644 Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/Rows/ShareLegacySelectionRow.swift delete mode 100644 Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyContentModels.swift delete mode 100644 Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsDI.swift delete mode 100644 Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsInteractor.swift delete mode 100644 Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsModuleOutput.swift delete mode 100644 Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsView.swift delete mode 100644 Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsViewModel.swift rename Anytype/Sources/PresentationLayer/Modules/{ShareLegacyOptions => SharingExtension}/SharingTip/SharingTip.swift (100%) rename Anytype/Sources/PresentationLayer/Modules/{ShareLegacyOptions => SharingExtension}/SharingTip/SharingTipHandler.swift (100%) rename Anytype/Sources/PresentationLayer/Modules/{ShareLegacyOptions => SharingExtension}/SharingTip/SharingTipView.swift (100%) rename Anytype/Sources/PresentationLayer/Modules/{ShareLegacyOptions => SharingExtension}/SharingTip/SharingTipViewModel.swift (100%) diff --git a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/Common/Model/ObjectSearchData.swift b/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/Common/Model/ObjectSearchData.swift deleted file mode 100644 index fd841020f3..0000000000 --- a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/Common/Model/ObjectSearchData.swift +++ /dev/null @@ -1,33 +0,0 @@ -import Services -import SwiftUI -import AnytypeCore - -struct ObjectSearchData: SearchDataProtocol { - let id = UUID() - - let title: String - let iconImage: Icon? - - let mode: SerchDataPresentationMode - - let details: ObjectDetails - - init(details: ObjectDetails) { - self.title = details.pluralTitle - self.iconImage = details.objectIconImage - self.details = details - - let descriptionInfo = details.description.isNotEmpty ? SearchDataDescriptionInfo( - description: details.description, - descriptionTextColor: .Text.primary, - descriptionFont: .relation3Regular - ) : nil - - self.mode = .full( - descriptionInfo: descriptionInfo, - callout: details.objectType.displayName.isNotEmpty ? details.objectType.displayName : nil - ) - - } -} - diff --git a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/ObjectSearch/ObjectSearchModuleData.swift b/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/ObjectSearch/ObjectSearchModuleData.swift deleted file mode 100644 index e886d981f5..0000000000 --- a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/ObjectSearch/ObjectSearchModuleData.swift +++ /dev/null @@ -1,11 +0,0 @@ -import Foundation -import Services - -struct ObjectSearchModuleData: Identifiable, Hashable { - let spaceId: String - let title: String? - var layoutLimits: [DetailsLayout] = [] - @EquatableNoop var onSelect: (ObjectSearchData) -> Void - - var id: Int { hashValue } -} diff --git a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/ObjectSearch/ObjectSearchView.swift b/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/ObjectSearch/ObjectSearchView.swift deleted file mode 100644 index 25d06cf50f..0000000000 --- a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/ObjectSearch/ObjectSearchView.swift +++ /dev/null @@ -1,31 +0,0 @@ -import Foundation -import SwiftUI - -// Delete with FeatureFlags.newSharingExtension -@available(*, deprecated, message: "Use SearchView directly") -struct ObjectSearchView: View { - - @StateObject private var model: ObjectSearchViewModel - - init(data: ObjectSearchModuleData) { - self._model = StateObject(wrappedValue: ObjectSearchViewModel(data: data)) - } - - var body: some View { - SearchView( - title: model.title, - placeholder: Loc.search, - searchData: model.searchData, - emptyViewMode: .object, - search: { text in - await model.search(text: text) - }, - onSelect: { data in - model.onSelect(searchData: data) - } - ) - .onAppear { - model.onAppear() - } - } -} diff --git a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/ObjectSearch/ObjectSearchViewModel.swift b/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/ObjectSearch/ObjectSearchViewModel.swift deleted file mode 100644 index 8f27cb9c50..0000000000 --- a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/ObjectSearch/ObjectSearchViewModel.swift +++ /dev/null @@ -1,54 +0,0 @@ -import SwiftUI -import Services -import Combine - -/// https://www.figma.com/file/TupCOWb8sC9NcjtSToWIkS/Mobile---main?node-id=6455%3A4097 -@MainActor -final class ObjectSearchViewModel: ObservableObject { - - @Injected(\.searchService) - private var searchService: any SearchServiceProtocol - private let data: ObjectSearchModuleData - - @Published var searchData: [SearchDataSection] = [] - var title: String? { data.title } - - init(data: ObjectSearchModuleData) { - self.data = data - } - - func onAppear() { - AnytypeAnalytics.instance().logScreenSearch(spaceId: data.spaceId, type: .empty) - } - - func onSelect(searchData: ObjectSearchData) { - AnytypeAnalytics.instance().logSearchResult(spaceId: data.spaceId) - data.onSelect(searchData) - } - - func search(text: String) async { - do { - let result: [ObjectDetails] - - if data.layoutLimits.isNotEmpty { - result = try await searchService.searchObjectsWithLayouts(text: text, layouts: data.layoutLimits, excludedIds: [], spaceId: data.spaceId) - } else { - result = try await searchService.search(text: text, spaceId: data.spaceId) - } - - let objectsSearchData = result.compactMap { ObjectSearchData(details: $0) } - - guard objectsSearchData.isNotEmpty else { - searchData = [] - return - } - - searchData = [SearchDataSection(searchData: objectsSearchData, sectionName: "")] - - } catch is CancellationError { - // Ignore cancellations. That means we was run new search. - } catch { - searchData = [] - } - } -} diff --git a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/SpaceSearch/SpaceSearchData.swift b/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/SpaceSearch/SpaceSearchData.swift deleted file mode 100644 index 0c011cec03..0000000000 --- a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/SpaceSearch/SpaceSearchData.swift +++ /dev/null @@ -1,7 +0,0 @@ -import Foundation - -struct SpaceSearchData: Identifiable, Hashable { - var id: Int { hashValue } - - @EquatableNoop var onSelect: (SpaceView) -> Void -} diff --git a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/SpaceSearch/SpaceSearchView.swift b/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/SpaceSearch/SpaceSearchView.swift deleted file mode 100644 index c5a62586ca..0000000000 --- a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/SpaceSearch/SpaceSearchView.swift +++ /dev/null @@ -1,30 +0,0 @@ -import Foundation -import SwiftUI - -// Delete with FeatureFlags.newSharingExtension -struct SpaceSearchView: View { - - @StateObject private var model: SpaceSearchViewModel - - init(data: SpaceSearchData) { - self._model = StateObject(wrappedValue: SpaceSearchViewModel(data: data)) - } - - var body: some View { - SearchView( - title: Loc.Spaces.Search.title, - placeholder: Loc.Spaces.Search.title, - searchData: model.searchData, - emptyViewMode: .object, - search: { text in - model.search(text: text) - }, - onSelect: { data in - model.onSelect(searchData: data) - } - ) - .task { - await model.startParticipantTask() - } - } -} diff --git a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/SpaceSearch/SpaceSearchViewModel.swift b/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/SpaceSearch/SpaceSearchViewModel.swift deleted file mode 100644 index aa4b3a666a..0000000000 --- a/Anytype/Sources/PresentationLayer/Common/SwiftUI/Search/SpaceSearch/SpaceSearchViewModel.swift +++ /dev/null @@ -1,50 +0,0 @@ -import Foundation -import SwiftUI -import Combine - -@MainActor -final class SpaceSearchViewModel: ObservableObject { - - @Injected(\.participantSpacesStorage) - private var participantSpacesStorage: any ParticipantSpacesStorageProtocol - - private let data: SpaceSearchData - private var spaces = [SpaceView]() - - @Published var searchData = [SearchDataSection]() - - var lastSearchText: String = "" - - init(data: SpaceSearchData) { - self.data = data - } - - func onSelect(searchData: SpaceView) { - data.onSelect(searchData) - } - - func startParticipantTask() async { - for await participantSpaces in participantSpacesStorage.activeParticipantSpacesPublisher.values { - spaces = participantSpaces.filter(\.canEdit).map(\.spaceView) - search(text: lastSearchText) - } - } - - func search(text: String) { - let searchSpacesResult: [SpaceView] - if text.isNotEmpty { - searchSpacesResult = spaces.filter { $0.title.contains(text) } - } else { - searchSpacesResult = spaces - } - - searchData = [.init(searchData: searchSpacesResult, sectionName: "")] - - lastSearchText = text - } -} - -extension SpaceView: SearchDataProtocol { - var iconImage: Icon? { objectIconImage } - var mode: SerchDataPresentationMode { .full(descriptionInfo: nil, callout: nil) } -} diff --git a/Anytype/Sources/PresentationLayer/Flows/ShareLegacyCoordinator/ShareLegacyCoordinatorView.swift b/Anytype/Sources/PresentationLayer/Flows/ShareLegacyCoordinator/ShareLegacyCoordinatorView.swift deleted file mode 100644 index e5fb71edb8..0000000000 --- a/Anytype/Sources/PresentationLayer/Flows/ShareLegacyCoordinator/ShareLegacyCoordinatorView.swift +++ /dev/null @@ -1,33 +0,0 @@ -import Foundation -import SwiftUI - -struct ShareLegacyCoordinatorView: View { - - @StateObject private var model: ShareLegacyCoordinatorViewModel - @Environment(\.dismiss) private var dismiss - - init(spaceId: String) { - self._model = StateObject(wrappedValue: ShareLegacyCoordinatorViewModel(spaceId: spaceId)) - } - - var body: some View { - NavigationView { - ShareLegacyOptionsView(spaceId: model.spaceId, output: model) - } - .sheet(item: $model.showSearchObjectData) { - // Delete with FeatureFlags.newSharingExtension - ObjectSearchView(data: $0) - } - .sheet(item: $model.showSpaceSearchData) { - // Delete with FeatureFlags.newSharingExtension - SpaceSearchView(data: $0) - } - .onChange(of: model.dismiss) { - dismiss() - } - } -} - -#Preview { - ShareLegacyCoordinatorView(spaceId: "1337") -} diff --git a/Anytype/Sources/PresentationLayer/Flows/ShareLegacyCoordinator/ShareLegacyCoordinatorViewModel.swift b/Anytype/Sources/PresentationLayer/Flows/ShareLegacyCoordinator/ShareLegacyCoordinatorViewModel.swift deleted file mode 100644 index 8302b81f25..0000000000 --- a/Anytype/Sources/PresentationLayer/Flows/ShareLegacyCoordinator/ShareLegacyCoordinatorViewModel.swift +++ /dev/null @@ -1,26 +0,0 @@ -import Foundation -import SwiftUI -import Services - -@MainActor -final class ShareLegacyCoordinatorViewModel: ObservableObject, ShareLegacyOptionsModuleOutput { - - let spaceId: String - @Published var showSearchObjectData: ObjectSearchModuleData? - @Published var showSpaceSearchData: SpaceSearchData? - @Published var dismiss = false - - // MARK: - ShareOptionsModuleOutput - - init(spaceId: String) { - self.spaceId = spaceId - } - - func onSpaceSelection(completion: @escaping (SpaceView) -> Void) { - showSpaceSearchData = SpaceSearchData(onSelect: completion) - } - - func onDocumentSelection(data: ObjectSearchModuleData) { - showSearchObjectData = data - } -} diff --git a/Anytype/Sources/PresentationLayer/Flows/SpaceHub/SpaceHubCoordinatorView.swift b/Anytype/Sources/PresentationLayer/Flows/SpaceHub/SpaceHubCoordinatorView.swift index 770b017949..c0abb4b6b4 100644 --- a/Anytype/Sources/PresentationLayer/Flows/SpaceHub/SpaceHubCoordinatorView.swift +++ b/Anytype/Sources/PresentationLayer/Flows/SpaceHub/SpaceHubCoordinatorView.swift @@ -27,9 +27,6 @@ struct SpaceHubCoordinatorView: View { .updateShortcuts(spaceId: model.fallbackSpaceId) .snackbar(toastBarData: $model.toastBarData) - .sheet(item: $model.sharingSpaceId) { - ShareLegacyCoordinatorView(spaceId: $0.value) - } .sheet(item: $model.showGalleryImport) { data in GalleryInstallationCoordinatorView(data: data) } diff --git a/Anytype/Sources/PresentationLayer/Flows/SpaceHub/SpaceHubCoordinatorViewModel.swift b/Anytype/Sources/PresentationLayer/Flows/SpaceHub/SpaceHubCoordinatorViewModel.swift index 9b15ff4424..1cabefc05f 100644 --- a/Anytype/Sources/PresentationLayer/Flows/SpaceHub/SpaceHubCoordinatorViewModel.swift +++ b/Anytype/Sources/PresentationLayer/Flows/SpaceHub/SpaceHubCoordinatorViewModel.swift @@ -16,7 +16,6 @@ final class SpaceHubCoordinatorViewModel: ObservableObject, SpaceHubModuleOutput @Published var spaceProfileData: AccountInfo? @Published var userWarningAlert: UserWarningAlert? @Published var typeSearchForObjectCreationSpaceId: StringIdentifiable? - @Published var sharingSpaceId: StringIdentifiable? @Published var showSharingExtension = false @Published var membershipTierId: IntIdentifiable? @Published var showGalleryImport: GalleryInstallationData? @@ -450,11 +449,7 @@ final class SpaceHubCoordinatorViewModel: ObservableObject, SpaceHubModuleOutput case .createObjectFromWidget: createAndShowDefaultObject(route: .widget) case .showSharingExtension: - if FeatureFlags.newSharingExtension { - showSharingExtension = true - } else { - sharingSpaceId = fallbackSpaceId?.identifiable - } + showSharingExtension = true case let .galleryImport(type, source): showGalleryImport = GalleryInstallationData(type: type, source: source) case .invite(let cid, let key): diff --git a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/Rows/ShareLegacyArrowRow.swift b/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/Rows/ShareLegacyArrowRow.swift deleted file mode 100644 index c427df9257..0000000000 --- a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/Rows/ShareLegacyArrowRow.swift +++ /dev/null @@ -1,23 +0,0 @@ -import Foundation -import SwiftUI - -struct ShareLegacyArrowRow: View { - - let title: String - let description: String? - - var body: some View { - HStack(spacing: 0) { - AnytypeText(title, style: .uxBodyRegular) - .foregroundColor(.Text.primary) - Spacer() - if let description { - AnytypeText(description, style: .uxBodyRegular) - .foregroundColor(.Text.secondary) - .lineLimit(1) - Spacer.fixedWidth(10) - } - Image(asset: .RightAttribute.disclosure) - } - } -} diff --git a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/Rows/ShareLegacyDebugRowView.swift b/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/Rows/ShareLegacyDebugRowView.swift deleted file mode 100644 index ac21d1ca5f..0000000000 --- a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/Rows/ShareLegacyDebugRowView.swift +++ /dev/null @@ -1,19 +0,0 @@ -import Foundation -import SwiftUI - -struct ShareLegacyDebugRowView: View { - - let index: Int - let mimeTypes: [String] - - var body: some View { - HStack { - AnytypeText("\(index)", style: .uxCalloutRegular) - .foregroundColor(.Text.primary) - VStack { - AnytypeText(Loc.Debug.mimeTypes(mimeTypes.joined(separator: ", ")), style: .uxCalloutRegular) - .foregroundColor(.Text.primary) - } - } - } -} diff --git a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/Rows/ShareLegacySelectionRow.swift b/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/Rows/ShareLegacySelectionRow.swift deleted file mode 100644 index c3366b2097..0000000000 --- a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/Rows/ShareLegacySelectionRow.swift +++ /dev/null @@ -1,20 +0,0 @@ -import Foundation -import SwiftUI - -struct ShareLegacySelectionRow: View { - - let text: String - let selected: Bool - - var body: some View { - HStack { - Image(asset: .system(name: "checkmark")) - .setZeroOpacity(!selected) - .foregroundColor(.blue) - Spacer.fixedWidth(8) - AnytypeText(text, style: .bodyRegular) - .foregroundColor(.Text.primary) - Spacer() - } - } -} diff --git a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyContentModels.swift b/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyContentModels.swift deleted file mode 100644 index 6b2c957eca..0000000000 --- a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyContentModels.swift +++ /dev/null @@ -1,42 +0,0 @@ -import Foundation -import Services -import AnytypeCore - -struct ShareLegacyContentCounter { - var textCount: Int - var bookmarksCount: Int - var filesCount: Int - - var onlyText: Bool { - textCount > 0 && bookmarksCount == 0 && filesCount == 0 - } - - var onlyBookmarks: Bool { - textCount == 0 && bookmarksCount > 0 && filesCount == 0 - } - - var onlyFiles: Bool { - textCount == 0 && bookmarksCount == 0 && filesCount > 0 - } -} - -enum SharedLegacySaveOptions { - case container(spaceId: String, linkToObject: ObjectDetails?) - case newObject(spaceId: String, linkToObject: ObjectDetails?) - case blocks(spaceId: String, addToObject: ObjectDetails) -} - -enum ShareLegacySaveAsType { - case container - case object - case block - - var supportedLayouts: [DetailsLayout] { - switch self { - case .object, .container: - return DetailsLayout.editorLayouts + [.collection] - case .block: - return DetailsLayout.editorLayouts - } - } -} diff --git a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsDI.swift b/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsDI.swift deleted file mode 100644 index 394f97b8c7..0000000000 --- a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsDI.swift +++ /dev/null @@ -1,8 +0,0 @@ -import Foundation -import Factory - -extension Container { - var shareLegacyOptionsInteractor: Factory { - self { ShareLegacyOptionsInteractor() } - } -} diff --git a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsInteractor.swift b/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsInteractor.swift deleted file mode 100644 index 60b49a7368..0000000000 --- a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsInteractor.swift +++ /dev/null @@ -1,236 +0,0 @@ -import Foundation -import Services -import SharedContentManager -import AnytypeCore - - -protocol ShareLegacyOptionsInteractorProtocol: AnyObject, Sendable { - func saveContent(saveOptions: SharedLegacySaveOptions, content: SharedContent) async throws -} - -final class ShareLegacyOptionsInteractor: ShareLegacyOptionsInteractorProtocol { - - private let blockService: any BlockServiceProtocol = Container.shared.blockService() - private let bookmarkService: any BookmarkServiceProtocol = Container.shared.bookmarkService() - private let objectActionsService: any ObjectActionsServiceProtocol = Container.shared.objectActionsService() - private let fileService: any FileActionsServiceProtocol = Container.shared.fileActionsService() - private let pasteboardMiddlewareService: any PasteboardMiddlewareServiceProtocol = Container.shared.pasteboardMiddleService() - private let objectTypeProvider: any ObjectTypeProviderProtocol = Container.shared.objectTypeProvider() - - func saveContent(saveOptions: SharedLegacySaveOptions, content: SharedContent) async throws { - switch saveOptions { - case .container(let spaceId, let linkToObject): - try await saveNewContainer(spaceId: spaceId, linkToObject: linkToObject, content: content) - case .newObject(let spaceId, let linkToObject): - await saveNewObject(spaceId: spaceId, linkToObject: linkToObject, content: content) - case .blocks(let spaceId, let addToObject): - await saveNewBlock(spaceId: spaceId, addToObject: addToObject, content: content, logAnalytics: true) - } - } - - // MARK: - Private - - private func saveNewContainer(spaceId: String, linkToObject: ObjectDetails?, content: SharedContent) async throws { - let noteObject = try await objectActionsService.createObject( - name: content.title ?? "", - typeUniqueKey: .note, - shouldDeleteEmptyObject: false, - shouldSelectType: false, - shouldSelectTemplate: false, - spaceId: spaceId, - origin: .sharingExtension, - templateId: nil - ) - await saveNewBlock(spaceId: spaceId, addToObject: noteObject, content: content, logAnalytics: false) - if let linkToObject { - try await linkTo(object: linkToObject, newObjectId: noteObject.id, blockInformation: BlockInformation.emptyLink(targetId: noteObject.id)) - } - AnytypeAnalytics.instance().logCreateObject(objectType: noteObject.objectType.analyticsType, spaceId: noteObject.spaceId, route: .sharingExtension) - } - - private func saveNewObject(spaceId: String, linkToObject: ObjectDetails?, content: SharedContent) async { - for contentItem in content.items { - do { - - let newObjectId: String - let blockInformation: BlockInformation - - switch contentItem { - case let .text(text): - newObjectId = try await createNoteObject(text: text, spaceId: spaceId).id - blockInformation = BlockInformation.emptyLink(targetId: newObjectId) - case let .url(url): - newObjectId = try await createBookmarkObject(url: AnytypeURL(url: url), spaceId: spaceId).id - blockInformation = BlockInformation.bookmark(targetId: newObjectId) - case let .file(url): - newObjectId = try await createFileObject(url: url, spaceId: spaceId).id - blockInformation = BlockInformation.emptyLink(targetId: newObjectId) - } - - if let linkToObject { - try await linkTo(object: linkToObject, newObjectId: newObjectId, blockInformation: blockInformation) - } - } catch {} - } - } - - private func saveNewBlock(spaceId: String, addToObject: ObjectDetails, content: SharedContent, logAnalytics: Bool) async { - for contentItem in content.items { - do { - switch contentItem { - case let .text(text): - try await createTextBlock(text: text, addToObject: addToObject, logAnalytics: logAnalytics) - case let .url(url): - try await createBookmarkBlock(url: url, addToObject: addToObject, logAnalytics: logAnalytics) - case let .file(url): - try await createFileBlock(fileURL: url, addToObject: addToObject, logAnalytics: logAnalytics) - } - } catch {} - } - } - - private func createBookmarkObject(url: AnytypeURL, spaceId: String) async throws -> ObjectDetails { - let type = try? objectTypeProvider.objectType(uniqueKey: ObjectTypeUniqueKey.bookmark, spaceId: spaceId) - - let newBookmark = try await bookmarkService.createBookmarkObject( - spaceId: spaceId, - url: url, - templateId: type?.defaultTemplateId, - origin: .sharingExtension - ) - try await bookmarkService.fetchBookmarkContent(bookmarkId: newBookmark.id, url: url) - - AnytypeAnalytics.instance().logCreateObject( - objectType: newBookmark.objectType.analyticsType, - spaceId: newBookmark.spaceId, - route: .sharingExtension - ) - return newBookmark - } - - private func createNoteObject(text: String, spaceId: String) async throws -> ObjectDetails { - let newObject = try await objectActionsService.createObject( - name: "", - typeUniqueKey: .note, - shouldDeleteEmptyObject: false, - shouldSelectType: false, - shouldSelectTemplate: false, - spaceId: spaceId, - origin: .sharingExtension, - templateId: nil - ) - let lastBlockInDocument = try await blockService.lastBlockId(from: newObject.id, spaceId: newObject.spaceId) - _ = try await pasteboardMiddlewareService.pasteText(text, objectId: newObject.id, context: .selected(blockIds: [lastBlockInDocument])) - - AnytypeAnalytics.instance().logCreateObject( - objectType: newObject.objectType.analyticsType, - spaceId: newObject.spaceId, - route: .sharingExtension - ) - return newObject - } - - private func createFileObject(url: URL, spaceId: String) async throws -> FileDetails { - let resources = try url.resourceValues(forKeys: [.fileSizeKey]) - let data = FileData(path: url.relativePath, type: .data, sizeInBytes: resources.fileSize, isTemporary: false) - let details = try await fileService.uploadFileObject(spaceId: spaceId, data: data, origin: .sharingExtension) - - AnytypeAnalytics.instance().logCreateObject( - objectType: details.analyticsType, - spaceId: details.spaceId, - route: .sharingExtension - ) - return details - } - - private func createTextBlock(text: String, addToObject: ObjectDetails, logAnalytics: Bool) async throws { - let lastBlockInDocument = try await blockService.lastBlockId(from: addToObject.id, spaceId: addToObject.spaceId) - let newBlockId = try await blockService.add( - contextId: addToObject.id, - targetId: lastBlockInDocument, - info: .emptyText, - position: .bottom - ) - _ = try await pasteboardMiddlewareService.pasteText(text, objectId: addToObject.id, context: .selected(blockIds: [newBlockId])) - if logAnalytics { - AnytypeAnalytics.instance().logCreateBlock(type: BlockInformation.emptyText.content.type, spaceId: addToObject.spaceId, route: .sharingExtension) - } - } - - private func createBookmarkBlock(url: URL, addToObject: ObjectDetails, logAnalytics: Bool) async throws { - let blockInformation = url.attributedString.blockInformation - let lastBlockInDocument = try await blockService.lastBlockId(from: addToObject.id, spaceId: addToObject.spaceId) - _ = try await blockService.add( - contextId: addToObject.id, - targetId: lastBlockInDocument, - info: blockInformation, - position: .bottom - ) - if logAnalytics { - AnytypeAnalytics.instance().logCreateBlock(type: blockInformation.content.type, spaceId: addToObject.spaceId, route: .sharingExtension) - } - } - - private func createFileBlock(fileURL: URL, addToObject: ObjectDetails, logAnalytics: Bool) async throws { - let lastBlockInDocument = try await blockService.lastBlockId(from: addToObject.id, spaceId: addToObject.spaceId) - let resources = try fileURL.resourceValues(forKeys: [.fileSizeKey]) - let fileDetails = try await fileService.uploadFileObject( - spaceId: addToObject.spaceId, - data: FileData(path: fileURL.relativePath, type: .data, sizeInBytes: resources.fileSize, isTemporary: false), - origin: .sharingExtension - ) - let blockInformation = BlockInformation.file(fileDetails: fileDetails) - _ = try await blockService.add( - contextId: addToObject.id, - targetId: lastBlockInDocument, - info: blockInformation, - position: .bottom - ) - if logAnalytics { - AnytypeAnalytics.instance().logCreateFileBlock( - type: blockInformation.content.type, - spaceId: addToObject.spaceId, - route: .sharingExtension, - fileExtension: fileDetails.fileExt.lowercased() - ) - } - } - - private func linkTo(object linkToObject: ObjectDetails, newObjectId: String, blockInformation: BlockInformation) async throws { - if linkToObject.isCollection { - try await objectActionsService - .addObjectsToCollection( - contextId: linkToObject.id, - objectIds: [newObjectId] - ) - } else { - let lastBlockInDocument = try await blockService.lastBlockId(from: linkToObject.id, spaceId: linkToObject.spaceId) - _ = try await blockService.add( - contextId: linkToObject.id, - targetId: lastBlockInDocument, - info: blockInformation, - position: .bottom - ) - AnytypeAnalytics.instance().logCreateBlock(type: blockInformation.content.type, spaceId: linkToObject.spaceId, route: .sharingExtension) - } - } -} - -private extension NSAttributedString { - var blockInformation: BlockInformation { - let middlewareString = AttributedTextConverter.asMiddleware(attributedText: self) - return BlockInformation.empty( - content: .text( - .init( - text: middlewareString.text, - marks: middlewareString.marks, - color: nil, - contentType: .text, - checked: false, - iconEmoji: "", - iconImage: "" - ) - ) - ) - } -} diff --git a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsModuleOutput.swift b/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsModuleOutput.swift deleted file mode 100644 index 89848d745f..0000000000 --- a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsModuleOutput.swift +++ /dev/null @@ -1,7 +0,0 @@ -import Foundation - -@MainActor -protocol ShareLegacyOptionsModuleOutput: AnyObject { - func onSpaceSelection(completion: @escaping (SpaceView) -> Void) - func onDocumentSelection(data: ObjectSearchModuleData) -} diff --git a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsView.swift b/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsView.swift deleted file mode 100644 index 1f5b51c43e..0000000000 --- a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/ShareLegacyOptionsView.swift +++ /dev/null @@ -1,90 +0,0 @@ -import Foundation -import SwiftUI -import SharedContentManager - -struct ShareLegacyOptionsView: View { - - @StateObject private var model: ShareLegacyOptionsViewModel - @Environment(\.dismiss) private var dismiss - - init(spaceId: String, output: (any ShareLegacyOptionsModuleOutput)?) { - self._model = StateObject(wrappedValue: ShareLegacyOptionsViewModel(spaceId: spaceId, output: output)) - } - - var body: some View { - ZStack { - List { - Section(header: Text(Loc.Sharing.saveAs)) { - - if model.availableOptions.contains(.container) { - ShareLegacySelectionRow(text: model.newContainerTitle, selected: model.saveAsType == .container) - .fixTappableArea() - .onTapGesture { - model.onTapSaveAsContainer() - } - } - - if model.availableOptions.contains(.object) { - ShareLegacySelectionRow(text: model.newObjectTitle, selected: model.saveAsType == .object) - .fixTappableArea() - .onTapGesture { - model.onTapSaveAsNewObject() - } - } - - if model.availableOptions.contains(.block) { - ShareLegacySelectionRow(text: model.newBlockTitle, selected: model.saveAsType == .block) - .fixTappableArea() - .onTapGesture { - model.onTapSaveAsBlock() - } - } - } - - Section { - ShareLegacyArrowRow(title: Loc.Sharing.selectSpace, description: model.spaceName) - .fixTappableArea() - .onTapGesture { - model.onTapSelectSpace() - } - ShareLegacyArrowRow(title: model.linkTitle, description: model.linkObjectName) - .fixTappableArea() - .onTapGesture { - model.onTapLinkObject() - } - } - - if let debugItems = model.debugInfo?.items { - Section(header: Text(Loc.Debug.info)) { - ForEach(0.. 1 ? [.container, .object, .block] : [.object, .block] - } else { - // Different objects - availableOptions = [.container, .block] - } - saveAsType = availableOptions.first ?? .object - } - - private func updateTitles() { - if counter.onlyText { - newObjectTitle = Loc.Sharing.Text.noteObject - newBlockTitle = Loc.Sharing.Text.textBlock - } else if counter.onlyBookmarks { - newObjectTitle = Loc.Sharing.Url.newObject(counter.bookmarksCount) - newBlockTitle = Loc.Sharing.Url.block(counter.bookmarksCount) - } else if counter.onlyFiles { - newObjectTitle = Loc.Sharing.File.newObject(counter.filesCount) - newBlockTitle = Loc.Sharing.File.block(counter.filesCount) - } else { - newObjectTitle = "" - newBlockTitle = Loc.Sharing.Any.block - } - - newContainerTitle = Loc.Sharing.Text.noteObject - - switch saveAsType { - case .object, .container: - linkTitle = Loc.Sharing.linkTo - case .block: - linkTitle = Loc.Sharing.addTo - } - - spaceName = spaceDetails?.title ?? "" - linkObjectName = linkObjectDetails?.title ?? "" - } - - private func updateSaveButton() { - updateSpaceOptions() - isSaveButtonAvailable = saveOptions.isNotNil - } - - private func updateSpaceOptions() { - guard let spaceDetails else { - saveOptions = nil - return - } - - switch saveAsType { - case .container: - saveOptions = .container(spaceId: spaceDetails.targetSpaceId, linkToObject: linkObjectDetails) - case .object: - saveOptions = .newObject(spaceId: spaceDetails.targetSpaceId, linkToObject: linkObjectDetails) - case .block: - if let linkObjectDetails { - saveOptions = .blocks(spaceId: spaceDetails.targetSpaceId, addToObject: linkObjectDetails) - } else { - saveOptions = nil - } - } - } - - private func validateLinkToObject() { - guard let linkObjectDetails else { return } - - if !saveAsType.supportedLayouts.contains(linkObjectDetails.resolvedLayoutValue) { - self.linkObjectDetails = nil - } - - if linkObjectDetails.spaceId != spaceDetails?.targetSpaceId { - self.linkObjectDetails = nil - } - } -} diff --git a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/SharingTip/SharingTip.swift b/Anytype/Sources/PresentationLayer/Modules/SharingExtension/SharingTip/SharingTip.swift similarity index 100% rename from Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/SharingTip/SharingTip.swift rename to Anytype/Sources/PresentationLayer/Modules/SharingExtension/SharingTip/SharingTip.swift diff --git a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/SharingTip/SharingTipHandler.swift b/Anytype/Sources/PresentationLayer/Modules/SharingExtension/SharingTip/SharingTipHandler.swift similarity index 100% rename from Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/SharingTip/SharingTipHandler.swift rename to Anytype/Sources/PresentationLayer/Modules/SharingExtension/SharingTip/SharingTipHandler.swift diff --git a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/SharingTip/SharingTipView.swift b/Anytype/Sources/PresentationLayer/Modules/SharingExtension/SharingTip/SharingTipView.swift similarity index 100% rename from Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/SharingTip/SharingTipView.swift rename to Anytype/Sources/PresentationLayer/Modules/SharingExtension/SharingTip/SharingTipView.swift diff --git a/Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/SharingTip/SharingTipViewModel.swift b/Anytype/Sources/PresentationLayer/Modules/SharingExtension/SharingTip/SharingTipViewModel.swift similarity index 100% rename from Anytype/Sources/PresentationLayer/Modules/ShareLegacyOptions/SharingTip/SharingTipViewModel.swift rename to Anytype/Sources/PresentationLayer/Modules/SharingExtension/SharingTip/SharingTipViewModel.swift diff --git a/Anytype/Sources/PresentationLayer/Modules/SpaceHub/Subviews/NewSpaceCardLabel.swift b/Anytype/Sources/PresentationLayer/Modules/SpaceHub/Subviews/NewSpaceCardLabel.swift index 0dde93c22b..8681065564 100644 --- a/Anytype/Sources/PresentationLayer/Modules/SpaceHub/Subviews/NewSpaceCardLabel.swift +++ b/Anytype/Sources/PresentationLayer/Modules/SpaceHub/Subviews/NewSpaceCardLabel.swift @@ -49,7 +49,7 @@ struct NewSpaceCardLabel: View { .background(DashboardWallpaper( mode: .spaceHub, wallpaper: wallpaper, - spaceIcon: spaceData.spaceView.iconImage + spaceIcon: spaceData.spaceView.objectIconImage )) .clipShape(RoundedRectangle(cornerRadius: 20, style: .continuous)) } diff --git a/Anytype/Sources/PresentationLayer/Modules/SpacesManager/Subviews/SpacesManagerRowView.swift b/Anytype/Sources/PresentationLayer/Modules/SpacesManager/Subviews/SpacesManagerRowView.swift index b845f4a6bf..350f11b60a 100644 --- a/Anytype/Sources/PresentationLayer/Modules/SpacesManager/Subviews/SpacesManagerRowView.swift +++ b/Anytype/Sources/PresentationLayer/Modules/SpacesManager/Subviews/SpacesManagerRowView.swift @@ -24,7 +24,7 @@ struct SpacesManagerRowView: View { private var spaceInfo: some View { HStack(spacing: 12) { - IconView(icon: model.spaceView.iconImage) + IconView(icon: model.spaceView.objectIconImage) .frame(width: 48, height: 48) VStack(alignment: .leading, spacing: 0) { AnytypeText(model.spaceView.title, style: .uxTitle2Semibold) diff --git a/Anytype/Sources/PresentationLayer/TextEditor/EditorPage/Views/Settings/Icon/Space/SpaceObjectIconPickerViewModel.swift b/Anytype/Sources/PresentationLayer/TextEditor/EditorPage/Views/Settings/Icon/Space/SpaceObjectIconPickerViewModel.swift index bacdf43410..e07bad6804 100644 --- a/Anytype/Sources/PresentationLayer/TextEditor/EditorPage/Views/Settings/Icon/Space/SpaceObjectIconPickerViewModel.swift +++ b/Anytype/Sources/PresentationLayer/TextEditor/EditorPage/Views/Settings/Icon/Space/SpaceObjectIconPickerViewModel.swift @@ -27,7 +27,7 @@ final class SpaceObjectIconPickerViewModel: ObservableObject { func startSpaceTask() async { for await space in workspaceStorage.spaceViewPublisher(spaceId: spaceId).values { - isRemoveEnabled = space.iconImage?.imageId.isNotNil ?? false + isRemoveEnabled = space.objectIconImage.imageId.isNotNil ?? false } } diff --git a/Modules/AnytypeCore/AnytypeCore/Generated/FeatureFlags+Flags.swift b/Modules/AnytypeCore/AnytypeCore/Generated/FeatureFlags+Flags.swift index f56f91ac9b..3fef4a4aa7 100644 --- a/Modules/AnytypeCore/AnytypeCore/Generated/FeatureFlags+Flags.swift +++ b/Modules/AnytypeCore/AnytypeCore/Generated/FeatureFlags+Flags.swift @@ -18,10 +18,6 @@ public extension FeatureFlags { value(for: .swipeToReply) } - static var newSharingExtension: Bool { - value(for: .newSharingExtension) - } - static var newSpaceMembersFlow: Bool { value(for: .newSpaceMembersFlow) } @@ -143,7 +139,6 @@ public extension FeatureFlags { .muteSpacePossibility, .addNotificationsSettings, .swipeToReply, - .newSharingExtension, .newSpaceMembersFlow, .removeMessagesFromNotificationsCenter, .mediaCarouselForWidgets, diff --git a/Modules/AnytypeCore/AnytypeCore/Utils/FeatureFlags/FeatureDescription+Flags.swift b/Modules/AnytypeCore/AnytypeCore/Utils/FeatureFlags/FeatureDescription+Flags.swift index 36916b431a..8e1bf6f24a 100644 --- a/Modules/AnytypeCore/AnytypeCore/Utils/FeatureFlags/FeatureDescription+Flags.swift +++ b/Modules/AnytypeCore/AnytypeCore/Utils/FeatureFlags/FeatureDescription+Flags.swift @@ -22,12 +22,6 @@ public extension FeatureDescription { defaultValue: true ) - static let newSharingExtension = FeatureDescription( - title: "New Sharing Extension - IOS-4915", - type: .feature(author: "m@anytype.io", releaseVersion: "13"), - defaultValue: true - ) - static let newSpaceMembersFlow = FeatureDescription( title: "New Space Members Flow", type: .feature(author: "vova@anytype.io", releaseVersion: "13"), diff --git a/Modules/Loc/Sources/Loc/Generated/Strings.swift b/Modules/Loc/Sources/Loc/Generated/Strings.swift index a6007b85a7..db692e6c6e 100644 --- a/Modules/Loc/Sources/Loc/Generated/Strings.swift +++ b/Modules/Loc/Sources/Loc/Generated/Strings.swift @@ -1921,40 +1921,15 @@ public enum Loc { public static let updated = Loc.tr("Localizable", "Settings.Updated", fallback: "Space information updated") } public enum Sharing { - public static let addTo = Loc.tr("Localizable", "Sharing.AddTo", fallback: "Add to") public static let inputPlaceholder = Loc.tr("Localizable", "Sharing.InputPlaceholder", fallback: "Add a comment...") - public static let linkTo = Loc.tr("Localizable", "Sharing.LinkTo", fallback: "Link to") - public static let saveAs = Loc.tr("Localizable", "Sharing.SaveAs", fallback: "SAVE AS") - public static let selectSpace = Loc.tr("Localizable", "Sharing.SelectSpace", fallback: "Space") public static let sendToChat = Loc.tr("Localizable", "Sharing.SendToChat", fallback: "Send to chat") public static let title = Loc.tr("Localizable", "Sharing.Title", fallback: "Select Space") - public enum `Any` { - public static let block = Loc.tr("Localizable", "Sharing.Any.Block", fallback: "Blocks") - } - public enum File { - public static func block(_ p1: Int) -> String { - return Loc.tr("Localizable", "Sharing.File.Block", p1, fallback: "Plural format key: Sharing.File.Block") - } - public static func newObject(_ p1: Int) -> String { - return Loc.tr("Localizable", "Sharing.File.NewObject", p1, fallback: "Plural format key: Sharing.File.NewObject") - } - } public enum Navigation { public static let title = Loc.tr("Localizable", "Sharing.Navigation.title", fallback: "Add to Anytype") - public enum LeftButton { - public static let title = Loc.tr("Localizable", "Sharing.Navigation.LeftButton.Title", fallback: "Cancel") - } - public enum RightButton { - public static let title = Loc.tr("Localizable", "Sharing.Navigation.RightButton.Title", fallback: "Done") - } } public enum ObjectList { public static let title = Loc.tr("Localizable", "Sharing.ObjectList.title", fallback: "Select destination") } - public enum Text { - public static let noteObject = Loc.tr("Localizable", "Sharing.Text.NoteObject", fallback: "Note object") - public static let textBlock = Loc.tr("Localizable", "Sharing.Text.TextBlock", fallback: "Blocks") - } public enum Tip { public static let title = Loc.tr("Localizable", "Sharing.Tip.Title", fallback: "Share Extension") public enum Button { @@ -1966,14 +1941,6 @@ public enum Loc { public static let _3 = Loc.tr("Localizable", "Sharing.Tip.Steps.3", fallback: "Tap Edit to find “Anytype” and tap") } } - public enum Url { - public static func block(_ p1: Int) -> String { - return Loc.tr("Localizable", "Sharing.URL.Block", p1, fallback: "Plural format key: Sharing.URL.Block") - } - public static func newObject(_ p1: Int) -> String { - return Loc.tr("Localizable", "Sharing.URL.NewObject", p1, fallback: "Plural format key: Sharing.URL.NewObject") - } - } } public enum SimpleTableMenu { public enum Item { @@ -2247,9 +2214,6 @@ public enum Loc { public enum Info { public static let network = Loc.tr("Localizable", "Spaces.Info.Network", fallback: "Network:") } - public enum Search { - public static let title = Loc.tr("Localizable", "Spaces.Search.Title", fallback: "Search spaces") - } public enum UxType { public enum Chat { public static let changeDescription = Loc.tr("Localizable", "Spaces.UxType.Chat.ChangeDescription", fallback: "Group chat with shared data. Best for small groups or a single ongoing conversation.") diff --git a/Modules/Loc/Sources/Loc/Resources/Localizable.xcstrings b/Modules/Loc/Sources/Loc/Resources/Localizable.xcstrings index d99976fcd3..0c1f650f89 100644 --- a/Modules/Loc/Sources/Loc/Resources/Localizable.xcstrings +++ b/Modules/Loc/Sources/Loc/Resources/Localizable.xcstrings @@ -134504,4175 +134504,942 @@ } } }, - "Sharing.AddTo" : { + "Sharing.InputPlaceholder" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add a comment..." + } + } + } + }, + "Sharing.Navigation.title" : { + "comment" : "MARK: - Sharing", "extractionState" : "manual", "localizations" : { "ar" : { "stringUnit" : { "state" : "new", - "value" : "Add to" + "value" : "إضافة إلى Anytype" } }, "be" : { "stringUnit" : { "state" : "new", - "value" : "Дадаць у" + "value" : "Дадаць у Anytype" } }, "de" : { "stringUnit" : { "state" : "new", - "value" : "Hinzufügen zu" + "value" : "Zu Anytype hinzufügen" } }, "en" : { "stringUnit" : { "state" : "translated", - "value" : "Add to" + "value" : "Add to Anytype" } }, "es" : { "stringUnit" : { "state" : "new", - "value" : "Añadir a" + "value" : "Añadir a Anytype" } }, "fa" : { "stringUnit" : { "state" : "new", - "value" : "Add to" + "value" : "Add to Anytype" } }, "fi" : { "stringUnit" : { "state" : "new", - "value" : "Add to" + "value" : "Add to Anytype" } }, "fr" : { "stringUnit" : { "state" : "new", - "value" : "Ajouter à" + "value" : "Ajouter à Anytype" } }, "id" : { "stringUnit" : { "state" : "new", - "value" : "Tambah ke " + "value" : "Tambah ke Anytype" } }, "it" : { "stringUnit" : { "state" : "new", - "value" : "Aggiungi a" + "value" : "Aggiungi a Anytype" } }, "ja" : { "stringUnit" : { "state" : "new", - "value" : "追加" + "value" : "Anytypeに追加" } }, "ko" : { "stringUnit" : { "state" : "new", - "value" : "Add to" + "value" : "Add to Anytype" } }, "nb" : { "stringUnit" : { "state" : "new", - "value" : "Legg til i" + "value" : "Legg til Anytype" } }, "nl" : { "stringUnit" : { "state" : "new", - "value" : "Voeg toe aan" + "value" : "Voeg toe aan Anytype" } }, "or" : { "stringUnit" : { "state" : "new", - "value" : "Add to" + "value" : "Add to Anytype" } }, "pl" : { "stringUnit" : { "state" : "new", - "value" : "Dodaj do" + "value" : "Dodaj do dowolnego typu" } }, "pt-BR" : { "stringUnit" : { "state" : "new", - "value" : "Adicionar à" + "value" : "Adicionar ao Anytype" } }, "pt-PT" : { "stringUnit" : { "state" : "new", - "value" : "Add to" + "value" : "Add to Anytype" } }, "ru" : { "stringUnit" : { "state" : "new", - "value" : "Добавить" + "value" : "Добавить в Anytype" } }, "tr" : { "stringUnit" : { "state" : "new", - "value" : "Olarak ekle" + "value" : "Anytype'a ekle" } }, "uk" : { "stringUnit" : { "state" : "new", - "value" : "Додати до" + "value" : "Додати до Anytype" } }, "vi" : { "stringUnit" : { "state" : "new", - "value" : "Thêm vào" + "value" : "Add to Anytype" } }, "zh-Hans" : { "stringUnit" : { "state" : "new", - "value" : "添加到" + "value" : "添加至 Anytype" } }, "zh-Hant" : { "stringUnit" : { "state" : "new", - "value" : "添加到" + "value" : "添加到 Anytype" + } + } + } + }, + "Sharing.ObjectList.title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select destination" + } + } + } + }, + "Sharing.SendToChat" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send to chat" } } } }, - "Sharing.Any.Block" : { + "Sharing.Tip.Button.title" : { "extractionState" : "manual", "localizations" : { "ar" : { "stringUnit" : { "state" : "new", - "value" : "Blocks" + "value" : "Show share menu" } }, "be" : { "stringUnit" : { "state" : "new", - "value" : "Блокі" + "value" : "Паказаць меню абагульвання" } }, "de" : { "stringUnit" : { "state" : "new", - "value" : "Blöcke" + "value" : "Freigabemenü anzeigen" } }, "en" : { "stringUnit" : { "state" : "translated", - "value" : "Blocks" + "value" : "Show share menu" } }, "es" : { "stringUnit" : { "state" : "new", - "value" : "Bloques" + "value" : "Mostrar menú de compartir" } }, "fa" : { "stringUnit" : { "state" : "new", - "value" : "Blocks" + "value" : "Show share menu" } }, "fi" : { "stringUnit" : { "state" : "new", - "value" : "Blocks" + "value" : "Show share menu" } }, "fr" : { "stringUnit" : { "state" : "new", - "value" : "Blocs" + "value" : "Afficher le menu de partage" } }, "id" : { "stringUnit" : { "state" : "new", - "value" : "Blok" + "value" : "Tampilan menu berbagi" } }, "it" : { "stringUnit" : { "state" : "new", - "value" : "Blocchi" + "value" : "Mostra menu di condivisione" } }, "ja" : { "stringUnit" : { "state" : "new", - "value" : "ブロック" + "value" : "共有メニューを表示" } }, "ko" : { "stringUnit" : { "state" : "new", - "value" : "Blocks" + "value" : "Show share menu" } }, "nb" : { "stringUnit" : { "state" : "new", - "value" : "Blokker" + "value" : "Vis delingsmeny" } }, "nl" : { "stringUnit" : { "state" : "new", - "value" : "Blokken" + "value" : "Toon deel menu" } }, "or" : { "stringUnit" : { "state" : "new", - "value" : "Blocks" + "value" : "Show share menu" } }, "pl" : { "stringUnit" : { "state" : "new", - "value" : "Bloki" + "value" : "Pokaż menu udostępniania" } }, "pt-BR" : { "stringUnit" : { "state" : "new", - "value" : "Blocos" + "value" : "Mostrar menu de compartilhamento" } }, "pt-PT" : { "stringUnit" : { "state" : "new", - "value" : "Blocks" + "value" : "Show share menu" } }, "ru" : { "stringUnit" : { "state" : "new", - "value" : "Блоки" + "value" : "Показать меню для обмена" } }, "tr" : { "stringUnit" : { "state" : "new", - "value" : "Bloklar" + "value" : "Paylaşım menüsünü göster" } }, "uk" : { "stringUnit" : { "state" : "new", - "value" : "Blocks" + "value" : "Show share menu" } }, "vi" : { "stringUnit" : { "state" : "new", - "value" : "Blocks" + "value" : "Show share menu" } }, "zh-Hans" : { "stringUnit" : { "state" : "new", - "value" : "区块" + "value" : "显示分享菜单" } }, "zh-Hant" : { "stringUnit" : { "state" : "new", - "value" : "區塊" + "value" : "顯示分享選單" } } } }, - "Sharing.File.Block" : { + "Sharing.Tip.Steps.1" : { "extractionState" : "manual", "localizations" : { "ar" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "File Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - }, - "two" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - }, - "zero" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, "be" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d файлавыя блокі" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d файлавых блокаў" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Файлавы блок" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d файлавых блокаў" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Націсніце кнопку абагульвання iOS" } }, "de" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Dateiblock" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Dateiblöcke" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Tippen Sie auf den iOS-Sharing-Button" } }, "en" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "translated", - "value" : "File Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "translated", - "value" : "%d File Blocks" - } - } - } + "stringUnit" : { + "state" : "translated", + "value" : "Tap the iOS sharing button" } }, "es" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bloque de archivo" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d bloques de archivo" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Toca el botón de compartir en iOS" } }, "fa" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "File Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, "fi" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "File Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, "fr" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bloc de fichier" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Blocs de fichiers" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Appuyez sur le bouton de partage iOS" } }, "id" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Blok Berkas" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Ketuk tombol berbagi iOS" } }, "it" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocco File" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Blocchi File " - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Tocca il pulsante di condivisione iOS" } }, "ja" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d個のファイルブロック" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "iOS共有ボタンをタップ" } }, "ko" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d 파일 블록" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, "nb" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Fil-blokk" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d fil-blokker" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Trykk på knappen for deling i iOS" } }, "nl" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bestand blok" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bestand blokken" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Tik op de iOS deel knop" } }, "or" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "File Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, "pl" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d bloki plików" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d bloki plików" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Blok plików" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d bloki plików" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Stuknij przycisk udostępniania w systemie iOS" } }, "pt-BR" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bloco de Arquivo" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Blocos de Arquivos" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Toque no botão de compartilhamento do iOS" } }, "pt-PT" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "File Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, "ru" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d файловых блока" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d файловых блоков" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Файловый блок" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d файловых блоков" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Нажмите на кнопку обмена iOS" } }, "tr" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Dosya Bloğu" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Dosya Blokları" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "iOS paylaşım düğmesine dokunun" } }, "uk" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "File Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, "vi" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Blocks" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, "zh-Hans" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d 文件块" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "单击 iOS 共享按钮" } }, "zh-Hant" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d 文件區塊" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "點擊 iOS 分享按鈕" } } } }, - "Sharing.File.NewObject" : { + "Sharing.Tip.Steps.2" : { "extractionState" : "manual", "localizations" : { "ar" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "File Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - }, - "two" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - }, - "zero" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, "be" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Файлавыя аб'екты" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Файлавых аб'ектаў" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Файлавы аб'ект" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Файлавых аб'ектаў" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Пракруціце міма праграмы і націсніце «Яшчэ»." } }, "de" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Dateiobjekt" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Dateiobjekte" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Scrolle über die App hinaus und tippe auf Mehr" } }, "en" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "translated", - "value" : "File Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "translated", - "value" : "%d File Objects" - } - } - } + "stringUnit" : { + "state" : "translated", + "value" : "Scroll past the app and tap More" } }, "es" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Objeto de archivo" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d objetos de archivo" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Desplaza las opciones y toca Más" } }, "fa" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "File Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, "fi" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "File Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, "fr" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Objet de fichier" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d objets de fichiers" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Défiler au-delà de l'application et appuyez sur Plus" } }, "id" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Objek Berkas" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Gulir melewati aplikasi dan ketuk Lainnya" } }, "it" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Oggetto File" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Oggetti File" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Scorri oltre l'app e tocca Altro" } }, "ja" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d個のファイルオブジェクト" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "アプリをスクロールして、その他をタップ" } }, "ko" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, "nb" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Fil-objekt" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d filobjekter" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Bla forbi appen og trykk mer" } }, "nl" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bestand object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bestand objecten" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Scroll voorbij de app en tik op Meer" } }, "or" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "File Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, "pl" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects (Obiekty plików)" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects (Obiekty plików)" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Obiekt plikowy" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects (Obiekty plików)" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Przewiń obok aplikacji i kliknij Więcej" } }, "pt-BR" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Objeto de Arquivo" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Objetos de Arquivo" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Role a tela para além do aplicativo e toque em Mais" } }, "pt-PT" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "File Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, "ru" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d файловых объекта" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d файловых объектов" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Файловый объект" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d файловых объектов " - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Прокрутите приложение и нажмите ещё" } }, "tr" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Dosya Nesnesi" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Dosya Nesneleri" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Uygulamayı kaydırın ve Daha Fazla'ya dokunun" } }, "uk" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "File Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, "vi" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d File Objects" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, "zh-Hans" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d 文件对象" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "滚动过该应用并点击“更多”" } }, "zh-Hant" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d 個檔案物件" - } - } - } - } - } - } - }, - "Sharing.InputPlaceholder" : { - "extractionState" : "manual", - "localizations" : { - "en" : { "stringUnit" : { - "state" : "translated", - "value" : "Add a comment..." + "state" : "new", + "value" : "滾動應用程式並點擊更多" } } } }, - "Sharing.LinkTo" : { + "Sharing.Tip.Steps.3" : { "extractionState" : "manual", "localizations" : { "ar" : { "stringUnit" : { "state" : "new", - "value" : "رابط إلى" + "value" : "Tap Edit to find “Anytype” and tap" } }, "be" : { "stringUnit" : { "state" : "new", - "value" : "Спасылка на" + "value" : "Націсніце «Рэдагаваць», каб знайсці «Anytype», і націсніце" } }, "de" : { "stringUnit" : { "state" : "new", - "value" : "Link zu" + "value" : "Tippe auf Bearbeiten, um \"Anytype\" zu finden und darauf zu tippen" } }, "en" : { "stringUnit" : { "state" : "translated", - "value" : "Link to" + "value" : "Tap Edit to find “Anytype” and tap" } }, "es" : { "stringUnit" : { "state" : "new", - "value" : "Conectar a" + "value" : "Toca Editar para buscar «Anytype» y toca" } }, "fa" : { "stringUnit" : { "state" : "new", - "value" : "Link to" + "value" : "Tap Edit to find “Anytype” and tap" } }, "fi" : { "stringUnit" : { "state" : "new", - "value" : "Link to" + "value" : "Tap Edit to find “Anytype” and tap" } }, "fr" : { "stringUnit" : { "state" : "new", - "value" : "Lien vers" + "value" : "Appuyez sur Modifier pour trouver « Anytype » et appuyez" } }, "id" : { "stringUnit" : { "state" : "new", - "value" : "Tautkan ke" + "value" : "Ketuk Sunting untuk menemukan “Anytype” dan ketuk" } }, "it" : { "stringUnit" : { "state" : "new", - "value" : "Collega a" + "value" : "Tocca Modifica per trovare “Anytype” e tocca" } }, "ja" : { "stringUnit" : { "state" : "new", - "value" : "リンク" + "value" : "編集をタップして、Anytypeを見つけ追加してください" } }, "ko" : { "stringUnit" : { "state" : "new", - "value" : "Link to" + "value" : "Tap Edit to find “Anytype” and tap" } }, "nb" : { "stringUnit" : { "state" : "new", - "value" : "Koble til" + "value" : "Trykk på Rediger for å finne \"Anytype\" og trykk på" } }, "nl" : { "stringUnit" : { "state" : "new", - "value" : "Link naar" + "value" : "Tik op Bewerken om \"Anytype\" te vinden en tik op" } }, "or" : { "stringUnit" : { "state" : "new", - "value" : "ଲିଙ୍କ୍ କରନ୍ତୁ" + "value" : "Tap Edit to find “Anytype” and tap" } }, "pl" : { "stringUnit" : { "state" : "new", - "value" : "Łącze do" + "value" : "Stuknij Edytuj, aby znaleźć \"Anytype\" i stuknij" } }, "pt-BR" : { "stringUnit" : { "state" : "new", - "value" : "Vincular a" + "value" : "Toque em Editar, encontre \"Anytype\" e toque" } }, "pt-PT" : { "stringUnit" : { "state" : "new", - "value" : "Link to" + "value" : "Tap Edit to find “Anytype” and tap" } }, "ru" : { "stringUnit" : { "state" : "new", - "value" : "Связать с" + "value" : "Нажмите Отредактировать, чтобы найти «Anytype» и нажмите" } }, "tr" : { "stringUnit" : { "state" : "new", - "value" : "Şuna bağla" + "value" : "\"Anytype\"ı bulmak için Düzenle'ye dokunun" } }, "uk" : { "stringUnit" : { "state" : "new", - "value" : "Зв'язати з" + "value" : "Tap Edit to find “Anytype” and tap" } }, "vi" : { "stringUnit" : { "state" : "new", - "value" : "Liên kết đến" + "value" : "Tap Edit to find “Anytype” and tap" } }, "zh-Hans" : { "stringUnit" : { "state" : "new", - "value" : "链接到" + "value" : "单击编辑来查找“Anytype”,然后点击" } }, "zh-Hant" : { "stringUnit" : { "state" : "new", - "value" : "連結到" + "value" : "點擊編輯找到 \"Anytype\",然後點擊" } } } }, - "Sharing.Navigation.LeftButton.Title" : { + "Sharing.Tip.Title" : { + "comment" : "MARK: - Sharing tips", "extractionState" : "manual", "localizations" : { "ar" : { "stringUnit" : { "state" : "new", - "value" : "إلغاء" + "value" : "Share Extension" } }, "be" : { "stringUnit" : { "state" : "new", - "value" : "Скасаваць" + "value" : "Абагуліць пашырэнне" } }, "de" : { "stringUnit" : { "state" : "new", - "value" : "Abbrechen" + "value" : "Erweiterung teilen" } }, "en" : { "stringUnit" : { "state" : "translated", - "value" : "Cancel" + "value" : "Share Extension" } }, "es" : { "stringUnit" : { "state" : "new", - "value" : "Cancelar" + "value" : "Extensión para compartir" } }, "fa" : { "stringUnit" : { "state" : "new", - "value" : "Cancel" + "value" : "Share Extension" } }, "fi" : { "stringUnit" : { "state" : "new", - "value" : "Peruuta" + "value" : "Share Extension" } }, "fr" : { "stringUnit" : { "state" : "new", - "value" : "Annuler" + "value" : "Extension de partage" } }, "id" : { "stringUnit" : { "state" : "new", - "value" : "Batal" + "value" : "Bagikan Ekstensi" } }, "it" : { "stringUnit" : { "state" : "new", - "value" : "Annulla" + "value" : "Condividi Estensione" } }, "ja" : { "stringUnit" : { "state" : "new", - "value" : "キャンセル" + "value" : "共有拡張機能" } }, "ko" : { "stringUnit" : { "state" : "new", - "value" : "취소" + "value" : "Share Extension" } }, "nb" : { "stringUnit" : { "state" : "new", - "value" : "Avbryt" + "value" : "Delingsutvidelse" } }, "nl" : { "stringUnit" : { "state" : "new", - "value" : "Annuleren" + "value" : "Deel extensie" } }, "or" : { "stringUnit" : { "state" : "new", - "value" : "ବାତିଲ କରନ୍ତୁ " + "value" : "Share Extension" } }, "pl" : { "stringUnit" : { "state" : "new", - "value" : "Anuluj" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "Cancelar" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "Cancelar" + "value" : "Rozszerzenie udostępniania" } }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "Отмена" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "İptal" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "Скасувати" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "Huỷ" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "取消" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "取消" - } - } - } - }, - "Sharing.Navigation.RightButton.Title" : { - "extractionState" : "manual", - "localizations" : { - "ar" : { - "stringUnit" : { - "state" : "new", - "value" : "تم" - } - }, - "be" : { - "stringUnit" : { - "state" : "new", - "value" : "Гатова" - } - }, - "de" : { - "stringUnit" : { - "state" : "new", - "value" : "Fertig" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Done" - } - }, - "es" : { - "stringUnit" : { - "state" : "new", - "value" : "Listo" - } - }, - "fa" : { - "stringUnit" : { - "state" : "new", - "value" : "Done" - } - }, - "fi" : { - "stringUnit" : { - "state" : "new", - "value" : "Valmis" - } - }, - "fr" : { - "stringUnit" : { - "state" : "new", - "value" : "Terminé" - } - }, - "id" : { - "stringUnit" : { - "state" : "new", - "value" : "Selesai" - } - }, - "it" : { - "stringUnit" : { - "state" : "new", - "value" : "Fatto" - } - }, - "ja" : { - "stringUnit" : { - "state" : "new", - "value" : "完了" - } - }, - "ko" : { - "stringUnit" : { - "state" : "new", - "value" : "완료" - } - }, - "nb" : { - "stringUnit" : { - "state" : "new", - "value" : "Ferdig" - } - }, - "nl" : { - "stringUnit" : { - "state" : "new", - "value" : "Gereed" - } - }, - "or" : { - "stringUnit" : { - "state" : "new", - "value" : "ହେଲା" - } - }, - "pl" : { - "stringUnit" : { - "state" : "new", - "value" : "Gotowe" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "Concluído" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "Concluído" - } - }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "Готово" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "Bitti" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "Готово" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "Xong" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "完成" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "完成" - } - } - } - }, - "Sharing.Navigation.title" : { - "comment" : "MARK: - Sharing", - "extractionState" : "manual", - "localizations" : { - "ar" : { - "stringUnit" : { - "state" : "new", - "value" : "إضافة إلى Anytype" - } - }, - "be" : { - "stringUnit" : { - "state" : "new", - "value" : "Дадаць у Anytype" - } - }, - "de" : { - "stringUnit" : { - "state" : "new", - "value" : "Zu Anytype hinzufügen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Add to Anytype" - } - }, - "es" : { - "stringUnit" : { - "state" : "new", - "value" : "Añadir a Anytype" - } - }, - "fa" : { - "stringUnit" : { - "state" : "new", - "value" : "Add to Anytype" - } - }, - "fi" : { - "stringUnit" : { - "state" : "new", - "value" : "Add to Anytype" - } - }, - "fr" : { - "stringUnit" : { - "state" : "new", - "value" : "Ajouter à Anytype" - } - }, - "id" : { - "stringUnit" : { - "state" : "new", - "value" : "Tambah ke Anytype" - } - }, - "it" : { - "stringUnit" : { - "state" : "new", - "value" : "Aggiungi a Anytype" - } - }, - "ja" : { - "stringUnit" : { - "state" : "new", - "value" : "Anytypeに追加" - } - }, - "ko" : { - "stringUnit" : { - "state" : "new", - "value" : "Add to Anytype" - } - }, - "nb" : { - "stringUnit" : { - "state" : "new", - "value" : "Legg til Anytype" - } - }, - "nl" : { - "stringUnit" : { - "state" : "new", - "value" : "Voeg toe aan Anytype" - } - }, - "or" : { - "stringUnit" : { - "state" : "new", - "value" : "Add to Anytype" - } - }, - "pl" : { - "stringUnit" : { - "state" : "new", - "value" : "Dodaj do dowolnego typu" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "Adicionar ao Anytype" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "Add to Anytype" - } - }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "Добавить в Anytype" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "Anytype'a ekle" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "Додати до Anytype" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "Add to Anytype" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "添加至 Anytype" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "添加到 Anytype" - } - } - } - }, - "Sharing.ObjectList.title" : { - "extractionState" : "manual", - "localizations" : { - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Select destination" - } - } - } - }, - "Sharing.SaveAs" : { - "extractionState" : "manual", - "localizations" : { - "ar" : { - "stringUnit" : { - "state" : "new", - "value" : "SAVE AS" - } - }, - "be" : { - "stringUnit" : { - "state" : "new", - "value" : "ЗАХАВАЦЬ ЯК" - } - }, - "de" : { - "stringUnit" : { - "state" : "new", - "value" : "SPEICHERN ALS" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "SAVE AS" - } - }, - "es" : { - "stringUnit" : { - "state" : "new", - "value" : "GUARDAR COMO" - } - }, - "fa" : { - "stringUnit" : { - "state" : "new", - "value" : "SAVE AS" - } - }, - "fi" : { - "stringUnit" : { - "state" : "new", - "value" : "SAVE AS" - } - }, - "fr" : { - "stringUnit" : { - "state" : "new", - "value" : "ENREGISTRER SOUS" - } - }, - "id" : { - "stringUnit" : { - "state" : "new", - "value" : "SIMPAN SEBAGAI" - } - }, - "it" : { - "stringUnit" : { - "state" : "new", - "value" : "SALVA COME" - } - }, - "ja" : { - "stringUnit" : { - "state" : "new", - "value" : "別名で保存" - } - }, - "ko" : { - "stringUnit" : { - "state" : "new", - "value" : "SAVE AS" - } - }, - "nb" : { - "stringUnit" : { - "state" : "new", - "value" : "LAGRE SOM" - } - }, - "nl" : { - "stringUnit" : { - "state" : "new", - "value" : "OPSLAAN ALS" - } - }, - "or" : { - "stringUnit" : { - "state" : "new", - "value" : "SAVE AS" - } - }, - "pl" : { - "stringUnit" : { - "state" : "new", - "value" : "ZAPISZ JAKO" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "SALVAR COMO" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "SAVE AS" - } - }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "СОХРАНИТЬ КАК" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "FARKLI KAYDET" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "ЗБЕРЕГТИ ЯК" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "SAVE AS" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "保存为" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "另存新檔" - } - } - } - }, - "Sharing.SelectSpace" : { - "extractionState" : "manual", - "localizations" : { - "ar" : { - "stringUnit" : { - "state" : "new", - "value" : "المساحة" - } - }, - "be" : { - "stringUnit" : { - "state" : "new", - "value" : "Прастора" - } - }, - "de" : { - "stringUnit" : { - "state" : "new", - "value" : "Space" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Space" - } - }, - "es" : { - "stringUnit" : { - "state" : "new", - "value" : "Espacio" - } - }, - "fa" : { - "stringUnit" : { - "state" : "new", - "value" : "Space" - } - }, - "fi" : { - "stringUnit" : { - "state" : "new", - "value" : "Space" - } - }, - "fr" : { - "stringUnit" : { - "state" : "new", - "value" : "Espace" - } - }, - "id" : { - "stringUnit" : { - "state" : "new", - "value" : "Ruang" - } - }, - "it" : { - "stringUnit" : { - "state" : "new", - "value" : "Spazio" - } - }, - "ja" : { - "stringUnit" : { - "state" : "new", - "value" : "スペース" - } - }, - "ko" : { - "stringUnit" : { - "state" : "new", - "value" : "Space" - } - }, - "nb" : { - "stringUnit" : { - "state" : "new", - "value" : "Rom" - } - }, - "nl" : { - "stringUnit" : { - "state" : "new", - "value" : "Ruimte" - } - }, - "or" : { - "stringUnit" : { - "state" : "new", - "value" : "Space" - } - }, - "pl" : { - "stringUnit" : { - "state" : "new", - "value" : "Przestrzeń" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "Espaço" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "Space" - } - }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "Пространство" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "Alan" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "Простір" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "Space" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "空间" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "空間" - } - } - } - }, - "Sharing.SendToChat" : { - "extractionState" : "manual", - "localizations" : { - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Send to chat" - } - } - } - }, - "Sharing.Text.NoteObject" : { - "extractionState" : "manual", - "localizations" : { - "ar" : { - "stringUnit" : { - "state" : "new", - "value" : "Note object" - } - }, - "be" : { - "stringUnit" : { - "state" : "new", - "value" : "Аб'ект нататка" - } - }, - "de" : { - "stringUnit" : { - "state" : "new", - "value" : "Notiz-Objekt" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Note object" - } - }, - "es" : { - "stringUnit" : { - "state" : "new", - "value" : "Objeto de nota" - } - }, - "fa" : { - "stringUnit" : { - "state" : "new", - "value" : "Note object" - } - }, - "fi" : { - "stringUnit" : { - "state" : "new", - "value" : "Note object" - } - }, - "fr" : { - "stringUnit" : { - "state" : "new", - "value" : "Objet Note" - } - }, - "id" : { - "stringUnit" : { - "state" : "new", - "value" : "Catatan objek" - } - }, - "it" : { - "stringUnit" : { - "state" : "new", - "value" : "Oggetto nota" - } - }, - "ja" : { - "stringUnit" : { - "state" : "new", - "value" : "ノートオブジェクト" - } - }, - "ko" : { - "stringUnit" : { - "state" : "new", - "value" : "Note object" - } - }, - "nb" : { - "stringUnit" : { - "state" : "new", - "value" : "Notatobjekt" - } - }, - "nl" : { - "stringUnit" : { - "state" : "new", - "value" : "Noteer object" - } - }, - "or" : { - "stringUnit" : { - "state" : "new", - "value" : "Note object" - } - }, - "pl" : { - "stringUnit" : { - "state" : "new", - "value" : "Obiekt notatki" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "Objeto nota" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "Note object" - } - }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "Объект заметка" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "Not nesnesi" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "Об'єкт нотатки" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "Note object" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "笔记对象" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "筆記物件" - } - } - } - }, - "Sharing.Text.TextBlock" : { - "extractionState" : "manual", - "localizations" : { - "ar" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocks" - } - }, - "be" : { - "stringUnit" : { - "state" : "new", - "value" : "Блокі" - } - }, - "de" : { - "stringUnit" : { - "state" : "new", - "value" : "Blöcke" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Blocks" - } - }, - "es" : { - "stringUnit" : { - "state" : "new", - "value" : "Bloques" - } - }, - "fa" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocks" - } - }, - "fi" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocks" - } - }, - "fr" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocs" - } - }, - "id" : { - "stringUnit" : { - "state" : "new", - "value" : "Blok" - } - }, - "it" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocchi" - } - }, - "ja" : { - "stringUnit" : { - "state" : "new", - "value" : "ブロック" - } - }, - "ko" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocks" - } - }, - "nb" : { - "stringUnit" : { - "state" : "new", - "value" : "Blokker" - } - }, - "nl" : { - "stringUnit" : { - "state" : "new", - "value" : "Blokken" - } - }, - "or" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocks" - } - }, - "pl" : { - "stringUnit" : { - "state" : "new", - "value" : "Bloki" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocos" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocks" - } - }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "Блоки" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "Bloklar" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocks" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocks" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "区块" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "區塊" - } - } - } - }, - "Sharing.Tip.Button.title" : { - "extractionState" : "manual", - "localizations" : { - "ar" : { - "stringUnit" : { - "state" : "new", - "value" : "Show share menu" - } - }, - "be" : { - "stringUnit" : { - "state" : "new", - "value" : "Паказаць меню абагульвання" - } - }, - "de" : { - "stringUnit" : { - "state" : "new", - "value" : "Freigabemenü anzeigen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Show share menu" - } - }, - "es" : { - "stringUnit" : { - "state" : "new", - "value" : "Mostrar menú de compartir" - } - }, - "fa" : { - "stringUnit" : { - "state" : "new", - "value" : "Show share menu" - } - }, - "fi" : { - "stringUnit" : { - "state" : "new", - "value" : "Show share menu" - } - }, - "fr" : { - "stringUnit" : { - "state" : "new", - "value" : "Afficher le menu de partage" - } - }, - "id" : { - "stringUnit" : { - "state" : "new", - "value" : "Tampilan menu berbagi" - } - }, - "it" : { - "stringUnit" : { - "state" : "new", - "value" : "Mostra menu di condivisione" - } - }, - "ja" : { - "stringUnit" : { - "state" : "new", - "value" : "共有メニューを表示" - } - }, - "ko" : { - "stringUnit" : { - "state" : "new", - "value" : "Show share menu" - } - }, - "nb" : { - "stringUnit" : { - "state" : "new", - "value" : "Vis delingsmeny" - } - }, - "nl" : { - "stringUnit" : { - "state" : "new", - "value" : "Toon deel menu" - } - }, - "or" : { - "stringUnit" : { - "state" : "new", - "value" : "Show share menu" - } - }, - "pl" : { - "stringUnit" : { - "state" : "new", - "value" : "Pokaż menu udostępniania" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "Mostrar menu de compartilhamento" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "Show share menu" - } - }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "Показать меню для обмена" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "Paylaşım menüsünü göster" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "Show share menu" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "Show share menu" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "显示分享菜单" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "顯示分享選單" - } - } - } - }, - "Sharing.Tip.Steps.1" : { - "extractionState" : "manual", - "localizations" : { - "ar" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap the iOS sharing button" - } - }, - "be" : { - "stringUnit" : { - "state" : "new", - "value" : "Націсніце кнопку абагульвання iOS" - } - }, - "de" : { - "stringUnit" : { - "state" : "new", - "value" : "Tippen Sie auf den iOS-Sharing-Button" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tap the iOS sharing button" - } - }, - "es" : { - "stringUnit" : { - "state" : "new", - "value" : "Toca el botón de compartir en iOS" - } - }, - "fa" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap the iOS sharing button" - } - }, - "fi" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap the iOS sharing button" - } - }, - "fr" : { - "stringUnit" : { - "state" : "new", - "value" : "Appuyez sur le bouton de partage iOS" - } - }, - "id" : { - "stringUnit" : { - "state" : "new", - "value" : "Ketuk tombol berbagi iOS" - } - }, - "it" : { - "stringUnit" : { - "state" : "new", - "value" : "Tocca il pulsante di condivisione iOS" - } - }, - "ja" : { - "stringUnit" : { - "state" : "new", - "value" : "iOS共有ボタンをタップ" - } - }, - "ko" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap the iOS sharing button" - } - }, - "nb" : { - "stringUnit" : { - "state" : "new", - "value" : "Trykk på knappen for deling i iOS" - } - }, - "nl" : { - "stringUnit" : { - "state" : "new", - "value" : "Tik op de iOS deel knop" - } - }, - "or" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap the iOS sharing button" - } - }, - "pl" : { - "stringUnit" : { - "state" : "new", - "value" : "Stuknij przycisk udostępniania w systemie iOS" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "Toque no botão de compartilhamento do iOS" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap the iOS sharing button" - } - }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "Нажмите на кнопку обмена iOS" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "iOS paylaşım düğmesine dokunun" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap the iOS sharing button" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap the iOS sharing button" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "单击 iOS 共享按钮" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "點擊 iOS 分享按鈕" - } - } - } - }, - "Sharing.Tip.Steps.2" : { - "extractionState" : "manual", - "localizations" : { - "ar" : { - "stringUnit" : { - "state" : "new", - "value" : "Scroll past the app and tap More" - } - }, - "be" : { - "stringUnit" : { - "state" : "new", - "value" : "Пракруціце міма праграмы і націсніце «Яшчэ»." - } - }, - "de" : { - "stringUnit" : { - "state" : "new", - "value" : "Scrolle über die App hinaus und tippe auf Mehr" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Scroll past the app and tap More" - } - }, - "es" : { - "stringUnit" : { - "state" : "new", - "value" : "Desplaza las opciones y toca Más" - } - }, - "fa" : { - "stringUnit" : { - "state" : "new", - "value" : "Scroll past the app and tap More" - } - }, - "fi" : { - "stringUnit" : { - "state" : "new", - "value" : "Scroll past the app and tap More" - } - }, - "fr" : { - "stringUnit" : { - "state" : "new", - "value" : "Défiler au-delà de l'application et appuyez sur Plus" - } - }, - "id" : { - "stringUnit" : { - "state" : "new", - "value" : "Gulir melewati aplikasi dan ketuk Lainnya" - } - }, - "it" : { - "stringUnit" : { - "state" : "new", - "value" : "Scorri oltre l'app e tocca Altro" - } - }, - "ja" : { - "stringUnit" : { - "state" : "new", - "value" : "アプリをスクロールして、その他をタップ" - } - }, - "ko" : { - "stringUnit" : { - "state" : "new", - "value" : "Scroll past the app and tap More" - } - }, - "nb" : { - "stringUnit" : { - "state" : "new", - "value" : "Bla forbi appen og trykk mer" - } - }, - "nl" : { - "stringUnit" : { - "state" : "new", - "value" : "Scroll voorbij de app en tik op Meer" - } - }, - "or" : { - "stringUnit" : { - "state" : "new", - "value" : "Scroll past the app and tap More" - } - }, - "pl" : { - "stringUnit" : { - "state" : "new", - "value" : "Przewiń obok aplikacji i kliknij Więcej" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "Role a tela para além do aplicativo e toque em Mais" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "Scroll past the app and tap More" - } - }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "Прокрутите приложение и нажмите ещё" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "Uygulamayı kaydırın ve Daha Fazla'ya dokunun" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "Scroll past the app and tap More" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "Scroll past the app and tap More" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "滚动过该应用并点击“更多”" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "滾動應用程式並點擊更多" - } - } - } - }, - "Sharing.Tip.Steps.3" : { - "extractionState" : "manual", - "localizations" : { - "ar" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap Edit to find “Anytype” and tap" - } - }, - "be" : { - "stringUnit" : { - "state" : "new", - "value" : "Націсніце «Рэдагаваць», каб знайсці «Anytype», і націсніце" - } - }, - "de" : { - "stringUnit" : { - "state" : "new", - "value" : "Tippe auf Bearbeiten, um \"Anytype\" zu finden und darauf zu tippen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Tap Edit to find “Anytype” and tap" - } - }, - "es" : { - "stringUnit" : { - "state" : "new", - "value" : "Toca Editar para buscar «Anytype» y toca" - } - }, - "fa" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap Edit to find “Anytype” and tap" - } - }, - "fi" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap Edit to find “Anytype” and tap" - } - }, - "fr" : { - "stringUnit" : { - "state" : "new", - "value" : "Appuyez sur Modifier pour trouver « Anytype » et appuyez" - } - }, - "id" : { - "stringUnit" : { - "state" : "new", - "value" : "Ketuk Sunting untuk menemukan “Anytype” dan ketuk" - } - }, - "it" : { - "stringUnit" : { - "state" : "new", - "value" : "Tocca Modifica per trovare “Anytype” e tocca" - } - }, - "ja" : { - "stringUnit" : { - "state" : "new", - "value" : "編集をタップして、Anytypeを見つけ追加してください" - } - }, - "ko" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap Edit to find “Anytype” and tap" - } - }, - "nb" : { - "stringUnit" : { - "state" : "new", - "value" : "Trykk på Rediger for å finne \"Anytype\" og trykk på" - } - }, - "nl" : { - "stringUnit" : { - "state" : "new", - "value" : "Tik op Bewerken om \"Anytype\" te vinden en tik op" - } - }, - "or" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap Edit to find “Anytype” and tap" - } - }, - "pl" : { - "stringUnit" : { - "state" : "new", - "value" : "Stuknij Edytuj, aby znaleźć \"Anytype\" i stuknij" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "Toque em Editar, encontre \"Anytype\" e toque" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap Edit to find “Anytype” and tap" - } - }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "Нажмите Отредактировать, чтобы найти «Anytype» и нажмите" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "\"Anytype\"ı bulmak için Düzenle'ye dokunun" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap Edit to find “Anytype” and tap" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "Tap Edit to find “Anytype” and tap" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "单击编辑来查找“Anytype”,然后点击" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "點擊編輯找到 \"Anytype\",然後點擊" - } - } - } - }, - "Sharing.Tip.Title" : { - "comment" : "MARK: - Sharing tips", - "extractionState" : "manual", - "localizations" : { - "ar" : { - "stringUnit" : { - "state" : "new", - "value" : "Share Extension" - } - }, - "be" : { - "stringUnit" : { - "state" : "new", - "value" : "Абагуліць пашырэнне" - } - }, - "de" : { - "stringUnit" : { - "state" : "new", - "value" : "Erweiterung teilen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Share Extension" - } - }, - "es" : { - "stringUnit" : { - "state" : "new", - "value" : "Extensión para compartir" - } - }, - "fa" : { - "stringUnit" : { - "state" : "new", - "value" : "Share Extension" - } - }, - "fi" : { - "stringUnit" : { - "state" : "new", - "value" : "Share Extension" - } - }, - "fr" : { - "stringUnit" : { - "state" : "new", - "value" : "Extension de partage" - } - }, - "id" : { - "stringUnit" : { - "state" : "new", - "value" : "Bagikan Ekstensi" - } - }, - "it" : { - "stringUnit" : { - "state" : "new", - "value" : "Condividi Estensione" - } - }, - "ja" : { - "stringUnit" : { - "state" : "new", - "value" : "共有拡張機能" - } - }, - "ko" : { - "stringUnit" : { - "state" : "new", - "value" : "Share Extension" - } - }, - "nb" : { - "stringUnit" : { - "state" : "new", - "value" : "Delingsutvidelse" - } - }, - "nl" : { - "stringUnit" : { - "state" : "new", - "value" : "Deel extensie" - } - }, - "or" : { - "stringUnit" : { - "state" : "new", - "value" : "Share Extension" - } - }, - "pl" : { - "stringUnit" : { - "state" : "new", - "value" : "Rozszerzenie udostępniania" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "Compartilhar extensão" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "Share Extension" - } - }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "Расширение для общего доступа" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "Uzantıyı Paylaş" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "Share Extension" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "Share Extension" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "分享扩展" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "共享延伸模組" - } - } - } - }, - "Sharing.Title" : { - "extractionState" : "manual", - "localizations" : { - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Select Space" - } - } - } - }, - "Sharing.URL.Block" : { - "extractionState" : "manual", - "localizations" : { - "ar" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Link Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - }, - "two" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - }, - "zero" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - } - } - } - }, - "be" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "Сувязь %d блокаў" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "Сувязь %d блокаў" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Сувязь блока" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Сувязь %d блокаў" - } - } - } - } - }, - "de" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Block verlinken" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Blöcke verlinken" - } - } - } - } - }, - "en" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "translated", - "value" : "Link Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "translated", - "value" : "Link %d Blocks" - } - } - } - } - }, - "es" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Enlace a bloque" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Enlace a %d bloques" - } - } - } - } - }, - "fa" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Link Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - } - } - } - }, - "fi" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Link Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - } - } - } - }, - "fr" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Lier le bloc" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Lier %d blocs" - } - } - } - } - }, - "id" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Tautkan %d Blok" - } - } - } - } - }, - "it" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Blocco Collegamento" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Collega %d Blocchi" - } - } - } - } - }, - "ja" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d個のリンクブロック" - } - } - } - } - }, - "ko" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - } - } - } - }, - "nb" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Lenke blokk" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Lenke %d blokker" - } - } - } - } - }, - "nl" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Link blok" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d blokken" - } - } - } - } - }, - "or" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Link Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - } - } - } - }, - "pl" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "Bloki %d linków" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "Bloki %d linków" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Blok z odnośnikiem" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Bloki %d linków" - } - } - } - } - }, - "pt-BR" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bloco de Link" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Vincular %d Blocos" - } - } - } - } - }, - "pt-PT" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Link Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - } - } - } - }, - "ru" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "Связать %d блока" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "Связать %d блоков" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Связать блок" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Связать %d блоков" - } - } - } - } - }, - "tr" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bağlantı Bloğu" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Bağlantı %d Blokları" - } - } - } - } - }, - "uk" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Link Block" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - } - } - } - }, - "vi" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Link %d Blocks" - } - } - } - } - }, - "zh-Hans" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "链接 %d 块" - } - } - } - } - }, - "zh-Hant" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "關聯 %d 個區塊" - } - } - } - } - } - } - }, - "Sharing.URL.NewObject" : { - "extractionState" : "manual", - "localizations" : { - "ar" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bookmark Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - }, - "two" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - }, - "zero" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - } - } - } - }, - "be" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Закладкі аб'екта" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Закладак аб'екта" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Закладка аб'екта" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Закладак аб'екта" - } - } - } - } - }, - "de" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Lesezeichen-Objekt" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Lesezeichen-Objekte" - } - } - } - } - }, - "en" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "translated", - "value" : "Bookmark Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "translated", - "value" : "%d Bookmark Objects" - } - } - } - } - }, - "es" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Objeto marcador" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d objetos marcador" - } - } - } - } - }, - "fa" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bookmark Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - } - } - } - }, - "fi" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bookmark Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - } - } - } - }, - "fr" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Objet de marque-page" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Objets de marque-pages" - } - } - } - } - }, - "id" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Objek Markah" - } - } - } - } - }, - "it" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Oggetto Segnalibro" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Oggetti Segnalibro" - } - } - } - } - }, - "ja" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d個のブックマークオブジェクト" - } - } - } - } - }, - "ko" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d 북마크" - } - } - } - } - }, - "nb" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bokmerkeobjekt" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d bokmerkeobjekter" - } - } - } - } - }, - "nl" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bladwijzer object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bladwijzer objecten" - } - } - } - } - }, - "or" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bookmark Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - } - } - } - }, - "pl" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Obiekty zakładek" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Obiekty zakładek" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Obiekt zakładki" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Obiekty zakładek" - } - } - } - } - }, - "pt-BR" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Objeto Marcador" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Objetos Marcadores" - } - } - } + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartilhar extensão" } }, "pt-PT" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bookmark Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Share Extension" } }, "ru" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "Добавить %d объекта в закладки " - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "Добавить %d объектов в закладки" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Добавить объект в закладки" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "Добавить %d объектов в закладки" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Расширение для общего доступа" } }, "tr" : { - "variations" : { - "plural" : { - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Yer İşareti Nesnesi" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Yer İşareti Nesneleri" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Uzantıyı Paylaş" } }, "uk" : { - "variations" : { - "plural" : { - "few" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - }, - "many" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - }, - "one" : { - "stringUnit" : { - "state" : "new", - "value" : "Bookmark Object" - } - }, - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Share Extension" } }, "vi" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d Bookmark Objects" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "Share Extension" } }, "zh-Hans" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d 书签对象" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "分享扩展" } }, "zh-Hant" : { - "variations" : { - "plural" : { - "other" : { - "stringUnit" : { - "state" : "new", - "value" : "%d 書籤物件" - } - } - } + "stringUnit" : { + "state" : "new", + "value" : "共享延伸模組" + } + } + } + }, + "Sharing.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select Space" } } } @@ -146865,155 +143632,6 @@ } } }, - "Spaces.Search.Title" : { - "extractionState" : "manual", - "localizations" : { - "ar" : { - "stringUnit" : { - "state" : "new", - "value" : "Search spaces" - } - }, - "be" : { - "stringUnit" : { - "state" : "new", - "value" : "Пошук прастор" - } - }, - "de" : { - "stringUnit" : { - "state" : "new", - "value" : "Spaces suchen" - } - }, - "en" : { - "stringUnit" : { - "state" : "translated", - "value" : "Search spaces" - } - }, - "es" : { - "stringUnit" : { - "state" : "new", - "value" : "Buscar espacios" - } - }, - "fa" : { - "stringUnit" : { - "state" : "new", - "value" : "Search spaces" - } - }, - "fi" : { - "stringUnit" : { - "state" : "new", - "value" : "Search spaces" - } - }, - "fr" : { - "stringUnit" : { - "state" : "new", - "value" : "Rechercher des espaces" - } - }, - "id" : { - "stringUnit" : { - "state" : "new", - "value" : "Cari ruang" - } - }, - "it" : { - "stringUnit" : { - "state" : "new", - "value" : "Cerca spazi" - } - }, - "ja" : { - "stringUnit" : { - "state" : "new", - "value" : "スペースを検索" - } - }, - "ko" : { - "stringUnit" : { - "state" : "new", - "value" : "Search spaces" - } - }, - "nb" : { - "stringUnit" : { - "state" : "new", - "value" : "Søk etter rom" - } - }, - "nl" : { - "stringUnit" : { - "state" : "new", - "value" : "Zoek ruimten" - } - }, - "or" : { - "stringUnit" : { - "state" : "new", - "value" : "Search spaces" - } - }, - "pl" : { - "stringUnit" : { - "state" : "new", - "value" : "Szukaj spacji" - } - }, - "pt-BR" : { - "stringUnit" : { - "state" : "new", - "value" : "Pesquisar Espaços" - } - }, - "pt-PT" : { - "stringUnit" : { - "state" : "new", - "value" : "Search spaces" - } - }, - "ru" : { - "stringUnit" : { - "state" : "new", - "value" : "Поиск пространств" - } - }, - "tr" : { - "stringUnit" : { - "state" : "new", - "value" : "Alanlarda Ara" - } - }, - "uk" : { - "stringUnit" : { - "state" : "new", - "value" : "Пошук просторів" - } - }, - "vi" : { - "stringUnit" : { - "state" : "new", - "value" : "Search spaces" - } - }, - "zh-Hans" : { - "stringUnit" : { - "state" : "new", - "value" : "搜索空间" - } - }, - "zh-Hant" : { - "stringUnit" : { - "state" : "new", - "value" : "搜尋空間" - } - } - } - }, "Spaces.Title" : { "extractionState" : "manual", "localizations" : { From ad89baf9849b38e923e1a14ed2302f86f367c6d3 Mon Sep 17 00:00:00 2001 From: Mikhail Golovko Date: Mon, 13 Oct 2025 16:44:40 +0300 Subject: [PATCH 2/2] IOS-5312 Delete loc --- .../Loc/Sources/Loc/Generated/Strings.swift | 36 - .../Sources/Loc/Resources/Workspace.xcstrings | 93144 ++++++++-------- 2 files changed, 44881 insertions(+), 48299 deletions(-) diff --git a/Modules/Loc/Sources/Loc/Generated/Strings.swift b/Modules/Loc/Sources/Loc/Generated/Strings.swift index f8f9671600..c71c527115 100644 --- a/Modules/Loc/Sources/Loc/Generated/Strings.swift +++ b/Modules/Loc/Sources/Loc/Generated/Strings.swift @@ -2159,40 +2159,15 @@ public enum Loc { } } public enum Sharing { - public static let addTo = Loc.tr("Workspace", "Sharing.AddTo", fallback: "Add to") public static let inputPlaceholder = Loc.tr("Workspace", "Sharing.InputPlaceholder", fallback: "Add a comment...") - public static let linkTo = Loc.tr("Workspace", "Sharing.LinkTo", fallback: "Link to") - public static let saveAs = Loc.tr("Workspace", "Sharing.SaveAs", fallback: "SAVE AS") - public static let selectSpace = Loc.tr("Workspace", "Sharing.SelectSpace", fallback: "Space") public static let sendToChat = Loc.tr("Workspace", "Sharing.SendToChat", fallback: "Send to chat") public static let title = Loc.tr("Workspace", "Sharing.Title", fallback: "Select Space") - public enum `Any` { - public static let block = Loc.tr("Workspace", "Sharing.Any.Block", fallback: "Blocks") - } - public enum File { - public static func block(_ p1: Int) -> String { - return Loc.tr("Workspace", "Sharing.File.Block", p1, fallback: "Plural format key: Sharing.File.Block") - } - public static func newObject(_ p1: Int) -> String { - return Loc.tr("Workspace", "Sharing.File.NewObject", p1, fallback: "Plural format key: Sharing.File.NewObject") - } - } public enum Navigation { public static let title = Loc.tr("Workspace", "Sharing.Navigation.title", fallback: "Add to Anytype") - public enum LeftButton { - public static let title = Loc.tr("Workspace", "Sharing.Navigation.LeftButton.Title", fallback: "Cancel") - } - public enum RightButton { - public static let title = Loc.tr("Workspace", "Sharing.Navigation.RightButton.Title", fallback: "Done") - } } public enum ObjectList { public static let title = Loc.tr("Workspace", "Sharing.ObjectList.title", fallback: "Select destination") } - public enum Text { - public static let noteObject = Loc.tr("Workspace", "Sharing.Text.NoteObject", fallback: "Note object") - public static let textBlock = Loc.tr("Workspace", "Sharing.Text.TextBlock", fallback: "Blocks") - } public enum Tip { public static let title = Loc.tr("Workspace", "Sharing.Tip.Title", fallback: "Share Extension") public enum Button { @@ -2204,14 +2179,6 @@ public enum Loc { public static let _3 = Loc.tr("Workspace", "Sharing.Tip.Steps.3", fallback: "Tap Edit to find “Anytype” and tap") } } - public enum Url { - public static func block(_ p1: Int) -> String { - return Loc.tr("Workspace", "Sharing.URL.Block", p1, fallback: "Plural format key: Sharing.URL.Block") - } - public static func newObject(_ p1: Int) -> String { - return Loc.tr("Workspace", "Sharing.URL.NewObject", p1, fallback: "Plural format key: Sharing.URL.NewObject") - } - } } public enum SlashMenu { public static let dotsDivider = Loc.tr("Workspace", "SlashMenu.DotsDivider", fallback: "Dots divider") @@ -2466,9 +2433,6 @@ public enum Loc { public enum Info { public static let network = Loc.tr("Workspace", "Spaces.Info.Network", fallback: "Network:") } - public enum Search { - public static let title = Loc.tr("Workspace", "Spaces.Search.Title", fallback: "Search spaces") - } public enum UxType { public enum Chat { public static let changeDescription = Loc.tr("Workspace", "Spaces.UxType.Chat.ChangeDescription", fallback: "Group chat with shared data. Best for small groups or a single ongoing conversation.") diff --git a/Modules/Loc/Sources/Loc/Resources/Workspace.xcstrings b/Modules/Loc/Sources/Loc/Resources/Workspace.xcstrings index d75b26ee18..824cf55b84 100644 --- a/Modules/Loc/Sources/Loc/Resources/Workspace.xcstrings +++ b/Modules/Loc/Sources/Loc/Resources/Workspace.xcstrings @@ -1,643 +1,643 @@ { - "sourceLanguage": "en", - "strings": { - "Chat.AttachedObject.Attach": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Attach" + "sourceLanguage" : "en", + "strings" : { + "Chat.AttachedObject.Attach" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Attach" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Attach" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Attach" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Anhängen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Anhängen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Attach" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attach" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Adjuntar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Adjuntar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Attach" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Attach" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Attach" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Attach" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Attacher" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Attacher" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Lampirkan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Lampirkan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Allega" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Allega" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "添付" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "添付" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Attach" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Attach" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Attach" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Attach" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voeg bij" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voeg bij" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Attach" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Attach" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Attach" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Attach" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Anexar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Anexar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Attach" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Attach" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Прикрепить" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Прикрепить" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Ekle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ekle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Attach" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Attach" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Attach" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Attach" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "附加" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "附加" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Attach" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Attach" } } } }, - "Chat.AttachmentsError.fileCreationFailed": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Failed to create file. Try again." + "Chat.AttachmentsError.fileCreationFailed" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to create file. Try again." } } } }, - "Chat.AttachmentsError.invalidFile": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Invalid file. Try again" + "Chat.AttachmentsError.invalidFile" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid file. Try again" } } } }, - "Chat.AttachmentsError.LimitExceeded": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "Chat.AttachmentsError.LimitExceeded" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You can upload only %@ attachments at a time" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You can upload only %@ attachments at a time" } }, - "two": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "two" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "zero": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "zero" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } } } } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You can upload only %@ attachments at a time" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You can upload only %@ attachments at a time" } } } } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Du kannst nur %@ Anhänge auf einmal hochladen" + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Du kannst nur %@ Anhänge auf einmal hochladen" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Du kannst nur %@ Anhänge auf einmal hochladen" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Du kannst nur %@ Anhänge auf einmal hochladen" } } } } }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "You can upload only %d attachment at a time" + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can upload only %d attachment at a time" } }, - "other": { - "stringUnit": { - "state": "translated", - "value": "You can upload only %d attachments at a time" + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can upload only %d attachments at a time" } } } } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "No puedes subir más de %@ adjuntos al mismo tiempo" + "es" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "No puedes subir más de %@ adjuntos al mismo tiempo" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "No puedes subir más de %@ adjuntos al mismo tiempo" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "No puedes subir más de %@ adjuntos al mismo tiempo" } } } } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You can upload only %@ attachments at a time" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You can upload only %@ attachments at a time" } } } } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You can upload only %@ attachments at a time" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You can upload only %@ attachments at a time" } } } } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Vous ne pouvez télécharger que %@ pièces jointes à la fois" + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Vous ne pouvez télécharger que %@ pièces jointes à la fois" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Vous ne pouvez télécharger que %@ pièces jointes à la fois" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous ne pouvez télécharger que %@ pièces jointes à la fois" } } } } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "Kamu hanya bisa mengunggah %@ lampiran sekali waktu" + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Kamu hanya bisa mengunggah %@ lampiran sekali waktu" } } } } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "È possibile caricare solo %@ allegati alla volta" + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "È possibile caricare solo %@ allegati alla volta" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "È possibile caricare solo %@ allegati alla volta" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "È possibile caricare solo %@ allegati alla volta" } } } } }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "一度に%@つまでしか添付できません。" + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "一度に%@つまでしか添付できません。" } } } } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "You can upload only %@ attachments at a time" + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You can upload only %@ attachments at a time" } } } } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You can upload only %@ attachments at a time" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You can upload only %@ attachments at a time" } } } } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Je kunt slechts %@ bestanden tegelijk uploaden" + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Je kunt slechts %@ bestanden tegelijk uploaden" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Je kunt slechts %@ bestanden tegelijk uploaden" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Je kunt slechts %@ bestanden tegelijk uploaden" } } } } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "or" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You can upload only %@ attachments at a time" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You can upload only %@ attachments at a time" } } } } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You can upload only %@ attachments at a time" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You can upload only %@ attachments at a time" } } } } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Você pode enviar apenas %@ anexos por vez" + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Você pode enviar apenas %@ anexos por vez" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Você pode enviar apenas %@ anexos por vez" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Você pode enviar apenas %@ anexos por vez" } } } } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You can upload only %@ attachments at a time" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You can upload only %@ attachments at a time" } } } } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "Вы можете загружать только %@ файлов за раз" + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Вы можете загружать только %@ файлов за раз" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "Вы можете загружать только %@ файлов за раз" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Вы можете загружать только %@ файлов за раз" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Вы можете загружать только %@ файлов за раз" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Вы можете загружать только %@ файлов за раз" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Вы можете загружать только %@ файлов за раз" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы можете загружать только %@ файлов за раз" } } } } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Tek seferde yalnızca %@ ek yükleyebilirsiniz" + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Tek seferde yalnızca %@ ek yükleyebilirsiniz" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Tek seferde yalnızca %@ ek yükleyebilirsiniz" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Tek seferde yalnızca %@ ek yükleyebilirsiniz" } } } } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "You can upload only %@ attachments at a time" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "You can upload only %@ attachments at a time" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You can upload only %@ attachments at a time" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You can upload only %@ attachments at a time" } } } } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "You can upload only %@ attachments at a time" + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You can upload only %@ attachments at a time" } } } } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "您一次只能更新y %@ 个附件" + "zh-Hans" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "您一次只能更新y %@ 个附件" } } } } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "You can upload only %@ attachments at a time" + "zh-Hant" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You can upload only %@ attachments at a time" } } } @@ -645,12448 +645,12448 @@ } } }, - "Chat.CreateObject.Dismiss.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "If you leave it, all your changes will be lost." + "Chat.CreateObject.Dismiss.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "If you leave it, all your changes will be lost." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "If you leave it, all your changes will be lost." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "If you leave it, all your changes will be lost." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Wenn du es verlässt, gehen alle deine Änderungen verloren." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Wenn du es verlässt, gehen alle deine Änderungen verloren." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "If you leave it, all your changes will be lost." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "If you leave it, all your changes will be lost." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Si sales de ella, se perderán todos tus cambios." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Si sales de ella, se perderán todos tus cambios." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "If you leave it, all your changes will be lost." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "If you leave it, all your changes will be lost." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "If you leave it, all your changes will be lost." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "If you leave it, all your changes will be lost." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Si vous le quittez, tous vos changements seront perdus." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Si vous le quittez, tous vos changements seront perdus." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Semua perubahan akan hilang." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Semua perubahan akan hilang." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Se abbandoni, tutte le modifiche andranno perse." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Se abbandoni, tutte le modifiche andranno perse." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ここから離れると、すべての変更が失われます。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ここから離れると、すべての変更が失われます。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "If you leave it, all your changes will be lost." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "If you leave it, all your changes will be lost." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "If you leave it, all your changes will be lost." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "If you leave it, all your changes will be lost." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Als je het verlaat, zullen alle wijzigingen verloren gaan." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Als je het verlaat, zullen alle wijzigingen verloren gaan." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "If you leave it, all your changes will be lost." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "If you leave it, all your changes will be lost." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "If you leave it, all your changes will be lost." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "If you leave it, all your changes will be lost." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Se você sair, todas as suas alterações serão perdidas." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Se você sair, todas as suas alterações serão perdidas." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "If you leave it, all your changes will be lost." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "If you leave it, all your changes will be lost." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Если вы покинете, все ваши изменения будут потеряны." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Если вы покинете, все ваши изменения будут потеряны." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Eğer çıkarsanız yaptığınız tüm değişiklikler kaybolacaktır." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Eğer çıkarsanız yaptığınız tüm değişiklikler kaybolacaktır." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "If you leave it, all your changes will be lost." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "If you leave it, all your changes will be lost." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "If you leave it, all your changes will be lost." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "If you leave it, all your changes will be lost." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "如果离开,您的所有更改将丢失。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "如果离开,您的所有更改将丢失。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "If you leave it, all your changes will be lost." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "If you leave it, all your changes will be lost." } } } }, - "Chat.CreateObject.Dismiss.Ok": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Yes, close" + "Chat.CreateObject.Dismiss.Ok" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Yes, close" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Yes, close" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Yes, close" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ja, schließen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ja, schließen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Yes, close" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yes, close" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Sí, cerrarla" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Sí, cerrarla" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Yes, close" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Yes, close" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Yes, close" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Yes, close" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Oui, fermer" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Oui, fermer" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ya, tutup" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ya, tutup" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sì, chiudi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sì, chiudi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "はい、閉じる" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "はい、閉じる" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Yes, close" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Yes, close" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Yes, close" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Yes, close" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ja, sluiten" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ja, sluiten" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Yes, close" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Yes, close" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Yes, close" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Yes, close" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Sim, fechar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Sim, fechar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Yes, close" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Yes, close" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Да, закрыть" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Да, закрыть" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Evet, kapat" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Evet, kapat" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Yes, close" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Yes, close" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Yes, close" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Yes, close" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "确认关闭" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "确认关闭" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Yes, close" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Yes, close" } } } }, - "Chat.CreateObject.Dismiss.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Are you sure you want to close this screen?" + "Chat.CreateObject.Dismiss.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure you want to close this screen?" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Are you sure you want to close this screen?" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure you want to close this screen?" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Möchtest du diesen Bildschirm wirklich schließen?" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Möchtest du diesen Bildschirm wirklich schließen?" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Are you sure you want to close this screen?" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure you want to close this screen?" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¿Seguro que quieres cerrar esta pantalla?" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¿Seguro que quieres cerrar esta pantalla?" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Are you sure you want to close this screen?" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure you want to close this screen?" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Are you sure you want to close this screen?" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure you want to close this screen?" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Êtes-vous sûr de vouloir fermer ce chat ?" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Êtes-vous sûr de vouloir fermer ce chat ?" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Yakin ingin menutup layar ini?" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Yakin ingin menutup layar ini?" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sei sicuro di voler chiudere questa schermata?" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sei sicuro di voler chiudere questa schermata?" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "本当にこの画面を閉じてもよろしいですか?" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "本当にこの画面を閉じてもよろしいですか?" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Are you sure you want to close this screen?" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure you want to close this screen?" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Are you sure you want to close this screen?" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure you want to close this screen?" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Weet je zeker dat je dit schermt wilt sluiten?" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Weet je zeker dat je dit schermt wilt sluiten?" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Are you sure you want to close this screen?" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure you want to close this screen?" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Are you sure you want to close this screen?" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure you want to close this screen?" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tem certeza de que deseja fechar essa tela?" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tem certeza de que deseja fechar essa tela?" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Are you sure you want to close this screen?" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure you want to close this screen?" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы уверены, что хотите закрыть этот экран?" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы уверены, что хотите закрыть этот экран?" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu ekranı kapatmak istediğinizden emin misiniz?" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu ekranı kapatmak istediğinizden emin misiniz?" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Are you sure you want to close this screen?" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure you want to close this screen?" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Are you sure you want to close this screen?" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure you want to close this screen?" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您确定要关闭此画面吗?" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您确定要关闭此画面吗?" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Are you sure you want to close this screen?" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure you want to close this screen?" } } } }, - "Chat.DeleteMessage.Description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لا يمكن استعادتها بعد التأكيد" + "Chat.DeleteMessage.Description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لا يمكن استعادتها بعد التأكيد" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "It cannot be restored after confirmation" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "It cannot be restored after confirmation" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Sie kann nach der Bestätigung nicht wiederhergestellt werden" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Sie kann nach der Bestätigung nicht wiederhergestellt werden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "It cannot be restored after confirmation" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "It cannot be restored after confirmation" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Después de confirmar esto, no podrás restaurarlo." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Después de confirmar esto, no podrás restaurarlo." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "It cannot be restored after confirmation" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "It cannot be restored after confirmation" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "It cannot be restored after confirmation" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "It cannot be restored after confirmation" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Il ne pourra pas être restauré après confirmation" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Il ne pourra pas être restauré après confirmation" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pesan tak dapat dikembalikan lagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pesan tak dapat dikembalikan lagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non può essere ripristinato dopo la conferma" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non può essere ripristinato dopo la conferma" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "あとから復元することはできません。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "あとから復元することはできません。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "It cannot be restored after confirmation" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "It cannot be restored after confirmation" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "It cannot be restored after confirmation" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "It cannot be restored after confirmation" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Het kan niet worden hersteld na bevestiging" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Het kan niet worden hersteld na bevestiging" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "It cannot be restored after confirmation" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "It cannot be restored after confirmation" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "It cannot be restored after confirmation" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "It cannot be restored after confirmation" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Não pode ser restaurado após a confirmação" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Não pode ser restaurado após a confirmação" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "It cannot be restored after confirmation" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "It cannot be restored after confirmation" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Его нельзя восстановить после подтверждения" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Его нельзя восстановить после подтверждения" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Onaylandıktan sonra geri getirilemez" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Onaylandıktan sonra geri getirilemez" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "It cannot be restored after confirmation" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "It cannot be restored after confirmation" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "It cannot be restored after confirmation" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "It cannot be restored after confirmation" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "确认后无法恢复" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "确认后无法恢复" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "It cannot be restored after confirmation" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "It cannot be restored after confirmation" } } } }, - "Chat.DeleteMessage.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "حذف هذه الرسالة؟" + "Chat.DeleteMessage.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "حذف هذه الرسالة؟" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Delete this message?" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete this message?" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Diese Nachricht löschen?" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Diese Nachricht löschen?" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Delete this message?" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete this message?" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¿Eliminar este mensaje?" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¿Eliminar este mensaje?" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Delete this message?" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete this message?" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Delete this message?" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete this message?" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Supprimer ce message ?" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Supprimer ce message ?" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hapus pesan ini?" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hapus pesan ini?" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Eliminare questo messaggio?" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Eliminare questo messaggio?" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "このメッセージを削除してもよろしいですか?" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "このメッセージを削除してもよろしいですか?" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Delete this message?" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete this message?" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Delete this message?" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete this message?" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verwijder dit bericht?" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwijder dit bericht?" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Delete this message?" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete this message?" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Delete this message?" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete this message?" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Excluir esta mensagem?" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Excluir esta mensagem?" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Delete this message?" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete this message?" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удалить это сообщение?" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удалить это сообщение?" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu mesaj silinsin mi?" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu mesaj silinsin mi?" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Delete this message?" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete this message?" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Delete this message?" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete this message?" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "删除此消息?" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "删除此消息?" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Delete this message?" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete this message?" } } } }, - "Chat.EditMessage": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Edit Message" + "Chat.EditMessage" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit Message" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Edit Message" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit Message" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nachricht bearbeiten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nachricht bearbeiten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Edit Message" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit Message" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Editar mensaje" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar mensaje" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Edit Message" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit Message" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Edit Message" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit Message" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Modifier le message" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Modifier le message" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sunting Pesan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sunting Pesan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Modifica messaggio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Modifica messaggio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メッセージを編集" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メッセージを編集" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Edit Message" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit Message" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Edit Message" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit Message" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bewerk bericht" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bewerk bericht" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Edit Message" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit Message" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Edit Message" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit Message" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Editar Mensagem" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar Mensagem" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Edit Message" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit Message" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Редактировать сообщение" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Редактировать сообщение" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Mesajı Düzenle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Mesajı Düzenle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Edit Message" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit Message" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Edit Message" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit Message" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "编辑消息" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "编辑消息" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Edit Message" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit Message" } } } }, - "Chat.Empty.Button.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "مشاركة رابط الدعوة" + "Chat.Empty.Button.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "مشاركة رابط الدعوة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Абагуліць запрашальную спасылку" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Абагуліць запрашальную спасылку" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Einladungslink teilen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Einladungslink teilen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invite members" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite members" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Compartir enlace de invitación" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartir enlace de invitación" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Share invite link" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Share invite link" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Share invite link" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Share invite link" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Partager le lien d'invitation" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Partager le lien d'invitation" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bagikan tautan undangan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bagikan tautan undangan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Condividi il link di invito" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Condividi il link di invito" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "招待リンクを共有" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "招待リンクを共有" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Share invite link" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Share invite link" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Del invitasjonslenke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Del invitasjonslenke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deel uitnodigingslink" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deel uitnodigingslink" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Share invite link" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Share invite link" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Udostępnij link z zaproszeniem" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Udostępnij link z zaproszeniem" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Compartilhar link de convite" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartilhar link de convite" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Share invite link" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Share invite link" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Поделится ссылкой на приглашение " + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Поделится ссылкой на приглашение " } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Davet bağlantısını paylaş" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Davet bağlantısını paylaş" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Share invite link" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Share invite link" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chia sẻ link mời" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chia sẻ link mời" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "分享邀请链接" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "分享邀请链接" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "分享邀請連結" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "分享邀請連結" } } } }, - "Chat.Empty.Editor.Description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "Chat.Empty.Editor.Description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Write the first message to spark it up!" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Write the first message to spark it up!" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¡Escribe el primero para animar la fiesta!" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¡Escribe el primero para animar la fiesta!" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tulislah yang pertama untuk mengawalinya!" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tulislah yang pertama untuk mengawalinya!" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Scrivi il primo a fai scintille!" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Scrivi il primo a fai scintille!" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メッセージを送って、会話を始めましょう!" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メッセージを送って、会話を始めましょう!" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Schrijf de eerste om op te schudden!" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Schrijf de eerste om op te schudden!" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İlk kıvılcımı ateşleyeni yaz!" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İlk kıvılcımı ateşleyeni yaz!" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Write the first one to spark it up!" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Write the first one to spark it up!" } } } }, - "Chat.Empty.Owner.Description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "Chat.Empty.Owner.Description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invite people and start the conversation!" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite people and start the conversation!" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¡Invita a alguien y anima la fiesta!" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¡Invita a alguien y anima la fiesta!" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Undanglah orang-orang dan ciptakanlah suasana yang meriah!" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Undanglah orang-orang dan ciptakanlah suasana yang meriah!" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Invita le persone e fate scintille!" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Invita le persone e fate scintille!" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メンバーを招待して、会話を始めましょう!" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メンバーを招待して、会話を始めましょう!" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Nodig mensen uit en schud het op!" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nodig mensen uit en schud het op!" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İnsanları davet et ve ateşle!" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İnsanları davet et ve ateşle!" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "邀请别人并燃起来!" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "邀请别人并燃起来!" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Invite people and spark it up!" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and spark it up!" } } } }, - "Chat.Empty.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "Chat.Empty.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Noch keine Nachrichten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Noch keine Nachrichten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You just created a chat" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You just created a chat" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Aún no hay mensajes" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Aún no hay mensajes" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Belum ada pesan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Belum ada pesan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nessun messaggio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nessun messaggio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "まだメッセージはありません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "まだメッセージはありません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Nog geen berichten" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nog geen berichten" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Henüz mesaj yok" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Henüz mesaj yok" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "尚无消息" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "尚无消息" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "No messages yet" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "No messages yet" } } } }, - "Chat.FileSyncError.IncompatibleVersion.Action": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Update App" + "Chat.FileSyncError.IncompatibleVersion.Action" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Update App" } } } }, - "Chat.FileSyncError.IncompatibleVersion.Description": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "This version doesn’t support sending files or images. Update the app to share media in chats." + "Chat.FileSyncError.IncompatibleVersion.Description" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This version doesn’t support sending files or images. Update the app to share media in chats." } } } }, - "Chat.FileSyncError.IncompatibleVersion.Title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Incompatible Version" + "Chat.FileSyncError.IncompatibleVersion.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Incompatible Version" } } } }, - "Chat.FileSyncError.Network.description": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "We couldn’t connect right now. This may be due to no internet or a temporary sync issue. We’ll keep trying in the background." + "Chat.FileSyncError.Network.description" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "We couldn’t connect right now. This may be due to no internet or a temporary sync issue. We’ll keep trying in the background." } } } }, - "Chat.FileSyncError.Network.done": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Got it" + "Chat.FileSyncError.Network.done" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Got it" } } } }, - "Chat.FileSyncError.Network.title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Network Error" + "Chat.FileSyncError.Network.title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network Error" } } } }, - "Chat.NewMessages": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "Chat.NewMessages" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Neue Nachrichten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Neue Nachrichten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "New Messages" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "New Messages" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Mensajes nuevos" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Mensajes nuevos" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Nouveaux messages" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nouveaux messages" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pesan Baru" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pesan Baru" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nuovi Messaggi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nuovi Messaggi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "新着メッセージ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "新着メッセージ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Nieuwe berichten" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nieuwe berichten" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yeni Mesajlar" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yeni Mesajlar" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "新消息" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "新消息" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "New Messages" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "New Messages" } } } }, - "Chat.Participant.Badge": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "(You)" + "Chat.Participant.Badge" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "(You)" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "(You)" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "(You)" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "(Du)" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "(Du)" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "(You)" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "(You)" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "(Tú)" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "(Tú)" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "(You)" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "(You)" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "(You)" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "(You)" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "(Vous)" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "(Vous)" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "(Kamu)" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "(Kamu)" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "(Tu)" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "(Tu)" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "(あなた)" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "(あなた)" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "(You)" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "(You)" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "(You)" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "(You)" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "(Jij)" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "(Jij)" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "(You)" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "(You)" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "(You)" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "(You)" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "(Você)" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "(Você)" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "(You)" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "(You)" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "(Вы)" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "(Вы)" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "(Siz)" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "(Siz)" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "(You)" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "(You)" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "(You)" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "(You)" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "(您)" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "(您)" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "(You)" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "(You)" } } } }, - "Chat.Reactions.Empty.Subtitle": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "ربما قام شخص ما بإزالة رد الفعل للتو أو حدثت مشكلة فنية" + "Chat.Reactions.Empty.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "ربما قام شخص ما بإزالة رد الفعل للتو أو حدثت مشكلة فنية" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Probably someone has just removed the reaction or technical issue happened" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Probably someone has just removed the reaction or technical issue happened" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Wahrscheinlich hat jemand gerade die Reaktion entfernt oder es ist ein technisches Problem aufgetreten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Wahrscheinlich hat jemand gerade die Reaktion entfernt oder es ist ein technisches Problem aufgetreten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Probably someone has just removed the reaction or technical issue happened" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Probably someone has just removed the reaction or technical issue happened" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Puede que se haya eliminado la reacción o se haya producido un error técnico" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Puede que se haya eliminado la reacción o se haya producido un error técnico" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Probably someone has just removed the reaction or technical issue happened" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Probably someone has just removed the reaction or technical issue happened" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Probably someone has just removed the reaction or technical issue happened" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Probably someone has just removed the reaction or technical issue happened" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Probablement quelqu'un vient de supprimer la réaction ou un problème technique est survenu" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Probablement quelqu'un vient de supprimer la réaction ou un problème technique est survenu" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Mungkin seseorang menghapus reaksinya atau ada masalah teknis" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Mungkin seseorang menghapus reaksinya atau ada masalah teknis" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Probabilmente qualcuno ha appena rimosso la reazione o si è verificato un problema tecnico" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Probabilmente qualcuno ha appena rimosso la reazione o si è verificato un problema tecnico" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "恐らく、誰かによってリアクションが削除されたか、技術的な問題が発生しました。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "恐らく、誰かによってリアクションが削除されたか、技術的な問題が発生しました。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Probably someone has just removed the reaction or technical issue happened" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Probably someone has just removed the reaction or technical issue happened" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Probably someone has just removed the reaction or technical issue happened" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Probably someone has just removed the reaction or technical issue happened" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Waarschijnlijk heeft iemand zojuist de reactie verwijderd of was er een technisch probleem" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Waarschijnlijk heeft iemand zojuist de reactie verwijderd of was er een technisch probleem" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Probably someone has just removed the reaction or technical issue happened" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Probably someone has just removed the reaction or technical issue happened" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Probably someone has just removed the reaction or technical issue happened" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Probably someone has just removed the reaction or technical issue happened" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Provavelmente alguém acabou de remover a reação ou ocorreu um problema técnico" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Provavelmente alguém acabou de remover a reação ou ocorreu um problema técnico" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Probably someone has just removed the reaction or technical issue happened" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Probably someone has just removed the reaction or technical issue happened" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Возможно, кто-то только что удалил реакцию или случился технический сбой" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Возможно, кто-то только что удалил реакцию или случился технический сбой" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Muhtemelen birisi tepkisini kaldırdı veya teknik bir sorun oluştu" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Muhtemelen birisi tepkisini kaldırdı veya teknik bir sorun oluştu" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Probably someone has just removed the reaction or technical issue happened" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Probably someone has just removed the reaction or technical issue happened" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Probably someone has just removed the reaction or technical issue happened" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Probably someone has just removed the reaction or technical issue happened" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "也许有人刚移除了反应,或者出现技术问题" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "也许有人刚移除了反应,或者出现技术问题" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Probably someone has just removed the reaction or technical issue happened" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Probably someone has just removed the reaction or technical issue happened" } } } }, - "Chat.Reactions.Empty.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لا توجد ردود فعل حتى الآن" + "Chat.Reactions.Empty.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لا توجد ردود فعل حتى الآن" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "No reactions yet" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "No reactions yet" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Noch keine Reaktionen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Noch keine Reaktionen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No reactions yet" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No reactions yet" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Aún no hay reacciones" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Aún no hay reacciones" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No reactions yet" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No reactions yet" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "No reactions yet" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "No reactions yet" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Aucune réaction pour l'instant" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Aucune réaction pour l'instant" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Belum ada reaksi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Belum ada reaksi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ancora nessuna reazione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ancora nessuna reazione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "まだリアクションがありません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "まだリアクションがありません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "No reactions yet" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "No reactions yet" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "No reactions yet" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "No reactions yet" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Nog geen reacties" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nog geen reacties" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "No reactions yet" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "No reactions yet" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "No reactions yet" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "No reactions yet" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Nenhuma reação ainda" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Nenhuma reação ainda" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "No reactions yet" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "No reactions yet" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Пока нет реакций" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Пока нет реакций" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Henüz tepki verilmemiş" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Henüz tepki verilmemiş" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "No reactions yet" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "No reactions yet" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "No reactions yet" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "No reactions yet" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "暂无回应" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "暂无回应" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "No reactions yet" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "No reactions yet" } } } }, - "Chat.Reply.Attachments": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Attachments (%@)" + "Chat.Reply.Attachments" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachments (%@)" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Attachments (%@)" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachments (%@)" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Anhänge (%@)" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Anhänge (%@)" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Attachments (%@)" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachments (%@)" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Archivos adjuntos (%@)" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Archivos adjuntos (%@)" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Attachments (%@)" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachments (%@)" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Attachments (%@)" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachments (%@)" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Pièces jointes (%@)" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Pièces jointes (%@)" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Lampiran (%@)" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Lampiran (%@)" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Allegati (%@)" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Allegati (%@)" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "添付ファイル (%@)" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "添付ファイル (%@)" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Attachments (%@)" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachments (%@)" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Attachments (%@)" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachments (%@)" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bijlagen (%@)" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bijlagen (%@)" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Attachments (%@)" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachments (%@)" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Attachments (%@)" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachments (%@)" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Anexos (%@)" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Anexos (%@)" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Attachments (%@)" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachments (%@)" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вложения (%@)" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вложения (%@)" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "(%@) ek" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "(%@) ek" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Attachments (%@)" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachments (%@)" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Attachments (%@)" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachments (%@)" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "附件 (%@)" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "附件 (%@)" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Attachments (%@)" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachments (%@)" } } } }, - "Chat.Reply.Files": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Files (%@)" + "Chat.Reply.Files" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Files (%@)" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Files (%@)" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Files (%@)" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Dateien (%@)" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Dateien (%@)" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Files (%@)" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Files (%@)" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Archivos (%@)" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Archivos (%@)" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Files (%@)" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Files (%@)" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Files (%@)" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Files (%@)" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Fichiers (%@)" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Fichiers (%@)" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Berkas (%@)" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Berkas (%@)" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "File (%@)" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "File (%@)" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ファイル (%@)" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ファイル (%@)" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Files (%@)" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Files (%@)" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Files (%@)" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Files (%@)" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bestanden (%@)" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bestanden (%@)" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Files (%@)" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Files (%@)" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Files (%@)" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Files (%@)" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Arquivos (%@)" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Arquivos (%@)" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Files (%@)" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Files (%@)" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Файлы (%@)" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Файлы (%@)" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "(%@) dosya" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "(%@) dosya" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Files (%@)" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Files (%@)" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Files (%@)" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Files (%@)" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "文件 (%@)" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "文件 (%@)" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Files (%@)" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Files (%@)" } } } }, - "Chat.Reply.Images": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "Chat.Reply.Images" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Bilder (%@)" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Bilder (%@)" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Images (%@)" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Images (%@)" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Imágenes (%@)" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Imágenes (%@)" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Gambar (%@)" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Gambar (%@)" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Immagini (%@)" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Immagini (%@)" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "画像 (%@)" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "画像 (%@)" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Afbeeldingen (%@)" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Afbeeldingen (%@)" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Imagens (%@)" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Imagens (%@)" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Изображения (%@)" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Изображения (%@)" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "(%@) görüntü" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "(%@) görüntü" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "图像 (%@)" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "图像 (%@)" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Images (%@)" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Images (%@)" } } } }, - "Chat.ReplyTo": { - "comment": "MARK: - Chats", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Reply to %@" + "Chat.ReplyTo" : { + "comment" : "MARK: - Chats", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply to %@" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Reply to %@" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply to %@" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Auf %@ antworten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Auf %@ antworten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Reply to %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reply to %@" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Responder a %@" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Responder a %@" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Reply to %@" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply to %@" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Reply to %@" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply to %@" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Réponse à %@" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Réponse à %@" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Balas %@" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Balas %@" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Rispondi a %@" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Rispondi a %@" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "%@さんに返信" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "%@さんに返信" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Reply to %@" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply to %@" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Reply to %@" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply to %@" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Antwoord op %@" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Antwoord op %@" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Reply to %@" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply to %@" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Reply to %@" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply to %@" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Respondendo a %@" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Respondendo a %@" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Reply to %@" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply to %@" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ответить %@" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ответить %@" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yanıtla: %@" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yanıtla: %@" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Reply to %@" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply to %@" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Reply to %@" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply to %@" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "回复 %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "回复 %@" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Reply to %@" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply to %@" } } } }, - "Chat.SendLimitAlert.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "Chat.SendLimitAlert.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Sieht so aus, als würdest du Nachrichten in Windeseile verschicken. Warte noch eine Sekunde bis zur nächsten Nachricht." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Sieht so aus, als würdest du Nachrichten in Windeseile verschicken. Warte noch eine Sekunde bis zur nächsten Nachricht." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Parece que estás enviando mensajes a la velocidad de la luz. Espera un poco para el siguiente." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Parece que estás enviando mensajes a la velocidad de la luz. Espera un poco para el siguiente." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Il semble que vous envoyez des messages à la vitesse de la foudre. Attendez un instant avant le suivant." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Il semble que vous envoyez des messages à la vitesse de la foudre. Attendez un instant avant le suivant." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sepertinya kamu mengirimkan terlalu banyak pesan. Tunggu sebentar sebelum mengirim pesan lagi." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sepertinya kamu mengirimkan terlalu banyak pesan. Tunggu sebentar sebelum mengirim pesan lagi." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sembra che tu stia inviando messaggi alla velocità della luce. Dagli un secondo prima di inviare il prossimo." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sembra che tu stia inviando messaggi alla velocità della luce. Dagli un secondo prima di inviare il prossimo." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メッセージを送信するスピードが速すぎます。少し時間を置いてから、もう一度送信してください。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メッセージを送信するスピードが速すぎます。少し時間を置いてから、もう一度送信してください。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Het lijkt erop dat je berichten met lichtsnelheid verstuurt. Wacht even voor je volgende bericht." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Het lijkt erop dat je berichten met lichtsnelheid verstuurt. Wacht even voor je volgende bericht." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Parece que você está enviando mensagens com velocidade relâmpago. Dê um segundo antes do seu próximo." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Parece que você está enviando mensagens com velocidade relâmpago. Dê um segundo antes do seu próximo." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Похоже, вы отправляете сообщения со скоростью молнии. Дайте секунду перед следующим." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Похоже, вы отправляете сообщения со скоростью молнии. Дайте секунду перед следующим." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Görünüşe göre yıldırım hızıyla mesaj gönderiyorsun. Bir sonraki mesajını yollamadan önce bir saniye bekle." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Görünüşe göre yıldırım hızıyla mesaj gönderiyorsun. Bir sonraki mesajını yollamadan önce bir saniye bekle." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "闪电的速度似乎都没你发消息快。发下一条消息前先缓缓。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "闪电的速度似乎都没你发消息快。发下一条消息前先缓缓。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Looks like you're sending messages at lightning speed. Give it a sec before your next one." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Looks like you're sending messages at lightning speed. Give it a sec before your next one." } } } }, - "Chat.SendLimitAlert.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Hold up! Turbo typing detected!" + "Chat.SendLimitAlert.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Hold up! Turbo typing detected!" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Hold up! Turbo typing detected!" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Hold up! Turbo typing detected!" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Moment mal! Turbotippen erkannt!" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Moment mal! Turbotippen erkannt!" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Hold up! Turbo typing detected!" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hold up! Turbo typing detected!" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¡Calma! ¡Estás escribiendo muy deprisa!" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¡Calma! ¡Estás escribiendo muy deprisa!" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Hold up! Turbo typing detected!" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Hold up! Turbo typing detected!" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Hold up! Turbo typing detected!" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Hold up! Turbo typing detected!" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Attendez ! Frappe turbo détectée !" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Attendez ! Frappe turbo détectée !" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bentar-bentar, banter banget!" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bentar-bentar, banter banget!" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Aspettate! Rilevata digitazione turbo!" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Aspettate! Rilevata digitazione turbo!" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "お待ちください! 異常なタイピングが検出されました!" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "お待ちください! 異常なタイピングが検出されました!" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Hold up! Turbo typing detected!" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Hold up! Turbo typing detected!" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Hold up! Turbo typing detected!" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Hold up! Turbo typing detected!" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Wacht even! Turbo typen gedetecteerd!" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wacht even! Turbo typen gedetecteerd!" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Hold up! Turbo typing detected!" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Hold up! Turbo typing detected!" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Hold up! Turbo typing detected!" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Hold up! Turbo typing detected!" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Aguente aí! Digitação rápida detectada!" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Aguente aí! Digitação rápida detectada!" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Hold up! Turbo typing detected!" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Hold up! Turbo typing detected!" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удерживаем! Обнаружен Turbo typing!" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удерживаем! Обнаружен Turbo typing!" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Durun! Turbo yazım algılandı!" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Durun! Turbo yazım algılandı!" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Hold up! Turbo typing detected!" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Hold up! Turbo typing detected!" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Hold up! Turbo typing detected!" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Hold up! Turbo typing detected!" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "等等!输入得太快了!" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "等等!输入得太快了!" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Hold up! Turbo typing detected!" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Hold up! Turbo typing detected!" } } } }, - "ChatTip.Step1.Description": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Anytype now supports real-time chat in Shared Channels — so your thoughts and dialogues can grow together." + "ChatTip.Step1.Description" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Anytype now supports real-time chat in Shared Channels — so your thoughts and dialogues can grow together." } } } }, - "ChatTip.Step1.Title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Ideas need conversations" + "ChatTip.Step1.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ideas need conversations" } } } }, - "ChatTip.Step2.Description": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Spaces and Chats now show live previews and updates — one place to follow everything that matters." + "ChatTip.Step2.Description" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spaces and Chats now show live previews and updates — one place to follow everything that matters." } } } }, - "ChatTip.Step2.Title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Your Vault just leveled up" + "ChatTip.Step2.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your Vault just leveled up" } } } }, - "ChatTip.Step3.Description": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Share ideas, drop docs, edit together — everything flows in real time." + "ChatTip.Step3.Description" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share ideas, drop docs, edit together — everything flows in real time." } } } }, - "ChatTip.Step3.Title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Chats that do more" + "ChatTip.Step3.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chats that do more" } } } }, - "ChatTip.Step4.Description": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Your pages, lists, and files — structured, surfaced, and always within reach." + "ChatTip.Step4.Description" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your pages, lists, and files — structured, surfaced, and always within reach." } } } }, - "ChatTip.Step4.Title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Everything in Its Right Place" + "ChatTip.Step4.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Everything in Its Right Place" } } } }, - "Collaboration": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "التعاون" + "Collaboration" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "التعاون" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Collaboration" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaboration" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Zusammenarbeit" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Zusammenarbeit" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Collaboration" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Collaboration" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Colaboración" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Colaboración" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Collaboration" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaboration" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Collaboration" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaboration" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Collaboration" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaboration" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kolaborasi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kolaborasi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Collaborazione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaborazione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "共同編集" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "共同編集" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Collaboration" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaboration" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Collaboration" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaboration" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Samenwerking" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Samenwerking" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ସହଯୋଗ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ସହଯୋଗ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Collaboration" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaboration" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Collaboration" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaboration" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Collaboration" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaboration" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Совместная работа" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Совместная работа" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İş Birliği" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İş Birliği" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Collaboration" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaboration" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Collaboration" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaboration" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "协作" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "协作" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Collaboration" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaboration" } } } }, - "Collection.View.Empty.Button.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إنشاء كائن" + "Collection.View.Empty.Button.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إنشاء كائن" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Стварыць аб'ект" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Стварыць аб'ект" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Objekt erstellen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Objekt erstellen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Create object" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create object" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Crear objeto" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Crear objeto" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Create object" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Create object" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Luo objekti" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Luo objekti" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Créer un objet" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Créer un objet" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buat objek" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buat objek" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Crea oggetto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Crea oggetto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "オブジェクトを作成" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "オブジェクトを作成" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Create object" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Create object" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Opprett objekt" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Opprett objekt" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Maak object" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Maak object" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Create object" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Create object" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Utwórz obiekt" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Utwórz obiekt" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Criar objeto" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Criar objeto" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Create object" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Create object" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Создать объект" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Создать объект" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Nesne oluştur" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nesne oluştur" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Створити об'єкт" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Створити об'єкт" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tạo đối tượng" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tạo đối tượng" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "创建对象" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "创建对象" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "建立物件" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "建立物件" } } } }, - "Collection.View.Empty.Subtitle": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "أنشئ الكائن الأول للمتابعة" + "Collection.View.Empty.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "أنشئ الكائن الأول للمتابعة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Каб працягнуць, стварыце першы аб'ект" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Каб працягнуць, стварыце першы аб'ект" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Erstes Objekt erstellen um fortzufahren" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Erstes Objekt erstellen um fortzufahren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Create first object to continue" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create first object to continue" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Crea el primer objeto para continuar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Crea el primer objeto para continuar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Create first object to continue" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Create first object to continue" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Luo ensimmäinen objekti jatkaaksesi" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Luo ensimmäinen objekti jatkaaksesi" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Créer un premier objet pour continuer" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Créer un premier objet pour continuer" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buatlah objek pertama dulu" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buatlah objek pertama dulu" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Crea il primo oggetto per continuare" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Crea il primo oggetto per continuare" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "まずはオブジェクトを作成してください" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "まずはオブジェクトを作成してください" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Create first object to continue" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Create first object to continue" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Opprett det første objektet for å fortsette" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Opprett det første objektet for å fortsette" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Maak eerst object om door te gaan" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Maak eerst object om door te gaan" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Create first object to continue" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Create first object to continue" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Utwórz pierwszy obiekt, aby kontynuować" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Utwórz pierwszy obiekt, aby kontynuować" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Crie seu primeiro objeto para continuar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Crie seu primeiro objeto para continuar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Create first object to continue" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Create first object to continue" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Создайте первый объект, чтобы продолжить" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Создайте первый объект, чтобы продолжить" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Devam etmek için ilk nesneyi oluştur" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Devam etmek için ilk nesneyi oluştur" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Створіть перший об'єкт, щоб продовжити" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Створіть перший об'єкт, щоб продовжити" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Create first object to continue" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Create first object to continue" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "创建第一个对象以继续" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "创建第一个对象以继续" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "建立第一個物件以繼續" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "建立第一個物件以繼續" } } } }, - "Collection.View.Empty.Title": { - "comment": "MARK: - Collection: empty view", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لا توجد كائنات" + "Collection.View.Empty.Title" : { + "comment" : "MARK: - Collection: empty view", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لا توجد كائنات" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Няма аб'ектаў" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Няма аб'ектаў" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Keine Objekte" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Keine Objekte" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No objects" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No objects" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No hay objetos" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No hay objetos" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No objects" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No objects" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Ei objekteja" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ei objekteja" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Aucun objet" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Aucun objet" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak ada objek" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak ada objek" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nessun oggetto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nessun oggetto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "オブジェクトがありません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "オブジェクトがありません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "No objects" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "No objects" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ingen objekter" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ingen objekter" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geen objecten" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geen objecten" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "No objects" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "No objects" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Brak obiektów" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Brak obiektów" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Sem objetos" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Sem objetos" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "No objects" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "No objects" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Нет объектов" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Нет объектов" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Nesne yok" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nesne yok" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Немає об'єктів" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Немає об'єктів" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không có đối tượng" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không có đối tượng" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "无对象" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "无对象" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "沒有物件" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "沒有物件" } } } }, - "Content.Audio.Upload": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Upload audio" + "Content.Audio.Upload" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload audio" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Запампаваць аўдыя" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Запампаваць аўдыя" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Audio hochladen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Audio hochladen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Upload audio" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload audio" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cargar audio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cargar audio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Upload audio" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload audio" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Lähetä ääni" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Lähetä ääni" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Importer un fichier audio" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Importer un fichier audio" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Unggah suara" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Unggah suara" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Carica audio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Carica audio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "音声をアップロード" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "音声をアップロード" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Upload audio" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload audio" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Last opp lyd" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Last opp lyd" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Upload audio" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload audio" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Upload audio" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload audio" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Prześlij dźwięk" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Prześlij dźwięk" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Enviar áudio" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Enviar áudio" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Upload audio" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload audio" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Загрузить аудио" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Загрузить аудио" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Ses yükle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ses yükle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Завантажити аудіо" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Завантажити аудіо" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tải lên âm thanh" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tải lên âm thanh" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "上传音频" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "上传音频" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "上傳音訊" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "上傳音訊" } } } }, - "Content.Bookmark.Add": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Add a web bookmark" + "Content.Bookmark.Add" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Add a web bookmark" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Дадайце вэб-закладку" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Дадайце вэб-закладку" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ein Web-Lesezeichen hinzufügen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ein Web-Lesezeichen hinzufügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Add a web bookmark" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add a web bookmark" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Agregar un marcador web" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Agregar un marcador web" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Add a web bookmark" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Add a web bookmark" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Lisää verkkokirjanmerkki" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Lisää verkkokirjanmerkki" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ajouter un signet web" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ajouter un signet web" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tambahkan sebuah penanda web" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tambahkan sebuah penanda web" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Aggiungi un segnalibro web" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Aggiungi un segnalibro web" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Webブックマークを追加" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Webブックマークを追加" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "외부 북마크 추가" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "외부 북마크 추가" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Legg til bokmerke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Legg til bokmerke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voeg een webbladwijzer toe" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voeg een webbladwijzer toe" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Add a web bookmark" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Add a web bookmark" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dodawanie zakładki internetowej" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dodawanie zakładki internetowej" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Adicionar um marcador da web" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Adicionar um marcador da web" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Add a web bookmark" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Add a web bookmark" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Добавить веб-закладку" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Добавить веб-закладку" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bir web yer imi ekle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bir web yer imi ekle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Додати вебзакладку" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Додати вебзакладку" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Add a web bookmark" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add a web bookmark" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "添加网络书签" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "添加网络书签" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "添加網頁書籤" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "添加網頁書籤" } } } }, - "Content.Bookmark.Loading": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Loading, please wait..." + "Content.Bookmark.Loading" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Loading, please wait..." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Загрузка, калі ласка пачакайце..." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Загрузка, калі ласка пачакайце..." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Wird geladen, bitte warten..." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Wird geladen, bitte warten..." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Loading, please wait..." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading, please wait..." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cargando. Espera, por favor…" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cargando. Espera, por favor…" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Loading, please wait..." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Loading, please wait..." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Ladataan, odotathan..." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ladataan, odotathan..." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": " Chargement, veuillez patienter... " + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : " Chargement, veuillez patienter... " } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Memuat, mohon tunggu..." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Memuat, mohon tunggu..." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Caricamento in corso, attendere prego..." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Caricamento in corso, attendere prego..." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "読み込み中です。しばらくお待ちください…" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "読み込み中です。しばらくお待ちください…" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "로딩 중입니다. 잠시만 기다려주세요..." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "로딩 중입니다. 잠시만 기다려주세요..." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Laster inn, vennligst vent..." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Laster inn, vennligst vent..." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Laden, even geduld..." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Laden, even geduld..." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Loading, please wait..." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Loading, please wait..." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wczytywanie, proszę czekać..." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wczytywanie, proszę czekać..." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Carregando, por favor aguarde..." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Carregando, por favor aguarde..." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Loading, please wait..." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Loading, please wait..." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Загружается, подождите..." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Загружается, подождите..." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yükleniyor, lütfen bekleyin..." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yükleniyor, lütfen bekleyin..." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Завантаження, будь ласка, зачекайте..." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Завантаження, будь ласка, зачекайте..." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đang tải, vui lòng đợi..." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đang tải, vui lòng đợi..." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "正在加载,请稍候..." + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "正在加载,请稍候..." } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "正在載入,請稍候..." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "正在載入,請稍候..." } } } }, - "Content.Common.Error": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "حدث خطأ ما، حاول مرة أخرى" + "Content.Common.Error" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "حدث خطأ ما، حاول مرة أخرى" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Нешта пайшло не так, паспрабуйце яшчэ раз." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Нешта пайшло не так, паспрабуйце яшчэ раз." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Es ist etwas schiefgelaufen, versuchen Sie es noch einmal" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Es ist etwas schiefgelaufen, versuchen Sie es noch einmal" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Something went wrong, try again" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Something went wrong, try again" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Se ha producido un error. Inténtalo de nuevo." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Se ha producido un error. Inténtalo de nuevo." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Something went wrong, try again" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Something went wrong, try again" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Jotain meni pieleen, kokeile uudelleen" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Jotain meni pieleen, kokeile uudelleen" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Une erreur s’est produite, réessayez" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Une erreur s’est produite, réessayez" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ada yang salah, coba lagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ada yang salah, coba lagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Qualcosa è andato storto, riprova" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Qualcosa è andato storto, riprova" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "問題が発生しました。もう一度お試しください。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "問題が発生しました。もう一度お試しください。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Something went wrong, try again" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Something went wrong, try again" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Noe gikk galt, vennligst prøv på nytt" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Noe gikk galt, vennligst prøv på nytt" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Er is iets verkeerd gegaan, probeer het opnieuw" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Er is iets verkeerd gegaan, probeer het opnieuw" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Something went wrong, try again" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Something went wrong, try again" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Coś poszło nie tak, spróbuj ponownie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Coś poszło nie tak, spróbuj ponownie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Algo deu errado, tente novamente" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Algo deu errado, tente novamente" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Something went wrong, try again" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Something went wrong, try again" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Что-то пошло не так, попробуйте еще раз" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Что-то пошло не так, попробуйте еще раз" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bir şeyler ters gitti tekrar deneyin." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bir şeyler ters gitti tekrar deneyin." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Щось пішло не так, спробуйте ще раз" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Щось пішло не так, спробуйте ще раз" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đã xảy ra lỗi, vui lòng thử lại" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đã xảy ra lỗi, vui lòng thử lại" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "出错了,请重试" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "出错了,请重试" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "出了點問題,再試一次" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "出了點問題,再試一次" } } } }, - "Content.Common.Uploading": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Uploading..." + "Content.Common.Uploading" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Uploading..." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Загрузка..." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Загрузка..." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Hochladen..." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Hochladen..." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Uploading..." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uploading..." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cargando…" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cargando…" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Uploading..." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Uploading..." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Lähetetään" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Lähetetään" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Envoi en cours..." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Envoi en cours..." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Mengunggah..." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Mengunggah..." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Caricamento..." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Caricamento..." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "アップロード中…" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "アップロード中…" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Uploading..." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Uploading..." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Laster opp..." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Laster opp..." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Uploaden..." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Uploaden..." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Uploading..." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Uploading..." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przesyłanie..." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Przesyłanie..." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Enviando..." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Enviando..." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Uploading..." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Uploading..." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Загрузка..." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Загрузка..." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yükleniyor..." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yükleniyor..." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Завантаження..." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Завантаження..." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đang tải lên..." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đang tải lên..." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "上传中..." + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "上传中..." } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "上傳中..." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "上傳中..." } } } }, - "Content.DataView.InlineCollection.Subtitle": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "مجموعة مضمنة" + "Content.DataView.InlineCollection.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "مجموعة مضمنة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Убудаваная калекцыя" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Убудаваная калекцыя" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Inline-Sammlung" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline-Sammlung" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Inline collection" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inline collection" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Colección insertada" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Colección insertada" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Inline collection" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline collection" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Sisällytetty kokoelma" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Sisällytetty kokoelma" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Collection intégrée" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Collection intégrée" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Koleksi dalam baris" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Koleksi dalam baris" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Collezione in linea" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Collezione in linea" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "コレクション(インライン)" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "コレクション(インライン)" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Inline collection" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline collection" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Innfelt samling" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Innfelt samling" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Inline collectie" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline collectie" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Inline collection" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline collection" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Kolekcja wbudowana" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kolekcja wbudowana" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Coleção em linha" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Coleção em linha" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Inline collection" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline collection" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Встроенная коллекция" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Встроенная коллекция" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Satır içi koleksiyon" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Satır içi koleksiyon" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Вбудована колекція" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Вбудована колекція" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bộ trong hàng" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bộ trong hàng" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "关联集锦" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "关联集锦" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "內嵌集錦" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "內嵌集錦" } } } }, - "Content.DataView.InlineCollection.Untitled": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "مجموعة بدون عنوان" + "Content.DataView.InlineCollection.Untitled" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "مجموعة بدون عنوان" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Калекцыя без назвы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Калекцыя без назвы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Unbenannte Sammlung" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Unbenannte Sammlung" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Untitled collection" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Untitled collection" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Colección sin título" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Colección sin título" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Untitled collection" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled collection" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Nimetön kokoelma" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Nimetön kokoelma" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Collection sans titre" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Collection sans titre" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Koleksi tidak berjudul" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Koleksi tidak berjudul" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Collezione senza titolo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Collezione senza titolo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "無題のコレクション" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "無題のコレクション" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Untitled collection" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled collection" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Navnløs samling" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Navnløs samling" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Naamloze collectie" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Naamloze collectie" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Untitled collection" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled collection" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Kolekcja bez tytułu" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kolekcja bez tytułu" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Coleção sem título" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Coleção sem título" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Untitled collection" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled collection" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Коллекция без названия" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Коллекция без названия" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Başlıksız koleksiyon" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Başlıksız koleksiyon" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Безіменна колекція" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Безіменна колекція" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bộ không tên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bộ không tên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "无标题集锦" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "无标题集锦" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "未命名集錦" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "未命名集錦" } } } }, - "Content.DataView.InlineSet.NoData": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لا توجد بيانات" + "Content.DataView.InlineSet.NoData" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لا توجد بيانات" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Без даты" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Без даты" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Keine Daten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Keine Daten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No data" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No data" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Sin datos" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Sin datos" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No data" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No data" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Ei dataa" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ei dataa" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Aucune donnée" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Aucune donnée" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak ada data" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak ada data" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nessun dato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nessun dato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "データがありません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "データがありません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "No data" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "No data" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ingen data" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ingen data" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geen gegevens" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geen gegevens" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "No data" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "No data" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Brak danych" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Brak danych" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Sem dados" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Sem dados" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "No data" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "No data" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Нет данных" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Нет данных" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Veri Yok" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Veri Yok" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Немає даних" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Немає даних" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không có dữ liệu" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không có dữ liệu" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "没有数据" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "没有数据" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "無資料" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "無資料" } } } }, - "Content.DataView.InlineSet.NoSource": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لا يوجد مصدر" + "Content.DataView.InlineSet.NoSource" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لا يوجد مصدر" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Няма крыніцы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Няма крыніцы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Keine Quelle" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Keine Quelle" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No source" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No source" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Sin origen" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Sin origen" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No source" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No source" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Ei lähdettä" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ei lähdettä" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Aucune source" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Aucune source" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak ada sumber" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak ada sumber" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nessuna fonte" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nessuna fonte" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ソースがありません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ソースがありません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "No source" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "No source" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ingen kilde" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ingen kilde" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geen bron" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geen bron" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "No source" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "No source" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Brak źródła" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Brak źródła" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Não há fonte" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Não há fonte" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "No source" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "No source" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Нет источника" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Нет источника" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Kaynak yok" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Kaynak yok" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Немає джерела" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Немає джерела" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không có nguồn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không có nguồn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "无信息来源" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "无信息来源" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "沒有來源" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "沒有來源" } } } }, - "Content.DataView.InlineSet.Subtitle": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "استعلام مضمن" + "Content.DataView.InlineSet.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "استعلام مضمن" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Inline query" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline query" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Inline query" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline query" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Inline query" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Inline query" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Consulta insertada" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Consulta insertada" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Inline query" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline query" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Inline query" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline query" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Requête intégrée" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Requête intégrée" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kueri dalam baris" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kueri dalam baris" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Query in linea" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Query in linea" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "クエリ(インライン)" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "クエリ(インライン)" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Inline query" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline query" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Inline query" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline query" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Gealigneerde opdracht" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Gealigneerde opdracht" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Inline query" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline query" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Inline query" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline query" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Consulta em linha" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Consulta em linha" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Inline query" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline query" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Встроенный запрос" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Встроенный запрос" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Satır içi sorgu" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Satır içi sorgu" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Inline query" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline query" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Inline query" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline query" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "内联查询" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "内联查询" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Inline query" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Inline query" } } } }, - "Content.DataView.InlineSet.Toast.Failure": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "Content.DataView.InlineSet.Toast.Failure" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This inline query doesn’t have a source" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This inline query doesn’t have a source" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Este consulta insertada no tiene un origen" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Este consulta insertada no tiene un origen" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kueri dalam baris ini tidak memiliki sumber" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kueri dalam baris ini tidak memiliki sumber" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "クエリ(インライン)にデータソースが指定されていません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "クエリ(インライン)にデータソースが指定されていません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deze inline opdracht heeft geen bron" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deze inline opdracht heeft geen bron" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu satır içi sorgunun bir kaynağı yok" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu satır içi sorgunun bir kaynağı yok" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "该内联查询没有源" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "该内联查询没有源" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "This inline query doesn’t have a source" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "This inline query doesn’t have a source" } } } }, - "Content.DataView.InlineSet.Untitled": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "استعلام بدون عنوان" + "Content.DataView.InlineSet.Untitled" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "استعلام بدون عنوان" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Untitled query" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled query" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Unbenannte Abfrage" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Unbenannte Abfrage" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Untitled query" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Untitled query" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Consulta sin título" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Consulta sin título" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Untitled query" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled query" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Untitled query" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled query" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Requête sans nom" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Requête sans nom" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kueri tak berjudul" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kueri tak berjudul" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Query senza titolo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Query senza titolo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "無題のクエリ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "無題のクエリ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Untitled query" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled query" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Untitled query" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled query" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Naamloze opdracht" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Naamloze opdracht" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Untitled query" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled query" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Untitled query" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled query" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Consulta sem título" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Consulta sem título" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Untitled query" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled query" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Безымянный запрос" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Безымянный запрос" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Başlıksız sorgu" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Başlıksız sorgu" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Untitled query" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled query" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Untitled query" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled query" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "未命名查询" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "未命名查询" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Untitled query" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled query" } } } }, - "Content.File.Upload": { - "comment": "BlockContent", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تحميل ملف" + "Content.File.Upload" : { + "comment" : "BlockContent", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تحميل ملف" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Запампаваць файл" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Запампаваць файл" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Datei hochladen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Datei hochladen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Upload a file" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload a file" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cargar un archivo" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cargar un archivo" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Upload a file" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload a file" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Lähetä tiedosto" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Lähetä tiedosto" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Importer un fichier" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Importer un fichier" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Unggah sebuah berkas" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Unggah sebuah berkas" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Carica un file" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Carica un file" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ファイルをアップロード" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ファイルをアップロード" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Upload a file" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload a file" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Last opp en fil" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Last opp en fil" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Upload een bestand" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload een bestand" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Upload a file" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload a file" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Prześlij plik" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Prześlij plik" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Enviar um arquivo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Enviar um arquivo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Upload a file" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload a file" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Загрузить файл" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Загрузить файл" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Dosya yükle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Dosya yükle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Завантажити файл" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Завантажити файл" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tải lên một tệp" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tải lên một tệp" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "上传文件" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "上传文件" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "上傳檔案" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "上傳檔案" } } } }, - "Content.Picture.Upload": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تحميل صورة" + "Content.Picture.Upload" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تحميل صورة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Запампаваць відарыс" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Запампаваць відарыс" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Bild hochladen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Bild hochladen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Upload a picture" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload a picture" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cargar una imagen" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cargar una imagen" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Upload a picture" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload a picture" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Lähetä kuva" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Lähetä kuva" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Importer une image" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Importer une image" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Unggah sebuah gambar" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Unggah sebuah gambar" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Carica una foto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Carica una foto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "画像をアップロード" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "画像をアップロード" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Upload a picture" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload a picture" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Last opp et bilde" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Last opp et bilde" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Upload een afbeelding" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload een afbeelding" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Upload a picture" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload a picture" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Załaduj obraz" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Załaduj obraz" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Enviar uma imagem" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Enviar uma imagem" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Upload a picture" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload a picture" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Загрузить изображение" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Загрузить изображение" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Resim yükle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Resim yükle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Завантажити зображення" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Завантажити зображення" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tải lên một ảnh" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tải lên một ảnh" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "上传图像" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "上传图像" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "上傳圖片" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "上傳圖片" } } } }, - "Content.Video.Upload": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تحميل فيديو" + "Content.Video.Upload" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تحميل فيديو" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Запампаваць відэа" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Запампаваць відэа" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Video hochladen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Video hochladen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Upload a video" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upload a video" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cargar un vídeo" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cargar un vídeo" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Upload a video" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload a video" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Lähetä video" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Lähetä video" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Importer une vidéo" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Importer une vidéo" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Unggah sebuah video" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Unggah sebuah video" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Carica un video" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Carica un video" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "動画をアップロード" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "動画をアップロード" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Upload a video" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload a video" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Last opp en video" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Last opp en video" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Upload een video" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload een video" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Upload a video" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload a video" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Prześlij wideo" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Prześlij wideo" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Enviar um vídeo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Enviar um vídeo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Upload a video" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Upload a video" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Загрузить видео" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Загрузить видео" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Video yükle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Video yükle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Завантажити відео" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Завантажити відео" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tải lên một video" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tải lên một video" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "上传视频" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "上传视频" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "上傳影片" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "上傳影片" } } } }, - "CreateChat": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Create Chat" + "CreateChat" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create Chat" } } } }, - "Editor.LinkToObject.LinkedTo": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "مرتبط بـ" + "Editor.LinkToObject.LinkedTo" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "مرتبط بـ" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Звязаны з" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Звязаны з" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Verlinkt mit" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Verlinkt mit" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Linked to" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Linked to" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Enlazado a" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Enlazado a" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Linked to" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Linked to" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Yhdistetty" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Yhdistetty" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Lié à" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Lié à" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ditautkan ke" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ditautkan ke" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Collegato a" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Collegato a" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リンク" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リンク" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Linked to" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Linked to" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Koblet til" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Koblet til" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Gekoppeld aan" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Gekoppeld aan" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ସହିତ ଲିଙ୍କ୍ ହୋଇଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ସହିତ ଲିଙ୍କ୍ ହୋଇଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Powiązane z" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Powiązane z" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Vinculado a" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Vinculado a" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Ligado a" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Ligado a" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Привязан к" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Привязан к" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şuraya bağlı:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Şuraya bağlı:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Пов'язаний з" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Пов'язаний з" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Liên kết đến" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Liên kết đến" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "链接到" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "链接到" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "連結至" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "連結至" } } } }, - "Editor.LinkToObject.PasteFromClipboard": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لصق من الحافظة" + "Editor.LinkToObject.PasteFromClipboard" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لصق من الحافظة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Уставіць з буфера абмену" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Уставіць з буфера абмену" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Aus Zwischenspeicher einfügen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Aus Zwischenspeicher einfügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Paste from clipboard" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paste from clipboard" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Pegar desde el portapapeles" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Pegar desde el portapapeles" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Paste from clipboard" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Paste from clipboard" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Sijoita leikepöydältä" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Sijoita leikepöydältä" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Coller depuis le presse-papiers" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Coller depuis le presse-papiers" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tempel dari papan kerani" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tempel dari papan kerani" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Incolla dagli appunti" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Incolla dagli appunti" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "クリップボードから貼り付け" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "クリップボードから貼り付け" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Paste from clipboard" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Paste from clipboard" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Lim inn fra utklippstavle" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Lim inn fra utklippstavle" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Plak vanaf klembord" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Plak vanaf klembord" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "କ୍ଲିପବୋର୍ଡରୁ ଲେପନ କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "କ୍ଲିପବୋର୍ଡରୁ ଲେପନ କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wklej ze schowka" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wklej ze schowka" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Colar da área de transferência" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Colar da área de transferência" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Colar da área de transferência" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Colar da área de transferência" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вставить из буфера обмена" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вставить из буфера обмена" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Panodan yapıştır" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Panodan yapıştır" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Вставити з буфера обміну" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Вставити з буфера обміну" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Dán từ bộ nhớ tạm" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Dán từ bộ nhớ tạm" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "从剪贴板粘贴" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "从剪贴板粘贴" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "從剪貼簿貼上" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "從剪貼簿貼上" } } } }, - "Editor.LinkToObject.RemoveLink": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إزالة الرابط" + "Editor.LinkToObject.RemoveLink" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إزالة الرابط" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выдаліць спасылку" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выдаліць спасылку" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Link entfernen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Link entfernen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Remove link" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove link" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Quitar enlace" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Quitar enlace" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Remove link" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove link" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Poista linkki" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Poista linkki" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Supprimer le lien" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Supprimer le lien" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hapus tautan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hapus tautan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Rimuovi collegamento" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Rimuovi collegamento" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リンクを削除" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リンクを削除" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Remove link" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove link" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Fjern lenke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Fjern lenke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verwijder link" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwijder link" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଲିଙ୍କ୍ ଅପସାରଣ କରନ୍ତୁ " + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଲିଙ୍କ୍ ଅପସାରଣ କରନ୍ତୁ " } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Usuń link" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Usuń link" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Remover link" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Remover link" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Remover link" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Remover link" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удалить ссылку" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удалить ссылку" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bağlantıyı kaldır" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bağlantıyı kaldır" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Вилучити посилання" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Вилучити посилання" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Gỡ link" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Gỡ link" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "移除链接" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "移除链接" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "移除連結" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "移除連結" } } } }, - "Editor.LinkToObject.SearchPlaceholder": { - "comment": "MARK: - Link to search", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لصق الرابط أو البحث عن كائنات" + "Editor.LinkToObject.SearchPlaceholder" : { + "comment" : "MARK: - Link to search", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لصق الرابط أو البحث عن كائنات" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Уставіць спасылку або шукайце аб'екты" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Уставіць спасылку або шукайце аб'екты" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Link einfügen oder Objekte suchen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Link einfügen oder Objekte suchen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Paste link or search objects" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paste link or search objects" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Pegar enlace o buscar objetos" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Pegar enlace o buscar objetos" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Paste link or search objects" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Paste link or search objects" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Sijoita linkki tai etsi objekteista" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Sijoita linkki tai etsi objekteista" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Coller le lien ou rechercher des objets" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Coller le lien ou rechercher des objets" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tempelkan tautan atau telusuri objek" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tempelkan tautan atau telusuri objek" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Incolla collegamento o cerca oggetti" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Incolla collegamento o cerca oggetti" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リンクを貼り付け、または検索" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リンクを貼り付け、または検索" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Paste link or search objects" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Paste link or search objects" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Lim inn kobling eller søk i objekter" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Lim inn kobling eller søk i objekter" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Plak link of zoek objecten" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Plak link of zoek objecten" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଲିଙ୍କ୍ କିମ୍ବା ସନ୍ଧାନ ବସ୍ତୁଗୁଡିକ ଲେପନ କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଲିଙ୍କ୍ କିମ୍ବା ସନ୍ଧାନ ବସ୍ତୁଗୁଡିକ ଲେପନ କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wklej link lub wyszukaj obiekty" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wklej link lub wyszukaj obiekty" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Colar link ou pesquisar Objetos" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Colar link ou pesquisar Objetos" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Colar link ou objetos de pesquisa" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Colar link ou objetos de pesquisa" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вставить ссылку или найти объекты" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вставить ссылку или найти объекты" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bağlantıyı yapıştır veya nesneleri ara" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bağlantıyı yapıştır veya nesneleri ara" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Вставте посилання або знайдіть об'єкти" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Вставте посилання або знайдіть об'єкти" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Paste link or search objects" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Paste link or search objects" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "粘贴链接或搜索对象" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "粘贴链接或搜索对象" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "貼上連結或搜尋物件" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "貼上連結或搜尋物件" } } } }, - "Editor.MovingState.ScrollToSelectedPlace": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Scroll to select a place" + "Editor.MovingState.ScrollToSelectedPlace" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll to select a place" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пракруціце, каб выбраць месца" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пракруціце, каб выбраць месца" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Scrollen, um einen Ort auszuwählen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Scrollen, um einen Ort auszuwählen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Scroll to select a place" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scroll to select a place" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Desplaza para elegir un lugar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Desplaza para elegir un lugar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Scroll to select a place" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll to select a place" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Scroll to select a place" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll to select a place" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Faites défiler pour sélectionner un endroit" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Faites défiler pour sélectionner un endroit" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Gulir untuk memilih tempat" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Gulir untuk memilih tempat" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Scorri per selezionare un luogo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Scorri per selezionare un luogo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "選択箇所までスクロール" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "選択箇所までスクロール" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Scroll to select a place" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll to select a place" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Scroll for å velge et sted" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll for å velge et sted" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Scroll om een plaats te selecteren" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll om een plaats te selecteren" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଏକ ସ୍ଥାନ ବାଛିବା ପାଇଁ ସ୍କ୍ରୋଲ୍ କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଏକ ସ୍ଥାନ ବାଛିବା ପାଇଁ ସ୍କ୍ରୋଲ୍ କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przewiń, aby wybrać miejsce" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Przewiń, aby wybrać miejsce" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Role para selecionar um local" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Role para selecionar um local" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Scroll to select a place" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll to select a place" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Прокрутите для выбора места" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Прокрутите для выбора места" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yer seçmek için kaydır" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yer seçmek için kaydır" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Прокрутіть, щоб вибрати місце" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Прокрутіть, щоб вибрати місце" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Scroll to select a place" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll to select a place" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "滚动以选择位置" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "滚动以选择位置" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "滾動以選取位置" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "滾動以選取位置" } } } }, - "Editor.Toast.LinkedTo": { - "comment": "MARK: - Toast", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "مرتبط بـ" + "Editor.Toast.LinkedTo" : { + "comment" : "MARK: - Toast", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "مرتبط بـ" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "звязаны з" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "звязаны з" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "verlinkt mit" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "verlinkt mit" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "linked to" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "linked to" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "enlazado a" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "enlazado a" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "linked to" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "linked to" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "linkitetty" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "linkitetty" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "lié à" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "lié à" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "ditautkan pada" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "ditautkan pada" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "collegato a" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "collegato a" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "をリンクしました リンク先:" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "をリンクしました リンク先:" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "linked to" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "linked to" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "koblet til" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "koblet til" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "gelinkt naar" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "gelinkt naar" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "linked to" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "linked to" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "w związku z" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "w związku z" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "vinculado a" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "vinculado a" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "linked to" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "linked to" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "связано с" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "связано с" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "şuraya bağlı:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "şuraya bağlı:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "пов'язаний з" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "пов'язаний з" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "linked to" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "linked to" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "链接到" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "链接到" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "連結至" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "連結至" } } } }, - "Editor.Toast.MovedTo": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Block moved to" + "Editor.Toast.MovedTo" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Block moved to" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Блок перамешчаны ў" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Блок перамешчаны ў" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Block verschoben nach" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Block verschoben nach" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Block moved to" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Block moved to" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Bloque movido a" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Bloque movido a" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Block moved to" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Block moved to" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Pala siirretty" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Pala siirretty" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Bloc déplacé vers" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bloc déplacé vers" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Diblok berpindah ke" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Diblok berpindah ke" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Blocco spostato in" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Blocco spostato in" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ブロックを移動" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ブロックを移動" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Block moved to" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Block moved to" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Blokk flyttet til" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Blokk flyttet til" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Blok verplaatst naar" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Blok verplaatst naar" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Block moved to" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Block moved to" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Blok przeniesiony do" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Blok przeniesiony do" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Bloco movido para" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Bloco movido para" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Block moved to" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Block moved to" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Блок перемещен в" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Блок перемещен в" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Blok şuraya taşındı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Blok şuraya taşındı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Блок переміщено до" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Блок переміщено до" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Block moved to" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Block moved to" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "区块移至" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "区块移至" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "區塊移動至" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "區塊移動至" } } } }, - "EditorSet.View.Not.Supported.Title": { - "comment": "MARK: Select view", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "غير مدعوم" + "EditorSet.View.Not.Supported.Title" : { + "comment" : "MARK: Select view", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "غير مدعوم" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Не падтрымліваецца" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Не падтрымліваецца" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nicht unterstützt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nicht unterstützt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Unsupported" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unsupported" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No compatible" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No compatible" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Unsupported" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Unsupported" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Ei tuettu" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ei tuettu" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Non pris en charge" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Non pris en charge" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak didukung" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak didukung" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non supportato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non supportato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "未対応" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "未対応" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Unsupported" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Unsupported" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ikke støttet" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ikke støttet" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Niet ondersteund" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Niet ondersteund" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Unsupported" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Unsupported" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nieobsługiwane" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nieobsługiwane" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Incompatível" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Incompatível" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Unsupported" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Unsupported" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Не поддерживается" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Не поддерживается" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Desteklenmiyor" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Desteklenmiyor" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Unsupported" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Unsupported" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không được hỗ trợ" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không được hỗ trợ" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "暂不支持" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "暂不支持" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "不支援" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "不支援" } } } }, - "EditSet.Popup.Filter.Condition.Checkbox.Equal": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "هو" + "EditSet.Popup.Filter.Condition.Checkbox.Equal" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "هو" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "З'яўляецца" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "З'яўляецца" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Es" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Es" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Adalah" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Adalah" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "一致" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "一致" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ହେଉଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ହେଉଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jest" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jest" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "É" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "É" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Является" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Является" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "eşit" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "eşit" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Є" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Є" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Là" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Là" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "是" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "是" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "是" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "是" } } } }, - "EditSet.Popup.Filter.Condition.Checkbox.NotEqual": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is not" + "EditSet.Popup.Filter.Condition.Checkbox.NotEqual" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Не з'яўляецца" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Не з'яўляецца" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist nicht" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist nicht" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is not" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is not" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No es" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No es" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is not" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is not" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "N'est pas" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "N'est pas" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Adalah bukan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Adalah bukan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non è" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non è" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "一致しない" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "一致しない" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is not" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er ikke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er ikke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is niet" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is niet" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ନୁହେଁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ନୁହେଁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie jest" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie jest" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Não é" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Não é" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is not" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Не является" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Не является" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "değil" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "değil" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Не є" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Не є" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không phải" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không phải" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "不是" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "不是" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "不是" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "不是" } } } }, - "EditSet.Popup.Filter.Condition.Date.After": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is after" + "EditSet.Popup.Filter.Condition.Date.After" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is after" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пасля" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пасля" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Liegt nach dem" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Liegt nach dem" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is after" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is after" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Es después de" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Es después de" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is after" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is after" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is after" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is after" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est après" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est après" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Setelah" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Setelah" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È dopo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È dopo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "より後" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "より後" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is after" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is after" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er etter" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er etter" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Na" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Na" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ପରେ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ପରେ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Występuje po" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Występuje po" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É depois de" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É depois de" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is after" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is after" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "После" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "После" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "sonrasında" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "sonrasında" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Після" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Після" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Is after" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is after" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "在之后" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "在之后" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "在之後" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "在之後" } } } }, - "EditSet.Popup.Filter.Condition.Date.Before": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is before" + "EditSet.Popup.Filter.Condition.Date.Before" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is before" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Да" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Да" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Liegt vor dem" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Liegt vor dem" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is before" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is before" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Es antes de" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Es antes de" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is before" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is before" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is before" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is before" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est avant" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est avant" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sebelum" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sebelum" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È prima" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È prima" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "より前" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "より前" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is before" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is before" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er før" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er før" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voor" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voor" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ପୂର୍ବରୁ ଅଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ପୂର୍ବରୁ ଅଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Występuje przed" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Występuje przed" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É antes de" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É antes de" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is before" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is before" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "До" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "До" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "öncesinde" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "öncesinde" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "До" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "До" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Is before" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is before" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "在之前" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "在之前" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "在之前" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "在之前" } } } }, - "EditSet.Popup.Filter.Condition.Date.Equal": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "هو" + "EditSet.Popup.Filter.Condition.Date.Equal" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "هو" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "З'яўляецца" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "З'яўляецца" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Es" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Es" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Adalah" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Adalah" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "一致" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "一致" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ହେଉଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ହେଉଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jest" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jest" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "É" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "É" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Является" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Является" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "eşit" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "eşit" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Є" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Є" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Là" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Là" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "是" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "是" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "是" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "是" } } } }, - "EditSet.Popup.Filter.Condition.Date.In": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is within" + "EditSet.Popup.Filter.Condition.Date.In" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is within" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Знаходзіцца ў межах" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Знаходзіцца ў межах" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist innerhalb" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist innerhalb" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is within" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is within" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Está entre" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Está entre" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is within" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is within" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is within" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is within" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est dans" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est dans" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Antara" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Antara" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È entro" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È entro" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "期間内" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "期間内" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is within" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is within" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er innenfor" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er innenfor" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is binnen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is binnen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଭିତରେ ଅଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଭିତରେ ଅଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jest wewnątrz" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jest wewnątrz" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É entre" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É entre" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is within" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is within" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Находится в пределах" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Находится в пределах" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "içinde" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "içinde" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Знаходиться в межах" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Знаходиться в межах" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Is within" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is within" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "在之内" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "在之内" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "在內" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "在內" } } } }, - "EditSet.Popup.Filter.Condition.Date.OnOrAfter": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is on or after" + "EditSet.Popup.Filter.Condition.Date.OnOrAfter" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is on or after" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "У гэты дзень або пазней" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "У гэты дзень або пазней" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Liegt am oder nach dem" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Liegt am oder nach dem" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is on or after" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is on or after" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Es en o después de" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Es en o después de" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is on or after" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is on or after" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is on or after" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is on or after" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est le ou après" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est le ou après" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pada atau setelah" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pada atau setelah" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È nella data o dopo " + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È nella data o dopo " } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "以後" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "以後" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is on or after" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is on or after" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er på eller etter" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er på eller etter" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is op of na" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is op of na" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ପୂର୍ବରୁ କିମ୍ବା ପରେ ଅଛି |" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ପୂର୍ବରୁ କିମ୍ବା ପରେ ଅଛି |" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jest w trakcie lub po" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jest w trakcie lub po" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É em ou depois de" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É em ou depois de" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is on or after" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is on or after" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Совпадает или после" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Совпадает или после" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "tarihinde veya sonrasında" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "tarihinde veya sonrasında" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Цей день або після" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Цей день або після" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Is on or after" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is on or after" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "在之前(包含当前)" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "在之前(包含当前)" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "在之前(包含當前)" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "在之前(包含當前)" } } } }, - "EditSet.Popup.Filter.Condition.Date.OnOrBefore": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is on or before" + "EditSet.Popup.Filter.Condition.Date.OnOrBefore" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is on or before" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Супадае ці да" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Супадае ці да" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist am oder vor dem" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist am oder vor dem" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is on or before" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is on or before" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Es en o antes de" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Es en o antes de" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is on or before" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is on or before" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is on or before" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is on or before" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est le ou avant" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est le ou avant" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pada atau sebelum" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pada atau sebelum" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È nella data o prima" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È nella data o prima" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "以前" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "以前" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is on or before" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is on or before" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er på eller før" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er på eller før" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is op of voor" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is op of voor" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ପରେ କିମ୍ବା ପୂର୍ବରୁ ଅଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ପରେ କିମ୍ବା ପୂର୍ବରୁ ଅଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jest w trakcie lub przed" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jest w trakcie lub przed" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É em ou antes de" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É em ou antes de" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is on or before" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is on or before" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Совпадает или до" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Совпадает или до" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "tarihinde veya öncesinde" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "tarihinde veya öncesinde" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Цей день або до" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Цей день або до" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Is on or before" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is on or before" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "在之后(包含当前)" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "在之后(包含当前)" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "在之後(包含當前)" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "在之後(包含當前)" } } } }, - "EditSet.Popup.Filter.Condition.General.Empty": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is empty" + "EditSet.Popup.Filter.Condition.General.Empty" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is empty" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пусты" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пусты" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist leer" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist leer" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is empty" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is empty" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Está vacío" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Está vacío" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is empty" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is empty" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is empty" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is empty" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est vide" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est vide" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Adalah kosong" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Adalah kosong" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È vuoto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È vuoto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "未入力" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "未入力" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is empty" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is empty" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er tom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er tom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is leeg" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is leeg" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଖାଲି ଅଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଖାଲି ଅଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jest puste" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jest puste" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Está vazio" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Está vazio" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is empty" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is empty" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Пустое" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Пустое" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "boş" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "boş" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Є порожнім" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Є порожнім" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Is empty" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is empty" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "是空的" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "是空的" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "是空的" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "是空的" } } } }, - "EditSet.Popup.Filter.Condition.General.None": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الكل" + "EditSet.Popup.Filter.Condition.General.None" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الكل" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Усе" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Усе" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Alle" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Alle" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "All" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "All" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Todo" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Todo" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "All" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "All" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "All" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "All" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Tout" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tout" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Semua" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Semua" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Tutto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Tutto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "すべて" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "すべて" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "All" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "All" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Alle" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Alle" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Alles" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Alles" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ସମସ୍ତ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ସମସ୍ତ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wszystkie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wszystkie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Todos" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Todos" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "All" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "All" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Все" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Все" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Hepsi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Hepsi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Все" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Все" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tất cả" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tất cả" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "所有" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "所有" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "全部" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "全部" } } } }, - "EditSet.Popup.Filter.Condition.General.NotEmpty": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is not empty" + "EditSet.Popup.Filter.Condition.General.NotEmpty" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not empty" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Не пусты" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Не пусты" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist nicht leer" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist nicht leer" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is not empty" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is not empty" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No está vacío" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No está vacío" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is not empty" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not empty" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is not empty" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not empty" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "N'est pas vide" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "N'est pas vide" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Adalah tidak kosong" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Adalah tidak kosong" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non è vuoto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non è vuoto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "未入力ではない" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "未入力ではない" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is not empty" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not empty" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er ikke tom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er ikke tom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is niet leeg" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is niet leeg" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଖାଲି ନୁହେଁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଖାଲି ନୁହେଁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie jest puste" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie jest puste" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Não está vazio" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Não está vazio" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is not empty" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not empty" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Не пустое" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Не пустое" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "boş değil" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "boş değil" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Не є порожнім" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Не є порожнім" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không trống" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không trống" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "不是空的" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "不是空的" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "不是空的" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "不是空的" } } } }, - "EditSet.Popup.Filter.Condition.Number.Equal": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is equal to" + "EditSet.Popup.Filter.Condition.Number.Equal" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is equal to" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Роўна" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Роўна" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist gleich wie" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist gleich wie" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is equal to" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is equal to" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Es igual que" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Es igual que" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is equal to" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is equal to" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is equal to" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is equal to" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est égal à" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est égal à" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sama dengan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sama dengan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È uguale a" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È uguale a" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "一致" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "一致" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is equal to" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is equal to" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er lik" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er lik" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is gelijk aan" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is gelijk aan" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ସହିତ ସମାନ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ସହିତ ସମାନ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie równa się" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie równa się" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É igual a" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É igual a" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is equal to" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is equal to" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Равно" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Равно" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Eşittir" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Eşittir" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Дорівнює" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Дорівнює" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bằng" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bằng" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "等于" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "等于" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "等於" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "等於" } } } }, - "EditSet.Popup.Filter.Condition.Number.Greater": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is greater than" + "EditSet.Popup.Filter.Condition.Number.Greater" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is greater than" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Большы чым" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Большы чым" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist größer als" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist größer als" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is greater than" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is greater than" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Es mayor que" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Es mayor que" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is greater than" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is greater than" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is greater than" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is greater than" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est supérieur à" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est supérieur à" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Lebih dari" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Lebih dari" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È maggiore di" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È maggiore di" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "より大きい" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "より大きい" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is greater than" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is greater than" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er større enn" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er større enn" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is groter dan" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is groter dan" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଏହାଠାରୁ ବଡ ଅଟେ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଏହାଠାରୁ ବଡ ଅଟେ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jest większe niż" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jest większe niż" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É maior que" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É maior que" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is greater than" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is greater than" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Больше чем" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Больше чем" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şundan daha fazla:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Şundan daha fazla:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Більше ніж" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Більше ніж" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Lớn hơn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Lớn hơn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "大于" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "大于" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "大於" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "大於" } } } }, - "EditSet.Popup.Filter.Condition.Number.GreaterOrEqual": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is greater than or equal to" + "EditSet.Popup.Filter.Condition.Number.GreaterOrEqual" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is greater than or equal to" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Большы чым або роўны" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Большы чым або роўны" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist größer oder gleich wie" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist größer oder gleich wie" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is greater than or equal to" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is greater than or equal to" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Es mayor o igual que" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Es mayor o igual que" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is greater than or equal to" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is greater than or equal to" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is greater than or equal to" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is greater than or equal to" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est supérieur ou égal à" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est supérieur ou égal à" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Lebih dari sama dengan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Lebih dari sama dengan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È maggiore o uguale a" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È maggiore o uguale a" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "以上" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "以上" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is greater than or equal to" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is greater than or equal to" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er større enn eller lik" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er større enn eller lik" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is groter dan of gelijk aan" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is groter dan of gelijk aan" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଏହାଠାରୁ ବଡ କିମ୍ବା ସମାନ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଏହାଠାରୁ ବଡ କିମ୍ବା ସମାନ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jest większe lub równe" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jest większe lub równe" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É maior que ou igual a" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É maior que ou igual a" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is greater than or equal to" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is greater than or equal to" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Больше или равно" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Больше или равно" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Daha büyük veya eşit" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Daha büyük veya eşit" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Більше або дорівнює" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Більше або дорівнює" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Lớn hơn hoặc bằng" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Lớn hơn hoặc bằng" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "大于或等于" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "大于或等于" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "大於或等於" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "大於或等於" } } } }, - "EditSet.Popup.Filter.Condition.Number.Less": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is less than" + "EditSet.Popup.Filter.Condition.Number.Less" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is less than" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Меншы чым" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Меншы чым" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist kleiner als" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist kleiner als" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is less than" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is less than" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Es menor que" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Es menor que" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is less than" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is less than" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is less than" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is less than" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est inférieur à" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est inférieur à" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kurang dari" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kurang dari" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È minore di" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È minore di" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "より小さい" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "より小さい" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is less than" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is less than" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er mindre enn" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er mindre enn" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is kleiner dan" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is kleiner dan" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଏହାଠାରୁ କମ୍ ଅଟେ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଏହାଠାରୁ କମ୍ ଅଟେ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jest mniejsze niż" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jest mniejsze niż" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É menor que" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É menor que" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is less than" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is less than" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Меньше чем" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Меньше чем" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şundan daha az:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Şundan daha az:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Менше ніж" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Менше ніж" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bé hơn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bé hơn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "小于" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "小于" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "小於" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "小於" } } } }, - "EditSet.Popup.Filter.Condition.Number.LessOrEqual": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is less than or equal to" + "EditSet.Popup.Filter.Condition.Number.LessOrEqual" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is less than or equal to" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Меншы чым або роўны" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Меншы чым або роўны" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist kleiner oder gleich wie" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist kleiner oder gleich wie" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is less than or equal to" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is less than or equal to" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Es menor o igual que" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Es menor o igual que" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is less than or equal to" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is less than or equal to" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is less than or equal to" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is less than or equal to" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est inférieur ou égal à" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est inférieur ou égal à" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kurang dari sama dengan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kurang dari sama dengan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È minore o uguale a" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È minore o uguale a" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "以下" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "以下" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is less than or equal to" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is less than or equal to" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er mindre enn eller lik" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er mindre enn eller lik" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is kleiner dan of gelijk aan" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is kleiner dan of gelijk aan" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଏହାଠାରୁ କମ୍ କିମ୍ବା ସମାନ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଏହାଠାରୁ କମ୍ କିମ୍ବା ସମାନ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jest mniejsze lub równe" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jest mniejsze lub równe" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É menor ou igual a" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É menor ou igual a" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is less than or equal to" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is less than or equal to" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Меньше или равно" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Меньше или равно" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Daha az veya eşit" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Daha az veya eşit" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Менше або дорівнює" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Менше або дорівнює" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bé hơn hoặc bằng" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bé hơn hoặc bằng" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "小于或等于" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "小于或等于" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "小於或等於" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "小於或等於" } } } }, - "EditSet.Popup.Filter.Condition.Number.NotEqual": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is not equal to" + "EditSet.Popup.Filter.Condition.Number.NotEqual" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not equal to" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Не роўны" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Не роўны" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist nicht gleich wie" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist nicht gleich wie" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is not equal to" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is not equal to" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No es igual que" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No es igual que" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is not equal to" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not equal to" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is not equal to" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not equal to" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "N’est pas égal à" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "N’est pas égal à" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak sama dengan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak sama dengan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non è uguale a" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non è uguale a" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "一致しない" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "一致しない" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is not equal to" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not equal to" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er ikke lik" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er ikke lik" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is niet gelijk aan" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is niet gelijk aan" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ସହିତ ସମାନ ନୁହେଁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ସହିତ ସମାନ ନୁହେଁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie równa się" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie równa się" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Não é igual a" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Não é igual a" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is not equal to" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not equal to" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Не равно" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Не равно" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Eşit değildir" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Eşit değildir" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Не дорівнює" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Не дорівнює" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Khác" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Khác" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "不等于" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "不等于" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "不等於" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "不等於" } } } }, - "EditSet.Popup.Filter.Condition.Selected.AllIn": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Has all of" + "EditSet.Popup.Filter.Condition.Selected.AllIn" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Has all of" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Мае ўсё з" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Мае ўсё з" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Hat alle von" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Hat alle von" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Has all of" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Has all of" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tiene todos de" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tiene todos de" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Has all of" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Has all of" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Has all of" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Has all of" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Contient tous les" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Contient tous les" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Memiliki semua " + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Memiliki semua " } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ha tutto tra" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ha tutto tra" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "いずれも持つ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "いずれも持つ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Has all of" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Has all of" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Har alle av" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Har alle av" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bevat alle van" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bevat alle van" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ସମସ୍ତ ଅଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ସମସ୍ତ ଅଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ma wszystkie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ma wszystkie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tem tudo de" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tem tudo de" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Has all of" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Has all of" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Имеет все из" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Имеет все из" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Tümü:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tümü:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Має все" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Має все" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Has all of" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Has all of" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "具有所有" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "具有所有" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "滿足全部" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "滿足全部" } } } }, - "EditSet.Popup.Filter.Condition.Selected.In": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Has any of" + "EditSet.Popup.Filter.Condition.Selected.In" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Has any of" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Мае любы з" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Мае любы з" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Hat irgendeines von" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Hat irgendeines von" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Has any of" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Has any of" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tiene alguno de" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tiene alguno de" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Has any of" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Has any of" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Has any of" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Has any of" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Contient" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Contient" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Memiliki salah satu" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Memiliki salah satu" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ha uno qualsiasi di" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ha uno qualsiasi di" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "いずれかを持つ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "いずれかを持つ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Has any of" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Has any of" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Har noen av" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Har noen av" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bevat ieder van" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bevat ieder van" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "କୌଣସିଟି ଅଛି |" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "କୌଣସିଟି ଅଛି |" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ma którykolwiek z" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ma którykolwiek z" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tem qualquer um de" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tem qualquer um de" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Has any of" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Has any of" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Имеет любой из" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Имеет любой из" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Herhangi:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Herhangi:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Має будь-яке з" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Має будь-яке з" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Has any of" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Has any of" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "具有任何" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "具有任何" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "滿足任一" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "滿足任一" } } } }, - "EditSet.Popup.Filter.Condition.Selected.NotIn": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Has none of" + "EditSet.Popup.Filter.Condition.Selected.NotIn" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Has none of" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Няма ніводнага з" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Няма ніводнага з" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Hat keine von" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Hat keine von" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Has none of" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Has none of" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No tiene ninguno de" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No tiene ninguno de" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Has none of" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Has none of" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Has none of" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Has none of" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "N'a aucun des" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "N'a aucun des" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak memiliki satupun" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak memiliki satupun" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non ha nessuno di" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non ha nessuno di" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "いずれも持たない" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "いずれも持たない" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Has none of" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Has none of" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Har ingen av" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Har ingen av" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bevat geen van" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bevat geen van" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "କୌଣସିଟି ନାହିଁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "କୌଣସିଟି ନାହିଁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie ma nic z" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie ma nic z" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Não tem nenhum de" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Não tem nenhum de" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Has none of" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Has none of" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Нет ни одного из" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Нет ни одного из" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Hiçbiri:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Hiçbiri:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Не має жодного з" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Не має жодного з" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Has none of" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Has none of" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "不具有" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "不具有" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "不滿足任何" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "不滿足任何" } } } }, - "EditSet.Popup.Filter.Condition.Text.Equal": { - "comment": "MARK: - Sets: Filters.Conditions", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "هو" + "EditSet.Popup.Filter.Condition.Text.Equal" : { + "comment" : "MARK: - Sets: Filters.Conditions", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "هو" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "З'яўляецца" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "З'яўляецца" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Es" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Es" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Est" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Est" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Adalah" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Adalah" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "一致" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "一致" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ହେଉଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ହେଉଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jest" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jest" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "É" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "É" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "É" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "É" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Является" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Является" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "eşit" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "eşit" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Є" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Є" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Là" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Là" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "是" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "是" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "是" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "是" } } } }, - "EditSet.Popup.Filter.Condition.Text.Like": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Contains" + "EditSet.Popup.Filter.Condition.Text.Like" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Contains" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Змяшчае" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Змяшчае" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Enthält" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Enthält" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Contains" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contains" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Contiene" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Contiene" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Contains" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Contains" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Contains" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Contains" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Contient" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Contient" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Mengandung" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Mengandung" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Contiene" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Contiene" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "含む" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "含む" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Contains" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Contains" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Inneholder" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Inneholder" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bevat" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bevat" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଧାରଣ କରେ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଧାରଣ କରେ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zawiera" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zawiera" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Contém" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Contém" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Contains" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Contains" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Содержит" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Содержит" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İçerir" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İçerir" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Містить" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Містить" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chứa" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chứa" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "包含" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "包含" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "包含" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "包含" } } } }, - "EditSet.Popup.Filter.Condition.Text.NotEqual": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Is not" + "EditSet.Popup.Filter.Condition.Text.NotEqual" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Не з'яўляецца" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Не з'яўляецца" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ist nicht" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ist nicht" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Is not" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Is not" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No es" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No es" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Is not" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Is not" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "N'est pas" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "N'est pas" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Adalah bukan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Adalah bukan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non è" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non è" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "一致しない" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "一致しない" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Is not" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er ikke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er ikke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Is niet" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Is niet" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ନୁହେଁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ନୁହେଁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie jest" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie jest" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Não é" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Não é" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Is not" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Is not" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Не является" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Не является" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "değil" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "değil" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Не є" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Не є" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không phải" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không phải" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "不是" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "不是" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "不是" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "不是" } } } }, - "EditSet.Popup.Filter.Condition.Text.NotLike": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Doesn't contain" + "EditSet.Popup.Filter.Condition.Text.NotLike" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Doesn't contain" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Не змяшчае" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Не змяшчае" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Enthält nicht" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Enthält nicht" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Doesn't contain" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Doesn't contain" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No contiene" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No contiene" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Doesn't contain" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Doesn't contain" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Doesn't contain" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Doesn't contain" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ne contient pas" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ne contient pas" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak mengandung" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak mengandung" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non contiene" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non contiene" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "含まない" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "含まない" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Doesn't contain" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Doesn't contain" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Inneholder ikke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Inneholder ikke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bevat niet" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bevat niet" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଧାରଣ କରେ ନାହିଁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଧାରଣ କରେ ନାହିଁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie zawiera" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie zawiera" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Não contém" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Não contém" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Doesn't contain" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Doesn't contain" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Не содержит" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Не содержит" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İçermez" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İçermez" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Не містить" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Не містить" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không chứa" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không chứa" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "不包含" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "不包含" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "不包含" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "不包含" } } } }, - "EditSet.Popup.Filter.Date.Option.CurrentMonth": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Current month" + "EditSet.Popup.Filter.Date.Option.CurrentMonth" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Current month" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Гэты месяц" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Гэты месяц" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Dieser Monat" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Dieser Monat" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Current month" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Current month" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Mes actual" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Mes actual" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Current month" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Current month" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Current month" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Current month" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Mois en cours" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Mois en cours" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bulan ini" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bulan ini" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Mese corrente" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Mese corrente" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "今月" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "今月" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "현재 달" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "현재 달" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Denne måneden" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Denne måneden" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deze maand" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deze maand" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଚଳିତ ମାସ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଚଳିତ ମାସ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Aktualny miesiąc" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Aktualny miesiąc" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Mês atual" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Mês atual" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Current month" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Current month" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Текущий месяц" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Текущий месяц" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu ay" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu ay" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Поточного місяця" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Поточного місяця" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tháng này" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tháng này" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "本月" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "本月" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "本月" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "本月" } } } }, - "EditSet.Popup.Filter.Date.Option.CurrentWeek": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Current week" + "EditSet.Popup.Filter.Date.Option.CurrentWeek" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Current week" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Бягучы тыдзень" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Бягучы тыдзень" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Diese Woche" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Diese Woche" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Current week" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Current week" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Semana actual" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Semana actual" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Current week" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Current week" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Current week" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Current week" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Semaine en cours" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Semaine en cours" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Minggu ini" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Minggu ini" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Settimana corrente" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Settimana corrente" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "今週" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "今週" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "이번 주" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "이번 주" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Denne uken" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Denne uken" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deze week" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deze week" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଚଳିତ ସପ୍ତାହ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଚଳିତ ସପ୍ତାହ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Bieżący tydzień" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bieżący tydzień" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Semana atual" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Semana atual" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Current week" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Current week" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Текущая неделя" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Текущая неделя" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu hafta" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu hafta" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Поточного тижня" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Поточного тижня" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tuần này" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tuần này" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "本周" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "本周" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "本週" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "本週" } } } }, - "EditSet.Popup.Filter.Date.Option.CurrentYear": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Current year" + "EditSet.Popup.Filter.Date.Option.CurrentYear" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Current year" } } } }, - "EditSet.Popup.Filter.Date.Option.ExactDate": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Exact date" + "EditSet.Popup.Filter.Date.Option.ExactDate" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Exact date" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Дакладная дата" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Дакладная дата" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Genaues Datum" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Genaues Datum" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Exact date" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Exact date" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Fecha exacta" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Fecha exacta" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Exact date" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Exact date" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Exact date" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Exact date" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Date exacte" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Date exacte" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tanggal yang pasti" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tanggal yang pasti" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Data esatta" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Data esatta" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "特定の日付" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "特定の日付" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Exact date" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Exact date" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Eksakt dato" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Eksakt dato" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Exacte datum" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Exacte datum" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ସଠିକ ତାରିଖ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ସଠିକ ତାରିଖ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dokładna data" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dokładna data" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Data exata" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Data exata" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Exact date" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Exact date" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Точная дата" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Точная дата" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Tam tarih" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tam tarih" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Точна дата" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Точна дата" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Ngày tháng chính xác" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ngày tháng chính xác" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "确切日期" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "确切日期" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "確切日期" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "確切日期" } } } }, - "EditSet.Popup.Filter.Date.Option.LastMonth": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Last month" + "EditSet.Popup.Filter.Date.Option.LastMonth" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Last month" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "За апошні месяц" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "За апошні месяц" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Letzter Monat" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Letzter Monat" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Last month" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last month" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Mes pasado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Mes pasado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Last month" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Last month" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Last month" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Last month" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Mois dernier" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Mois dernier" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bulan lalu" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bulan lalu" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Mese scorso" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Mese scorso" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "先月" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "先月" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "지난 달" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "지난 달" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Forrige måned" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Forrige måned" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Afgelopen maand" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Afgelopen maand" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଗତ ମାସ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଗତ ମାସ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "W ostatnim miesiącu" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "W ostatnim miesiącu" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Mês passado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Mês passado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Last month" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Last month" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Прошлый месяц" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Прошлый месяц" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Geçen ay" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Geçen ay" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Минулого місяця" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Минулого місяця" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tháng trước" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tháng trước" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "上个月" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "上个月" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "上個月" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "上個月" } } } }, - "EditSet.Popup.Filter.Date.Option.LastWeek": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Last week" + "EditSet.Popup.Filter.Date.Option.LastWeek" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Last week" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Апошні тыдзень" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Апошні тыдзень" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Letzte Woche" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Letzte Woche" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Last week" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last week" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Semana pasada" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Semana pasada" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Last week" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Last week" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Last week" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Last week" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Semaine dernière" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Semaine dernière" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Minggu lalu" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Minggu lalu" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Settimana scorsa" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Settimana scorsa" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "先週" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "先週" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "지난 주" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "지난 주" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Forrige uke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Forrige uke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Afgelopen week" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Afgelopen week" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଶେଷ ସପ୍ତାହ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଶେଷ ସପ୍ତାହ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ostatni tydzień" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ostatni tydzień" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Semana passada" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Semana passada" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Last week" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Last week" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Прошлая неделя" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Прошлая неделя" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Geçen hafta" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Geçen hafta" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Минулого тижня" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Минулого тижня" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tuần trước" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tuần trước" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "上个星期" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "上个星期" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "上週" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "上週" } } } }, - "EditSet.Popup.Filter.Date.Option.LastYear": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Last year" + "EditSet.Popup.Filter.Date.Option.LastYear" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Last year" } } } }, - "EditSet.Popup.Filter.Date.Option.NextMonth": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Next month" + "EditSet.Popup.Filter.Date.Option.NextMonth" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Next month" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Наступны месяц" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Наступны месяц" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nächster Monat" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nächster Monat" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Next month" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Next month" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Mes próximo" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Mes próximo" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Next month" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Next month" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Next month" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Next month" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Mois prochain" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Mois prochain" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bulan depan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bulan depan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Mese successivo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Mese successivo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "来月" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "来月" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "다음 달" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "다음 달" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Neste måned" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Neste måned" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Volgende maand" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Volgende maand" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଆସନ୍ତା ମାସ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଆସନ୍ତା ମାସ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Następny miesiąc" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Następny miesiąc" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Mês seguinte" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Mês seguinte" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Next month" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Next month" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Следующий месяц" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Следующий месяц" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Gelecek ay" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Gelecek ay" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Наступний місяць" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Наступний місяць" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tháng sau" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tháng sau" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "下个月" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "下个月" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "下個月" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "下個月" } } } }, - "EditSet.Popup.Filter.Date.Option.NextWeek": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Next week" + "EditSet.Popup.Filter.Date.Option.NextWeek" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Next week" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Наступны тыдзень" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Наступны тыдзень" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nächste Woche" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nächste Woche" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Next week" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Next week" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Semana próxima" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Semana próxima" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Next week" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Next week" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Next week" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Next week" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Semaine prochaine" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Semaine prochaine" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Minggu depan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Minggu depan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Prossima settimana" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Prossima settimana" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "来週" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "来週" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "다음 주" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "다음 주" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Neste uke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Neste uke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Volgende week" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Volgende week" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ପରବର୍ତ୍ତୀ ସପ୍ତାହ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ପରବର୍ତ୍ତୀ ସପ୍ତାହ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Następny tydzień" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Następny tydzień" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Próxima semana" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Próxima semana" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Next week" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Next week" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Следующая неделя" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Следующая неделя" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Gelecek hafta" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Gelecek hafta" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Наступного тижня" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Наступного тижня" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tuần sau" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tuần sau" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "下星期" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "下星期" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "下週" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "下週" } } } }, - "EditSet.Popup.Filter.Date.Option.NextYear": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Next year" + "EditSet.Popup.Filter.Date.Option.NextYear" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Next year" } } } }, - "EditSet.Popup.Filter.Date.Option.NumberOfDaysAgo": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Number of days ago" + "EditSet.Popup.Filter.Date.Option.NumberOfDaysAgo" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Number of days ago" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Колькасць дзён таму" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Колькасць дзён таму" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Anzahl der Tage zuvor" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Anzahl der Tage zuvor" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Number of days ago" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Number of days ago" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Número de días atrás" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Número de días atrás" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Number of days ago" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Number of days ago" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Number of days ago" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Number of days ago" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Nombre de jours auparavant" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nombre de jours auparavant" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sekian hari yang lalu" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sekian hari yang lalu" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Numero di giorni fa" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Numero di giorni fa" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "今日からの何日前" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "今日からの何日前" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "며칠 전" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "며칠 전" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Antall dager siden" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Antall dager siden" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Aantal dagen geleden" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Aantal dagen geleden" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "କିଛି ଦିନ ପୂର୍ବର" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "କିଛି ଦିନ ପୂର୍ବର" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Liczba dni temu" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Liczba dni temu" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Número de dias atrás" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Número de dias atrás" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Number of days ago" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Number of days ago" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Количество дней назад" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Количество дней назад" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "gün önce" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "gün önce" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Кількість днів тому" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Кількість днів тому" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bao nhiêu ngày trước" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bao nhiêu ngày trước" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "前几天" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "前几天" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "幾天前" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "幾天前" } } } }, - "EditSet.Popup.Filter.Date.Option.NumberOfDaysAgo.Short": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days ago" + "EditSet.Popup.Filter.Date.Option.NumberOfDaysAgo.Short" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days ago" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days ago" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days ago" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days ago" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days ago" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days ago" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days ago" } }, - "two": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days ago" + "two" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days ago" } }, - "zero": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days ago" + "zero" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days ago" } } } } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ дзён таму" + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ дзён таму" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ дзён таму" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ дзён таму" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ дзён таму" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ дзён таму" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ дзён таму" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ дзён таму" } } } } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "vor %@ Tagen" + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "vor %@ Tagen" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "vor %@ Tagen" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "vor %@ Tagen" } } } } }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "%d day ago" + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d day ago" } }, - "other": { - "stringUnit": { - "state": "translated", - "value": "%d days ago" + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d days ago" } } } } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Hace %@ días" + "es" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Hace %@ días" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Hace %@ días" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Hace %@ días" } } } } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days ago" + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days ago" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days ago" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days ago" } } } } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days ago" + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days ago" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days ago" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days ago" } } } } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Il y a %@ jours" + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Il y a %@ jours" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Il y a %@ jours" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Il y a %@ jours" } } } } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ hari lalu" + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ hari lalu" } } } } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ giorni fa" + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ giorni fa" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ giorni fa" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ giorni fa" } } } } }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@日前" + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@日前" } } } } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days ago" + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days ago" } } } } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days ago" + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days ago" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days ago" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days ago" } } } } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ dagen geleden" + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ dagen geleden" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ dagen geleden" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ dagen geleden" } } } } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ କିଛି ଦିନ ପୂର୍ବେ" + "or" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ କିଛି ଦିନ ପୂର୍ବେ" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ କିଛି ଦିନ ପୂର୍ବେ" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ କିଛି ଦିନ ପୂର୍ବେ" } } } } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ dni temu" + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ dni temu" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ dni temu" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ dni temu" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ dni temu" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ dni temu" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ dni temu" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ dni temu" } } } } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ dias atrás" + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ dias atrás" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ dias atrás" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ dias atrás" } } } } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days ago" + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days ago" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days ago" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days ago" } } } } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ дней назад" + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ дней назад" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ дней назад" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ дней назад" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ дней назад" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ дней назад" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ дней назад" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ дней назад" } } } } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ gün önce" + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ gün önce" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ gün önce" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ gün önce" } } } } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ днів тому" + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ днів тому" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ днів тому" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ днів тому" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ днів тому" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ днів тому" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ днів тому" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ днів тому" } } } } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days ago" + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days ago" } } } } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ 天前" + "zh-Hans" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 天前" } } } } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ 天前" + "zh-Hant" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 天前" } } } @@ -13094,621 +13094,621 @@ } } }, - "EditSet.Popup.Filter.Date.Option.NumberOfDaysFromNow": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Number of days from now" + "EditSet.Popup.Filter.Date.Option.NumberOfDaysFromNow" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Number of days from now" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Колькасць дзён з гэтага моманту" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Колькасць дзён з гэтага моманту" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Anzahl der Tage ab jetzt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Anzahl der Tage ab jetzt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Number of days from now" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Number of days from now" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Número de días desde ahora" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Número de días desde ahora" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Number of days from now" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Number of days from now" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Number of days from now" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Number of days from now" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Nombre de jours à partir de maintenant" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nombre de jours à partir de maintenant" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sekian hari ke depan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sekian hari ke depan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Numero di giorni da adesso" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Numero di giorni da adesso" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "今日からの何日後" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "今日からの何日後" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "며칠 후" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "며칠 후" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Antall dager fra nå" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Antall dager fra nå" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Aantal dagen vanaf nu" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Aantal dagen vanaf nu" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଆଜିଠାରୁ କେତେ ଦିନ ବାକି ଅଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଆଜିଠାରୁ କେତେ ଦିନ ବାକି ଅଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Liczba dni od teraz" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Liczba dni od teraz" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Número de dias a partir de agora" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Número de dias a partir de agora" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Number of days from now" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Number of days from now" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Количество дней с этого момента" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Количество дней с этого момента" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "gün sonra" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "gün sonra" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Кількість днів з цього моменту" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Кількість днів з цього моменту" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bao nhiêu ngày từ giờ" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bao nhiêu ngày từ giờ" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "从现在起的天数" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "从现在起的天数" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "幾天後" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "幾天後" } } } }, - "EditSet.Popup.Filter.Date.Option.NumberOfDaysFromNow.Short": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days from now" + "EditSet.Popup.Filter.Date.Option.NumberOfDaysFromNow.Short" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days from now" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days from now" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days from now" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days from now" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days from now" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days from now" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days from now" } }, - "two": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days from now" + "two" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days from now" } }, - "zero": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days from now" + "zero" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days from now" } } } } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ дзён таму" + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ дзён таму" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ дзён таму" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ дзён таму" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ дзён таму" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ дзён таму" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ дзён таму" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ дзён таму" } } } } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "in %@ Tagen" + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "in %@ Tagen" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "in %@ Tagen" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "in %@ Tagen" } } } } }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "%d day from now" + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d day from now" } }, - "other": { - "stringUnit": { - "state": "translated", - "value": "%d days from now" + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d days from now" } } } } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Dentro de %@ días" + "es" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Dentro de %@ días" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Dentro de %@ días" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Dentro de %@ días" } } } } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days from now" + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days from now" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days from now" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days from now" } } } } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days from now" + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days from now" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days from now" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days from now" } } } } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Dans %@ jours" + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Dans %@ jours" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Dans %@ jours" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Dans %@ jours" } } } } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ hari dari sekarang" + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ hari dari sekarang" } } } } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ giorni da adesso" + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ giorni da adesso" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ giorni da adesso" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ giorni da adesso" } } } } }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@日後" + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@日後" } } } } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days from now" + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days from now" } } } } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days from now" + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days from now" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days from now" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days from now" } } } } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ dagen vanaf nu" + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ dagen vanaf nu" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ dagen vanaf nu" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ dagen vanaf nu" } } } } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ ଦିନ ପରେ" + "or" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ ଦିନ ପରେ" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ ଦିନ ପରେ" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ ଦିନ ପରେ" } } } } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ dni od dziś" + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ dni od dziś" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ dni od dziś" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ dni od dziś" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ dni od dziś" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ dni od dziś" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ dni od dziś" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ dni od dziś" } } } } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ dias a partir de agora" + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ dias a partir de agora" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ dias a partir de agora" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ dias a partir de agora" } } } } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ days from now" + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ days from now" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days from now" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days from now" } } } } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ дней с настоящего времени" + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ дней с настоящего времени" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ дней с настоящего времени" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ дней с настоящего времени" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ дней с настоящего времени" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ дней с настоящего времени" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ дней с настоящего времени" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ дней с настоящего времени" } } } } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ gün sonra" + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ gün sonra" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ gün sonra" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ gün sonra" } } } } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ днів з цього моменту" + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ днів з цього моменту" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ днів з цього моменту" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ днів з цього моменту" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ днів з цього моменту" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ днів з цього моменту" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ днів з цього моменту" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ днів з цього моменту" } } } } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ days from now" + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ days from now" } } } } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ 天后" + "zh-Hans" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 天后" } } } } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ 天後" + "zh-Hant" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 天後" } } } @@ -13716,6756 +13716,6756 @@ } } }, - "EditSet.Popup.Filter.Date.Option.Today": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "اليوم" + "EditSet.Popup.Filter.Date.Option.Today" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "اليوم" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Сёння" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Сёння" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Heute" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Heute" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Today" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Today" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Hoy" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Hoy" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Today" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Today" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Today" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Today" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Aujourd'hui" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Aujourd'hui" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hari ini" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hari ini" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Oggi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Oggi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "今日" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "今日" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "오늘" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "오늘" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "I dag" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "I dag" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Vandaag" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Vandaag" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଆଜି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଆଜି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dzisiaj" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dzisiaj" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Hoje" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Hoje" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Today" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Today" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Сегодня" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Сегодня" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bugün" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bugün" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Сьогодні" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Сьогодні" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Hôm nay" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Hôm nay" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "今天" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "今天" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "今天" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "今天" } } } }, - "EditSet.Popup.Filter.Date.Option.Tomorrow": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "غدًا" + "EditSet.Popup.Filter.Date.Option.Tomorrow" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "غدًا" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Заўтра" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Заўтра" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Morgen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Morgen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Tomorrow" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tomorrow" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Mañana" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Mañana" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Tomorrow" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Tomorrow" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Tomorrow" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tomorrow" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Demain" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Demain" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Besok" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Besok" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Domani" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Domani" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "明日" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "明日" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "내일" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "내일" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "I morgen" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "I morgen" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Morgen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Morgen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଆସନ୍ତାକାଲି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଆସନ୍ତାକାଲି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jutro" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jutro" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Amanhã" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Amanhã" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Tomorrow" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Tomorrow" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Завтра" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Завтра" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yarın" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yarın" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Завтра" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Завтра" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Ngày mai" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ngày mai" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "明天" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "明天" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "明天" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "明天" } } } }, - "EditSet.Popup.Filter.Date.Option.Yesterday": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "أمس" + "EditSet.Popup.Filter.Date.Option.Yesterday" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "أمس" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Учора" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Учора" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Gestern" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Gestern" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Yesterday" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Yesterday" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ayer" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ayer" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Yesterday" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Yesterday" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Yesterday" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Yesterday" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Hier" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Hier" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kemarin" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kemarin" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ieri" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ieri" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "昨日" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "昨日" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "어제" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "어제" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "I går" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "I går" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Gisteren" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Gisteren" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଗତକାଲି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଗତକାଲି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wczoraj" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wczoraj" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Ontem" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Ontem" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Yesterday" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Yesterday" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вчера" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вчера" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Dün" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Dün" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Вчора" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Вчора" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Hôm qua" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Hôm qua" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "昨天" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "昨天" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "昨天" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "昨天" } } } }, - "EditSet.Popup.Filter.Value.Checked": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Checked" + "EditSet.Popup.Filter.Value.Checked" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Checked" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пазначаны" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пазначаны" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ausgewählt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ausgewählt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Checked" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Checked" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Marcado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Marcado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Checked" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Checked" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Checked" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Checked" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Coché" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Coché" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Telah diperiksa" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Telah diperiksa" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Spuntato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Spuntato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "チェック済み" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "チェック済み" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Checked" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Checked" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Krysset av" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Krysset av" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geselecteerd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geselecteerd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଯାଞ୍ଚ କରାଯାଇଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଯାଞ୍ଚ କରାଯାଇଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zaznaczone" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zaznaczone" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Marcado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Marcado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Checked" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Checked" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Отмечено" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Отмечено" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İşaretli" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İşaretli" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Позначено" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Позначено" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đã tick" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đã tick" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "选中" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "选中" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "已勾選" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "已勾選" } } } }, - "EditSet.Popup.Filter.Value.Unchecked": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Unchecked" + "EditSet.Popup.Filter.Value.Unchecked" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Unchecked" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Не пазначаны" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Не пазначаны" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nicht ausgewählt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nicht ausgewählt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Unchecked" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unchecked" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Sin marcar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Sin marcar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Unchecked" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Unchecked" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Unchecked" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Unchecked" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Décoché" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Décoché" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Belum diperiksa" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Belum diperiksa" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non spuntato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non spuntato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "未チェック" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "未チェック" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Unchecked" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Unchecked" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ikke krysset av" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ikke krysset av" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Niet geselecteerd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Niet geselecteerd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Unchecked" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Unchecked" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Odznaczone" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Odznaczone" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Desmarcado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Desmarcado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Unchecked" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Unchecked" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Не отмечено" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Не отмечено" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İşaretsiz" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İşaretsiz" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Не позначено" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Не позначено" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chưa tick" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chưa tick" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "未选中" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "未选中" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "未勾選" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "未勾選" } } } }, - "EditSet.Popup.Filters.EmptyView.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لا توجد فلاتر هنا. يمكنك إضافة بعضها" + "EditSet.Popup.Filters.EmptyView.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لا توجد فلاتر هنا. يمكنك إضافة بعضها" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Тут няма фільтраў. Вы можаце дадаць некалькі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Тут няма фільтраў. Вы можаце дадаць некалькі" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Keine Filter hier. Sie können einige hinzufügen." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Keine Filter hier. Sie können einige hinzufügen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No filters here. You can add some" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No filters here. You can add some" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No hay ningún filtro. Puedes añadir alguno." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No hay ningún filtro. Puedes añadir alguno." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No filters here. You can add some" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No filters here. You can add some" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "No filters here. You can add some" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "No filters here. You can add some" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Aucun filtre ici. Vous pouvez en ajouter" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Aucun filtre ici. Vous pouvez en ajouter" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak ada saringan disini. Kamu dapat menambahkan beberapa" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak ada saringan disini. Kamu dapat menambahkan beberapa" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nessun filtro qui. Puoi aggiungerne alcuni" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nessun filtro qui. Puoi aggiungerne alcuni" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "フィルターが設定されていません。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "フィルターが設定されていません。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "No filters here. You can add some" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "No filters here. You can add some" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ingen filtre her. Du kan legge til noen" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ingen filtre her. Du kan legge til noen" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geen filters hier. Je kunt er een paar toevoegen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geen filters hier. Je kunt er een paar toevoegen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଏଠାରେ କୌଣସି ଫିଲ୍ଟର ନାହିଁ | ଆପଣ କିଛି ଯୋଗ କରିପାରିବେ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଏଠାରେ କୌଣସି ଫିଲ୍ଟର ନାହିଁ | ଆପଣ କିଛି ଯୋଗ କରିପାରିବେ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Brak filtrów tutaj. Możesz dodać kilka" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Brak filtrów tutaj. Możesz dodać kilka" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Não há filtros aqui. Você pode adicionar alguns" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Não há filtros aqui. Você pode adicionar alguns" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Não há filtros aqui. Você pode adicionar alguns" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Não há filtros aqui. Você pode adicionar alguns" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Здесь нет фильтров. Вы можете добавить свои" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Здесь нет фильтров. Вы можете добавить свои" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Burada filtre yok. Kendiniz ekleyebilirsiniz." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Burada filtre yok. Kendiniz ekleyebilirsiniz." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Тут немає фільтрів. Ви можете додати деякі" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Тут немає фільтрів. Ви можете додати деякі" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "No filters here. You can add some" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "No filters here. You can add some" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "这里没有可筛选。您可以添加一些" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "这里没有可筛选。您可以添加一些" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "尚無篩選。您可以新增一些" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "尚無篩選。您可以新增一些" } } } }, - "EditSet.Popup.Filters.NavigationView.Title": { - "comment": "MARK: - Sets: Filters", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Filters" + "EditSet.Popup.Filters.NavigationView.Title" : { + "comment" : "MARK: - Sets: Filters", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Filters" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Фільтры" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Фільтры" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Filter" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Filter" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Filters" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Filters" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Filtrar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Filtrar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Filters" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Filters" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Filters" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Filters" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Filtres" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Filtres" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Saringan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Saringan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Filtri" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Filtri" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "フィルター" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "フィルター" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "필터" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "필터" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Filtre" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Filtre" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Filters" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Filters" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଫିଲ୍ଟର୍" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଫିଲ୍ଟର୍" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Filtry" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Filtry" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Filtros" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Filtros" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Filtros" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Filtros" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Фильтры" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Фильтры" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Filtreler" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Filtreler" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Фільтри" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Фільтри" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bộ lọc" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bộ lọc" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "筛选" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "筛选" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "篩選" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "篩選" } } } }, - "EditSet.Popup.Filters.TextView.Placeholder": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "القيمة" + "EditSet.Popup.Filters.TextView.Placeholder" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "القيمة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Значэнне" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Значэнне" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Wert" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Wert" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Value" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Value" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Valor" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Valor" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Value" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Value" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Value" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Value" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Valeur" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Valeur" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Nilai" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Nilai" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Valore" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Valore" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "値" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "値" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "값" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "값" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Verdi" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Verdi" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Waarde" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Waarde" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ମୂଲ୍ୟ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ମୂଲ୍ୟ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wartość" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wartość" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Valor" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Valor" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Valor" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Valor" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Значение" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Значение" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Değer" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Değer" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Значення" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Значення" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Giá trị" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Giá trị" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "值" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "值" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "值" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "值" } } } }, - "EditSet.Popup.Sort.Add.SearchPlaceholder": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "EditSet.Popup.Sort.Add.SearchPlaceholder" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Сhoose a property to sort" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Сhoose a property to sort" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Elige la propiedad para el orden" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Elige la propiedad para el orden" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pilih atribut untuk menyortir" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pilih atribut untuk menyortir" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "並び替えるプロパティを選択" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "並び替えるプロパティを選択" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Kies een eigenschap om te sorteren" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kies een eigenschap om te sorteren" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sıralamak için bir özellik seçin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sıralamak için bir özellik seçin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "选择一个属性以排序" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "选择一个属性以排序" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Сhoose a property to sort" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Сhoose a property to sort" } } } }, - "EditSet.Popup.Sort.EmptyTypes.End": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "في الأسفل" + "EditSet.Popup.Sort.EmptyTypes.End" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "في الأسفل" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Знізу" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Знізу" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ganz unten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ganz unten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "On bottom" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "On bottom" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Al final" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Al final" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "On bottom" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "On bottom" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "On bottom" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "On bottom" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "En bas" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "En bas" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Di bawah" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Di bawah" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "In basso" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "In basso" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "下に表示" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "下に表示" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "하단" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "하단" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "On bottom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "On bottom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Onderaan" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Onderaan" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଶୀର୍ଷରେ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଶୀର୍ଷରେ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Na dole" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Na dole" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Na parte inferior" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Na parte inferior" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Na base" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Na base" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Снизу" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Снизу" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "En altta" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "En altta" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "On bottom" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "On bottom" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "On bottom" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "On bottom" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "在底部" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "在底部" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "在底部" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "在底部" } } } }, - "EditSet.Popup.Sort.EmptyTypes.Section.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إظهار القيم الفارغة" + "EditSet.Popup.Sort.EmptyTypes.Section.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إظهار القيم الفارغة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Паказаць пустыя значэнні" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Паказаць пустыя значэнні" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Leere Werte anzeigen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Leere Werte anzeigen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Show empty values" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show empty values" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Mostrar valores vacíos" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Mostrar valores vacíos" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Show empty values" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Show empty values" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Show empty values" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Show empty values" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Afficher les valeurs vides" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Afficher les valeurs vides" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tampilkan nilai kosong" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tampilkan nilai kosong" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Mostra valori vuoti" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Mostra valori vuoti" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "未入力の値を表示" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "未入力の値を表示" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "빈 값 표시" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "빈 값 표시" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Show empty values" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Show empty values" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Toon lege waarden" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Toon lege waarden" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଖାଲି ମୂଲ୍ୟ ଦେଖାନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଖାଲି ମୂଲ୍ୟ ଦେଖାନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Pokaż puste wartości" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Pokaż puste wartości" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Mostrar valores vazios" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Mostrar valores vazios" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Exibir valores vazios" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Exibir valores vazios" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Показать пустые значения" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Показать пустые значения" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Boş değerleri göster" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Boş değerleri göster" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Show empty values" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Show empty values" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Show empty values" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Show empty values" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "显示空白值" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "显示空白值" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "顯示空值" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "顯示空值" } } } }, - "EditSet.Popup.Sort.EmptyTypes.Start": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "في الأعلى" + "EditSet.Popup.Sort.EmptyTypes.Start" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "في الأعلى" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Зверху" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Зверху" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ganz oben" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ganz oben" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "On top" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "On top" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Al principio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Al principio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "On top" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "On top" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "On top" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "On top" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "En haut" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "En haut" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Di atas" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Di atas" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "In alto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "In alto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "上に表示" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "上に表示" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "상단" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "상단" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "On top" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "On top" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bovenaan" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bovenaan" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଶୀର୍ଷରେ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଶୀର୍ଷରେ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Na górze" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Na górze" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "No topo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "No topo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "No topo" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "No topo" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Наверху" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Наверху" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "En yukarıda" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "En yukarıda" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "On top" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "On top" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Lên đầu" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Lên đầu" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "在顶部" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "在顶部" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "在頂部" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "在頂部" } } } }, - "EditSet.Popup.Sort.Types.Ascending": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تصاعدي" + "EditSet.Popup.Sort.Types.Ascending" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تصاعدي" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Па ўзрастанні" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Па ўзрастанні" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Aufsteigend" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Aufsteigend" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Ascending" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ascending" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ascendente" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ascendente" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Ascending" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Ascending" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Ascending" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ascending" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Tri croissant" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tri croissant" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Urutan naik" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Urutan naik" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ascendente" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ascendente" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "昇順" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "昇順" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "오름차순" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "오름차순" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Stigende rekkefølge" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Stigende rekkefølge" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Oplopend" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Oplopend" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଆରୋହଣ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଆରୋହଣ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Rosnąco" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Rosnąco" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Crescente" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Crescente" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Ascendente" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Ascendente" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "По возрастанию" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "По возрастанию" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Artan" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Artan" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "За зростанням" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "За зростанням" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Từ dưới lên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Từ dưới lên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "升序" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "升序" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "升序" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "升序" } } } }, - "EditSet.Popup.Sort.Types.Descending": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تنازلي" + "EditSet.Popup.Sort.Types.Descending" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تنازلي" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Па змяншэнні" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Па змяншэнні" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Absteigend" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Absteigend" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Descending" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Descending" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Descendente" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Descendente" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Descending" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Descending" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Descending" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Descending" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Tri décroissant" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tri décroissant" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Urutan turun" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Urutan turun" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Discendente" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Discendente" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "降順" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "降順" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "내림차순" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "내림차순" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Synkende rekkefølge" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Synkende rekkefølge" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Aflopend" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Aflopend" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଅବତରଣ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଅବତରଣ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Malejąco" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Malejąco" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Decrescente" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Decrescente" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Descendente" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Descendente" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "По убыванию" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "По убыванию" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Azalan" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Azalan" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "За спаданням" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "За спаданням" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Từ trên xuống" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Từ trên xuống" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "降序" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "降序" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "降序" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "降序" } } } }, - "EditSet.Popup.Sorts.EmptyView.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لا توجد عمليات فرز هنا. يمكنك إضافة بعضها" + "EditSet.Popup.Sorts.EmptyView.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لا توجد عمليات فرز هنا. يمكنك إضافة بعضها" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Тут няма сартавання. Вы можаце дадаць некалькі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Тут няма сартавання. Вы можаце дадаць некалькі" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Keine Sorten hier. Sie können einige hinzufügen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Keine Sorten hier. Sie können einige hinzufügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No sorts here. You can add some" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No sorts here. You can add some" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No hay ningún orden. Puedes añadir alguno." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No hay ningún orden. Puedes añadir alguno." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No sorts here. You can add some" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No sorts here. You can add some" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "No sorts here. You can add some" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "No sorts here. You can add some" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Pas de tri ici. Vous pouvez en ajouter" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Pas de tri ici. Vous pouvez en ajouter" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak ada urutan disini. Kamu dapat menambahkan beberapa" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak ada urutan disini. Kamu dapat menambahkan beberapa" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nessun ordinamento qui. Puoi aggiungerne alcuni" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nessun ordinamento qui. Puoi aggiungerne alcuni" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "並び替えが設定されていません。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "並び替えが設定されていません。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "No sorts here. You can add some" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "No sorts here. You can add some" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ingen sorteringer her. Du kan legge til noen" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ingen sorteringer her. Du kan legge til noen" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geen sorteringen hier. Je kunt er een paar toevoegen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geen sorteringen hier. Je kunt er een paar toevoegen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଏଠାରେ କୌଣସି ପ୍ରକାର ନାହିଁ | ଆପଣ କିଛି ଯୋଗ କରିପାରିବେ |" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଏଠାରେ କୌଣସି ପ୍ରକାର ନାହିଁ | ଆପଣ କିଛି ଯୋଗ କରିପାରିବେ |" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie ma tutaj sortowania. Możesz dodać kilka" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie ma tutaj sortowania. Możesz dodać kilka" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Sem ordenações aqui. Você pode adicionar alguns" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Sem ordenações aqui. Você pode adicionar alguns" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Não há classificações aqui. Você pode adicionar algumas" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Não há classificações aqui. Você pode adicionar algumas" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Здесь нет сортировки. Вы можете добавить несколько" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Здесь нет сортировки. Вы можете добавить несколько" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Burada sıralama yok. Kendiniz ekleyebilirsiniz." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Burada sıralama yok. Kendiniz ekleyebilirsiniz." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Тут немає сортування. Ви можете додати деякі" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Тут немає сортування. Ви можете додати деякі" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "No sorts here. You can add some" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "No sorts here. You can add some" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "这里没有可排序。您可以添加一些" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "这里没有可排序。您可以添加一些" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "尚無排序。您可以新增一些" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "尚無排序。您可以新增一些" } } } }, - "EditSet.Popup.Sorts.NavigationView.Title": { - "comment": "MARK: - Sets: Sorts", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Sorts" + "EditSet.Popup.Sorts.NavigationView.Title" : { + "comment" : "MARK: - Sets: Sorts", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Sorts" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Сартаванні" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Сартаванні" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Sorten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Sorten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Sorts" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sorts" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ordenar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ordenar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Sorts" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Sorts" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Sorts" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Sorts" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Trier" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Trier" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Urutan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Urutan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ordinamenti" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ordinamenti" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "並び替え" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "並び替え" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Sorts" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Sorts" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Sorteringer" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Sorteringer" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Sortering" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Sortering" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ସଜାଣି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ସଜାଣି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Sortuj" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Sortuj" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Classificar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Classificar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Classificação" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Classificação" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Сортировки" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Сортировки" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sıralamalar" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sıralamalar" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Сортування" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Сортування" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Sắp xếp" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Sắp xếp" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "排序" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "排序" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "排序" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "排序" } } } }, - "Fields.addToType": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إضافة إلى النوع الحالي" + "Fields.addToType" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إضافة إلى النوع الحالي" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Zum aktuellen Typ hinzufügen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Zum aktuellen Typ hinzufügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Add to the current type" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add to the current type" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Añadir al tipo actual" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Añadir al tipo actual" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ajouter au type actuel" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ajouter au type actuel" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tambahkan ke tipe saat ini" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tambahkan ke tipe saat ini" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Aggiungi al tipo corrente" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Aggiungi al tipo corrente" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "現在のタイプに追加" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "現在のタイプに追加" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voeg toe aan het huidige type" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voeg toe aan het huidige type" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Geçerli türe ekle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Geçerli türe ekle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "添加到当前类型" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "添加到当前类型" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Add to the current type" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to the current type" } } } }, - "Fields.Created": { - "comment": "MARK: - Fields // old name: Relations", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "Fields.Created" : { + "comment" : "MARK: - Fields // old name: Relations", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Eigenschaft ‚%@‘ wurde erstellt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenschaft ‚%@‘ wurde erstellt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Property ‘%@’ has been created" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Property ‘%@’ has been created" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Se ha creado la propiedad «%@»." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Se ha creado la propiedad «%@»." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "La propriété « %@ » a été créée" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "La propriété « %@ » a été créée" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Properti '%@' telah dibuat" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Properti '%@' telah dibuat" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プロパティ「%@」が削除されました" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プロパティ「%@」が削除されました" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Eigenschap %@ is aangemaakt" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenschap %@ is aangemaakt" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "‘%@’ özelliği oluşturuldu" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "‘%@’ özelliği oluşturuldu" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "已创建属性“%@”" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "已创建属性“%@”" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been created" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been created" } } } }, - "Fields.foundInObjects": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "موجود في الكائنات" + "Fields.foundInObjects" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "موجود في الكائنات" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "In Objekten gefunden" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "In Objekten gefunden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Found in objects" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Found in objects" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Encontrada en objetos" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Encontrada en objetos" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Trouvé dans les objets" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Trouvé dans les objets" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ditemukan pada objek" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ditemukan pada objek" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Trovato in oggetti" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Trovato in oggetti" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "オブジェクト内の個別プロパティ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "オブジェクト内の個別プロパティ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Gevonden in objecten" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Gevonden in objecten" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Nesnelerin içinde bulundu" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nesnelerin içinde bulundu" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "在对象中找到" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "在对象中找到" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Found in objects" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Found in objects" } } } }, - "Fields.local": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Local" + "Fields.local" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Local" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Lokal" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Lokal" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Local" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Local" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Local" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Local" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Local" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Lokal" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Lokal" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Local" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "個別" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "個別" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Local" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Local" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Lokaal" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Lokaal" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Local properties" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Local properties" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Local" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Local" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Local" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Local" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yerel" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yerel" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Local" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Local" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "本地" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "本地" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Local" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Local" } } } }, - "Fields.menu": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لوحة الخصائص" + "Fields.menu" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لوحة الخصائص" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Properties panel" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Properties panel" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Panel de propiedades" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Panel de propiedades" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Panneau de propriétés" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Panneau de propriétés" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Panel atribut" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Panel atribut" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Pannello delle proprietà" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Pannello delle proprietà" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プロパティパネル" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プロパティパネル" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Eigenschappen paneel" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenschappen paneel" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Панель свойств" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Панель свойств" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Özellikler paneli" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Özellikler paneli" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "属性面板" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "属性面板" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Properties panel" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties panel" } } } }, - "Fields.missingInfo": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "هذه الخصائص موجودة في بعض الكائنات ولكنها ليست جزءًا من النوع. أضفها لتظهر في جميع كائنات هذا النوع." + "Fields.missingInfo" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "هذه الخصائص موجودة في بعض الكائنات ولكنها ليست جزءًا من النوع. أضفها لتظهر في جميع كائنات هذا النوع." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Estas propiedades existen en algún objeto pero no forman parte del tipo. Añádelas para que aparezcan en todos los objetos de este tipo." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Estas propiedades existen en algún objeto pero no forman parte del tipo. Añádelas para que aparezcan en todos los objetos de este tipo." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ces propriétés existent dans certains objets mais ne font pas partie du type. Ajoutez-les pour les faire apparaître dans tous les objets de ce type." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ces propriétés existent dans certains objets mais ne font pas partie du type. Ajoutez-les pour les faire apparaître dans tous les objets de ce type." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Atribut ini ada di beberapa objek namun bukan bagian dari Tipe. Tambahkan atribut tersebut untuk menampilkannya di semua objek dengan Tipe ini." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Atribut ini ada di beberapa objek namun bukan bagian dari Tipe. Tambahkan atribut tersebut untuk menampilkannya di semua objek dengan Tipe ini." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Queste proprietà esistono in alcuni oggetti, ma non fanno parte del Tipo. Aggiungerle per farle apparire in tutti gli oggetti di questo Tipo." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Queste proprietà esistono in alcuni oggetti, ma non fanno parte del Tipo. Aggiungerle per farle apparire in tutti gli oggetti di questo Tipo." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "タイプに存在しないプロパティです。タイプに追加することで、他のオブジェクトにもこのプロパティを表示させることができます。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "タイプに存在しないプロパティです。タイプに追加することで、他のオブジェクトにもこのプロパティを表示させることができます。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deze eigenschappen bestaan in sommige objecten, maar maken geen deel uit van het type. Voeg ze toe om ze zichtbaar te maken in alle objecten van dit type." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deze eigenschappen bestaan in sommige objecten, maar maken geen deel uit van het type. Voeg ze toe om ze zichtbaar te maken in alle objecten van dit type." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu özellikler bazı nesnelerde bulunur ama Türün bir parçası değildir. Bu Türün tüm nesnelerinde görünmelerini sağlamak için onları ekleyin." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu özellikler bazı nesnelerde bulunur ama Türün bir parçası değildir. Bu Türün tüm nesnelerinde görünmelerini sağlamak için onları ekleyin." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "这些属性仅存在于某些对象中,不是其类型的一部分。添加后可供在此类型的所有对象中使用。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "这些属性仅存在于某些对象中,不是其类型的一部分。添加后可供在此类型的所有对象中使用。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "These properties exist in some objects but aren’t part of the Type. Add them to make them appear in all objects of this Type." } } } }, - "Fields.removeFromObject": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إزالة من الكائن" + "Fields.removeFromObject" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إزالة من الكائن" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Aus dem Objekt entfernen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Aus dem Objekt entfernen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Remove from the object" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove from the object" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Quitar del objeto" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Quitar del objeto" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Retirer de l’objet" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Retirer de l’objet" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hapus dari objek" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hapus dari objek" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Rimuovi dall'oggetto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Rimuovi dall'oggetto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "オブジェクトから削除" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "オブジェクトから削除" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verwijder uit het object" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwijder uit het object" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Nesneden sil" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nesneden sil" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "从对象中移除" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "从对象中移除" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Remove from the object" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove from the object" } } } }, - "Fields.Updated": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "Fields.Updated" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Eigenschaft ‚%@‘ wurde aktualisiert" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenschaft ‚%@‘ wurde aktualisiert" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Property ‘%@’ has been updated" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Property ‘%@’ has been updated" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Se ha actualizado la propiedad «%@»." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Se ha actualizado la propiedad «%@»." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Properti '%@' telah diperbarui" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Properti '%@' telah diperbarui" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プロパティ「%@」が更新されました" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プロパティ「%@」が更新されました" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Eigenschap ‘%@’ is bijgewerkt" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenschap ‘%@’ is bijgewerkt" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "‘%@’ özelliği güncellendi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "‘%@’ özelliği güncellendi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "已更新属性“%@”" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "已更新属性“%@”" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Property ‘%@’ has been updated" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Property ‘%@’ has been updated" } } } }, - "Invite": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "دعوة" + "Invite" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "دعوة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Invite" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Einladen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Einladen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invite" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Invitar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Invitar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Invite" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Invite" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Inviter" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Inviter" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Undang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Undang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Invita" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Invita" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "招待" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "招待" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Invite" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Invite" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Nodig uit" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nodig uit" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ନିମନ୍ତ୍ରଣ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ନିମନ୍ତ୍ରଣ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Invite" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Invite" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Invite" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Пригласить" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Пригласить" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Davet et" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Davet et" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Invite" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Invite" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "邀请" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "邀请" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Invite" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite" } } } }, - "Join Space": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Join Space" + "Join Space" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Join Space" } } } }, - "Join Space Button": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Join Space Button" + "Join Space Button" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Join Space Button" } } } }, - "Members": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الأعضاء" + "Members" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الأعضاء" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Удзельнікі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Удзельнікі" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Mitglieder" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Mitglieder" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Members" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Members" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Miembros" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Miembros" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Members" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Members" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Members" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Members" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Membres" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Membres" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Anggota" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Anggota" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Membri" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Membri" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メンバー" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メンバー" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Members" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Members" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Medlemmer" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Medlemmer" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Leden" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Leden" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Members" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Members" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Czlonkowie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Czlonkowie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Membros" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Membros" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Members" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Members" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Участники" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Участники" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Üyeler" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Üyeler" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Members" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Members" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Thành viên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Thành viên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "参与的人" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "参与的人" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "成員" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "成員" } } } }, - "Membership": { - "comment": "MARK: - Membership", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "العضوية" + "Membership" : { + "comment" : "MARK: - Membership", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "العضوية" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Членства" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Членства" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Mitgliedschaft" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Mitgliedschaft" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Membership" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membership" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Suscripción" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Suscripción" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Membership" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Membership" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Adhésion" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Adhésion" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Langganan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Langganan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Membership" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メンバーシップ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メンバーシップ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Membership" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Medlemskap" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Medlemskap" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Lidmaatschap" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Lidmaatschap" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Membership" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Członkostwo" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Członkostwo" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Associação" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Associação" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Membership" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Членство" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Членство" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Üyelik" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Üyelik" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Membership" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tư cách hội viên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tư cách hội viên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "会员" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "会员" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "會員" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "會員" } } } }, - "Membership.Ad.Subtitle": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الانضمام إلى شبكة Anytype يعني المساهمة في قصتها" + "Membership.Ad.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الانضمام إلى شبكة Anytype يعني المساهمة في قصتها" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Далучыцца да сеткі Anytype - значыць зрабіць свой унёсак у яе гісторыю" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Далучыцца да сеткі Anytype - значыць зрабіць свой унёсак у яе гісторыю" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Dem Anytype-Netzwerk beizutreten bedeutet, einen Beitrag zu seiner Geschichte zu leisten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Dem Anytype-Netzwerk beizutreten bedeutet, einen Beitrag zu seiner Geschichte zu leisten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Joining Anytype network means contributing to its story" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Joining Anytype network means contributing to its story" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Unirse a la red Anytype significa contribuir a su historia" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Unirse a la red Anytype significa contribuir a su historia" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Joining Anytype network means contributing to its story" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining Anytype network means contributing to its story" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Joining Anytype network means contributing to its story" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining Anytype network means contributing to its story" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Rejoindre le réseau Anytype signifie contribuer à son histoire" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Rejoindre le réseau Anytype signifie contribuer à son histoire" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bergabung dengan jaringan Anytype berarti turut berkontribusi pada kisahnya" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bergabung dengan jaringan Anytype berarti turut berkontribusi pada kisahnya" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Unire alla rete di Anytype significa contribuire alla sua storia" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Unire alla rete di Anytype significa contribuire alla sua storia" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Anytype Networkに参加して、共に未来を創りましょう" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytype Networkに参加して、共に未来を創りましょう" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Joining Anytype network means contributing to its story" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining Anytype network means contributing to its story" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Joining Anytype network means contributing to its story" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining Anytype network means contributing to its story" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deelnemen aan het Anytype netwerk betekent bijdragen aan het verhaal" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deelnemen aan het Anytype netwerk betekent bijdragen aan het verhaal" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Joining Anytype network means contributing to its story" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining Anytype network means contributing to its story" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dołączenie do sieci Anytype oznacza przyczynienie się do jej historii" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dołączenie do sieci Anytype oznacza przyczynienie się do jej historii" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Juntar-se a rede Anytype representa contribuir para essa história" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Juntar-se a rede Anytype representa contribuir para essa história" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Joining Anytype network means contributing to its story" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining Anytype network means contributing to its story" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Присоединение к сети Anytype означает внесение вклада в её историю" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Присоединение к сети Anytype означает внесение вклада в её историю" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Anytype ağına katılmak, hikayesine katkıda bulunmak anlamına gelir" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytype ağına katılmak, hikayesine katkıda bulunmak anlamına gelir" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Joining Anytype network means contributing to its story" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining Anytype network means contributing to its story" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tham gia vào mạng Anytype tức là đóng góp vào câu chuyện của nó" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tham gia vào mạng Anytype tức là đóng góp vào câu chuyện của nó" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "加入 Anytype 网络,书写它的故事" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "加入 Anytype 网络,书写它的故事" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "成為 Anytype 網絡的一員,您就是它故事的一部分。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "成為 Anytype 網絡的一員,您就是它故事的一部分。" } } } }, - "Membership.Ad.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "العضوية" + "Membership.Ad.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "العضوية" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Членства" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Членства" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Mitgliedschaft" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Mitgliedschaft" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Membership" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membership" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Suscripción" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Suscripción" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Membership" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Membership" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Adhésion" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Adhésion" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Langganan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Langganan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Membership" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メンバーシップ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メンバーシップ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Membership" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Medlemskap" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Medlemskap" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Lidmaatschap" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Lidmaatschap" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Membership" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Członkostwo" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Członkostwo" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Associação" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Associação" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Membership" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Членство" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Членство" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Üyelik" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Üyelik" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Membership" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tư cách hội viên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tư cách hội viên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "会员" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "会员" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "會員" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "會員" } } } }, - "Membership.Banner.Subtitle1": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "كعضو قيم، صوتك مهم! شارك في الأحداث الحصرية، شكّل الخيارات الاستراتيجية، وأثر على خارطة طريقنا." + "Membership.Banner.Subtitle1" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "كعضو قيم، صوتك مهم! شارك في الأحداث الحصرية، شكّل الخيارات الاستراتيجية، وأثر على خارطة طريقنا." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ваш голас важны як шаноўнага ўдзельніка! Удзельнічайце ў эксклюзіўных мерапрыемствах, вызначайце стратэгічныя рашэнні і ўплывайце на нашу дарожную карту." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ваш голас важны як шаноўнага ўдзельніка! Удзельнічайце ў эксклюзіўных мерапрыемствах, вызначайце стратэгічныя рашэнні і ўплывайце на нашу дарожную карту." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Als geschätztes Mitglied zählt deine Stimme! Nimm an exklusiven Veranstaltungen teil, gestalte strategische Entscheidungen und beeinflusse unseren Entwicklungsplan." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Als geschätztes Mitglied zählt deine Stimme! Nimm an exklusiven Veranstaltungen teil, gestalte strategische Entscheidungen und beeinflusse unseren Entwicklungsplan." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¡Valoramos tu voz! Participa en eventos exclusivos, define las opciones estratégicas e influye en nuestro plan de acción." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¡Valoramos tu voz! Participa en eventos exclusivos, define las opciones estratégicas e influye en nuestro plan de acción." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "En tant que membre apprécié, votre voix compte ! Participez à des événements exclusifs, définissez des choix stratégiques et influencez notre feuille de route." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "En tant que membre apprécié, votre voix compte ! Participez à des événements exclusifs, définissez des choix stratégiques et influencez notre feuille de route." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sebagai pelanggan terhormat, suara Anda sangat berarti! Terlibat dalam acara eksklusif, menentukan pilihan strategis, dan memengaruhi peta jalan kami." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sebagai pelanggan terhormat, suara Anda sangat berarti! Terlibat dalam acara eksklusif, menentukan pilihan strategis, dan memengaruhi peta jalan kami." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "In qualità di membro apprezzato, la tua voce conta! Partecipa a eventi esclusivi, contribuisci a scelte strategiche e influenza la nostra roadmap." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "In qualità di membro apprezzato, la tua voce conta! Partecipa a eventi esclusivi, contribuisci a scelte strategiche e influenza la nostra roadmap." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "大切なメンバーであるあなたの声を反映させましょう。限定イベントや重要な方針決定へのご参加を通じて、私たちと共に目指すべき未来を創り上げましょう。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "大切なメンバーであるあなたの声を反映させましょう。限定イベントや重要な方針決定へのご参加を通じて、私たちと共に目指すべき未来を創り上げましょう。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "소중한 회원으로서 여러분의 목소리가 중요합니다! 독점 이벤트에 참여하고, 전략적인 선택을 하고, 로드맵에 영향을 미치세요." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "소중한 회원으로서 여러분의 목소리가 중요합니다! 독점 이벤트에 참여하고, 전략적인 선택을 하고, 로드맵에 영향을 미치세요." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Als gewaardeerd lid telt jouw stem! Neem deel aan exclusieve evenementen, geef vorm aan strategische keuzes en beïnvloed onze roadmap." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Als gewaardeerd lid telt jouw stem! Neem deel aan exclusieve evenementen, geef vorm aan strategische keuzes en beïnvloed onze roadmap." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jako ceniony członek, Twój głos ma znaczenie! Bierz udział w ekskluzywnych wydarzeniach, kształtuj strategiczne wybory i wpływaj na naszą mapę drogową." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jako ceniony członek, Twój głos ma znaczenie! Bierz udział w ekskluzywnych wydarzeniach, kształtuj strategiczne wybory i wpływaj na naszą mapę drogową." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Como um membro valioso sua voz importa! Envolva-se em eventos exclusivos, forme escolhas estratégicas e influencie nosso roteiro." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Como um membro valioso sua voz importa! Envolva-se em eventos exclusivos, forme escolhas estratégicas e influencie nosso roteiro." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Как ценному участнику, ваше мнение имеет значение! Участвуйте в эксклюзивных мероприятиях, определяйте стратегические решения и влияйте на наше развитие." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Как ценному участнику, ваше мнение имеет значение! Участвуйте в эксклюзивных мероприятиях, определяйте стратегические решения и влияйте на наше развитие." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Değerli bir üye olarak sesiniz önemli! Özel etkinliklere katılın, stratejik seçimleri şekillendirin ve yol haritamızı etkileyin." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Değerli bir üye olarak sesiniz önemli! Özel etkinliklere katılın, stratejik seçimleri şekillendirin ve yol haritamızı etkileyin." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "As a valued member your voice matters! Engage in exclusive events, shape strategic choices, and influence our roadmap." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Là một thành viên quý giá, tiếng nói của bạn có trọng lượng! Tham dự những sự kiện dành riêng, định hình những lựa chọn chiến lược, và tạo ảnh hưởng lên bản đồ của chúng tôi." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Là một thành viên quý giá, tiếng nói của bạn có trọng lượng! Tham dự những sự kiện dành riêng, định hình những lựa chọn chiến lược, và tạo ảnh hưởng lên bản đồ của chúng tôi." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "作为尊贵的会员,你的声音很重要!参与独家活动,制定战略选择,并影响我们的路线图。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "作为尊贵的会员,你的声音很重要!参与独家活动,制定战略选择,并影响我们的路线图。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "作為尊貴的會員,您的聲音至關重要! 參與獨家活動、制定策略選擇,並影響我們的路線圖。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "作為尊貴的會員,您的聲音至關重要! 參與獨家活動、制定策略選擇,並影響我們的路線圖。" } } } }, - "Membership.Banner.Subtitle2": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." + "Membership.Banner.Subtitle2" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Карыстальнікам прадастаўляюцца больш высокія ліміты для рэзервовага капіравання і сінхранізацыі, запрашэнні для працы ў агульных прасторах і ўнікальныя ідэнтыфікатары ў сетцы Anytype." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Карыстальнікам прадастаўляюцца больш высокія ліміты для рэзервовага капіравання і сінхранізацыі, запрашэнні для працы ў агульных прасторах і ўнікальныя ідэнтыфікатары ў сетцы Anytype." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Mitglieder profitieren von größerem Backupspeicherplatz, Synchronisierungslimits, Einladungen von mehreren Gästen zu geteilten Spaces und einer einzigartigen Benennung im Anytype Netzwerk." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Mitglieder profitieren von größerem Backupspeicherplatz, Synchronisierungslimits, Einladungen von mehreren Gästen zu geteilten Spaces und einer einzigartigen Benennung im Anytype Netzwerk." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Los suscriptores disfrutan de más almacenamiento de respaldo y menos límites de sincronización; pueden invitar a otros a colaborar en espacios compartidos y tienen una identidad única en la red de Anytype." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Los suscriptores disfrutan de más almacenamiento de respaldo y menos límites de sincronización; pueden invitar a otros a colaborar en espacios compartidos y tienen una identidad única en la red de Anytype." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Les membres bénéficient d'une plus grande limite de stockage de sauvegardes et limites de synchronisation, d'invitations pour plusieurs invités à collaborer dans des espaces partagés et d'une identité unique sur le réseau Anytype." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Les membres bénéficient d'une plus grande limite de stockage de sauvegardes et limites de synchronisation, d'invitations pour plusieurs invités à collaborer dans des espaces partagés et d'une identité unique sur le réseau Anytype." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pelanggan dapat menikmati penyimpanan cadangan & batas sinkronisasi yang lebih tinggi, undangan bagi banyak pengguna untuk berkolaborasi di ruang bersama, dan identitas unik di Jaringan Anytype." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pelanggan dapat menikmati penyimpanan cadangan & batas sinkronisasi yang lebih tinggi, undangan bagi banyak pengguna untuk berkolaborasi di ruang bersama, dan identitas unik di Jaringan Anytype." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "I membri godono di limiti più elevati di archiviazione e sincronizzazione dei backup, di inviti per più ospiti a collaborare in spazi condivisi e di un'identità unica sulla Rete Anytype." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "I membri godono di limiti più elevati di archiviazione e sincronizzazione dei backup, di inviti per più ospiti a collaborare in spazi condivisi e di un'identità unica sulla Rete Anytype." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "より多くのバックアップ容量、同期上限の緩和、共有スペースへの招待数増加、Anytype Networkでの独自IDをご利用いただけます。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "より多くのバックアップ容量、同期上限の緩和、共有スペースへの招待数増加、Anytype Networkでの独自IDをご利用いただけます。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Leden hebben meer backup opslagcapaciteit & synchronisatielimieten, uitnodigingen voor meerdere gasten om samen te werken in gedeelde ruimten, en een unieke identiteit in het Anytype netwerk." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Leden hebben meer backup opslagcapaciteit & synchronisatielimieten, uitnodigingen voor meerdere gasten om samen te werken in gedeelde ruimten, en een unieke identiteit in het Anytype netwerk." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Członkowie cieszą się wyższymi limitami pamięci zapasowej i synchronizacji, zaproszeniami dla wielu gości do współpracy we wspólnych przestrzeniach oraz unikalną tożsamością w sieci AnyType." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Członkowie cieszą się wyższymi limitami pamięci zapasowej i synchronizacji, zaproszeniami dla wielu gości do współpracy we wspólnych przestrzeniach oraz unikalną tożsamością w sieci AnyType." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Membros desfrutam de maiores limites de backup e sincronização, convites para vários convidados para colaborar em espaços compartilhados e uma identidade única na rede do Anytype." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Membros desfrutam de maiores limites de backup e sincronização, convites para vários convidados para colaborar em espaços compartilhados e uma identidade única na rede do Anytype." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Участники получают более высокие лимиты на хранение и синхронизацию резервных копий, приглашения для нескольких гостей для совместной работы в общих пространствах и уникальную идентификацию в сети Anytype." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Участники получают более высокие лимиты на хранение и синхронизацию резервных копий, приглашения для нескольких гостей для совместной работы в общих пространствах и уникальную идентификацию в сети Anytype." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Üyeler daha yüksek yedekleme depolama ve senkronizasyon limitlerine, birden fazla misafirin paylaşılan alanlarda işbirliği yapması için davetlere ve Anytype Network'te benzersiz bir kimliğe sahiptir." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Üyeler daha yüksek yedekleme depolama ve senkronizasyon limitlerine, birden fazla misafirin paylaşılan alanlarda işbirliği yapması için davetlere ve Anytype Network'te benzersiz bir kimliğe sahiptir." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Members enjoy higher backup storage & sync limits, invitations for multiple guests to collaborate in shared spaces, and a unique identity on the Anytype Network." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Hội viên có nhiều bộ nhớ sao lưu & giới hạn đồng bộ, lời mời cho nhiều người cùng hợp tác trong các không gian chung hơn, và một danh tính độc nhất trên Mạng Anytype." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Hội viên có nhiều bộ nhớ sao lưu & giới hạn đồng bộ, lời mời cho nhiều người cùng hợp tác trong các không gian chung hơn, và một danh tính độc nhất trên Mạng Anytype." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "会员可以享受更高的备份存储和同步空间,可邀请多位访客在共享空间中进行协作,以及 Anytype 网络上独有的身份。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "会员可以享受更高的备份存储和同步空间,可邀请多位访客在共享空间中进行协作,以及 Anytype 网络上独有的身份。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "會員可享受更高的備份儲存空間和同步額度、邀請多位訪客在共享空間中協作,並在 Anytype 網絡上擁有獨一無二的身份。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "會員可享受更高的備份儲存空間和同步額度、邀請多位訪客在共享空間中協作,並在 Anytype 網絡上擁有獨一無二的身份。" } } } }, - "Membership.Banner.Subtitle3": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "مساهمتك تدعم فريقنا وتؤيد رؤيتنا لشبكة رقمية يملكها المستخدم، آمنة، وتعاونية." + "Membership.Banner.Subtitle3" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "مساهمتك تدعم فريقنا وتؤيد رؤيتنا لشبكة رقمية يملكها المستخدم، آمنة، وتعاونية." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ваш уклад падтрымлівае нашу каманду і пацвярджае наша бачанне бяспечнай і сумеснай лічбавай сеткі, якая належыць карыстальнікам." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ваш уклад падтрымлівае нашу каманду і пацвярджае наша бачанне бяспечнай і сумеснай лічбавай сеткі, якая належыць карыстальнікам." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Mit deinem Beitrag unterstützt du unser unabhängiges Team und befürwortest unsere Vision︎ eines nutzergeführten, sicheren und gemeinschaftlichen digitalen Netzwerks." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Mit deinem Beitrag unterstützt du unser unabhängiges Team und befürwortest unsere Vision︎ eines nutzergeführten, sicheren und gemeinschaftlichen digitalen Netzwerks." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tu contribución apoya a nuestro equipo y respalda nuestra visión de una red digital, segura y colaborativa que devuelve la propiedad a sus usuarios." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tu contribución apoya a nuestro equipo y respalda nuestra visión de una red digital, segura y colaborativa que devuelve la propiedad a sus usuarios." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Votre contribution soutient notre équipe indépendante et soutient notre vision d'un environnement numérique axé sur l'utilisateur, sécurisé et collaboratif." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Votre contribution soutient notre équipe indépendante et soutient notre vision d'un environnement numérique axé sur l'utilisateur, sécurisé et collaboratif." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kontribusi Anda mendukung tim kami dan mendukung visi kami atas jaringan digital yang sepenuhnya dimiliki pengguna, aman, dan kolaboratif." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kontribusi Anda mendukung tim kami dan mendukung visi kami atas jaringan digital yang sepenuhnya dimiliki pengguna, aman, dan kolaboratif." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Il tuo contributo sostiene il nostro team e avvalora la nostra visione di una rete digitale di proprietà degli utenti, sicura e collaborativa." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Il tuo contributo sostiene il nostro team e avvalora la nostra visione di una rete digitale di proprietà degli utenti, sicura e collaborativa." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "あなたの支援が私たちの活動を支え、ユーザー主導の安全で共に発展するデジタルネットワークという私たちの理念の実現を後押しします。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "あなたの支援が私たちの活動を支え、ユーザー主導の安全で共に発展するデジタルネットワークという私たちの理念の実現を後押しします。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Jouw bijdrage ondersteunt ons team en ondersteunt onze visie van een door gebruikers beheerd, veilig en samenwerkend digitaal netwerk." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jouw bijdrage ondersteunt ons team en ondersteunt onze visie van een door gebruikers beheerd, veilig en samenwerkend digitaal netwerk." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Twój wkład wspiera nasz zespół i potwierdza naszą wizję bezpiecznej i współpracującej sieci cyfrowej należącej do użytkownika." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Twój wkład wspiera nasz zespół i potwierdza naszą wizję bezpiecznej i współpracującej sieci cyfrowej należącej do użytkownika." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Sua contribuição apoia nossa equipe independente e reforça nossa visão de um ambiente digital voltado ao usuário, seguro e colaborativo." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Sua contribuição apoia nossa equipe independente e reforça nossa visão de um ambiente digital voltado ao usuário, seguro e colaborativo." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ваш вклад поддерживает нашу независимую команду и одобряет нашу перспективу, ориентированной на пользователя и безопасной совместной цифровой среды." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ваш вклад поддерживает нашу независимую команду и одобряет нашу перспективу, ориентированной на пользователя и безопасной совместной цифровой среды." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Katkınız ekibimizi destekliyor ve kullanıcıya ait güvenli ve işbirliğine dayalı bir dijital ağ vizyonumuzu onaylıyor." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Katkınız ekibimizi destekliyor ve kullanıcıya ait güvenli ve işbirliğine dayalı bir dijital ağ vizyonumuzu onaylıyor." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Your contribution supports our team and endorses our vision of a user-owned, secure, and collaborative digital network." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đóng góp của bạn hỗ trợ tổ đội chúng tôi và chứng thực cho tầm nhìn của chúng tôi về một mạng mà người dùng làm chủ, an toàn và cộng tác." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đóng góp của bạn hỗ trợ tổ đội chúng tôi và chứng thực cho tầm nhìn của chúng tôi về một mạng mà người dùng làm chủ, an toàn và cộng tác." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您的贡献支持我们这个团队并支持我们“由用户拥有的、安全和协作的数字环境”的愿景。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您的贡献支持我们这个团队并支持我们“由用户拥有的、安全和协作的数字环境”的愿景。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您的貢獻支持我們的團隊,並認可我們對於用戶擁有、安全以及協作的數位網路願景。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您的貢獻支持我們的團隊,並認可我們對於用戶擁有、安全以及協作的數位網路願景。" } } } }, - "Membership.Banner.Subtitle4": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "قيمة شبكتنا تتجاوز مجموع أجزائها. عضويتك تدعم البنية التحتية لنموها التي تدعم هذه الشبكة." + "Membership.Banner.Subtitle4" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "قيمة شبكتنا تتجاوز مجموع أجزائها. عضويتك تدعم البنية التحتية لنموها التي تدعم هذه الشبكة." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Кошт нашай сеткі перавышае суму яе складнікаў. Ваша членства падтрымлівае інфраструктуру для яе развіцця, якая ляжыць у аснове гэтай сеткі." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Кошт нашай сеткі перавышае суму яе складнікаў. Ваша членства падтрымлівае інфраструктуру для яе развіцця, якая ляжыць у аснове гэтай сеткі." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Der Wert unseres Netzwerks ist größer als die Summe seiner Teile. Durch deine Mitgliedschaft wird die Infrastruktur für sein Wachstum aufrechterhalten, die dieses Netzwerk trägt." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Der Wert unseres Netzwerks ist größer als die Summe seiner Teile. Durch deine Mitgliedschaft wird die Infrastruktur für sein Wachstum aufrechterhalten, die dieses Netzwerk trägt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "El valor de nuestra red excede la suma de sus partes. Tu suscripción mantiene la infraestructura que sustenta esta red y le permite crecer." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "El valor de nuestra red excede la suma de sus partes. Tu suscripción mantiene la infraestructura que sustenta esta red y le permite crecer." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "La valeur de notre réseau dépasse la somme de ses participants. Votre adhésion soutient l'infrastructure pour sa croissance qui sous-tend ce réseau." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "La valeur de notre réseau dépasse la somme de ses participants. Votre adhésion soutient l'infrastructure pour sa croissance qui sous-tend ce réseau." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Nilai jaringan kami melampaui jumlah bagian-bagiannya. Keanggotaan Anda menjaga infrastruktur untuk terus berkembang dan menopang jaringan ini." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Nilai jaringan kami melampaui jumlah bagian-bagiannya. Keanggotaan Anda menjaga infrastruktur untuk terus berkembang dan menopang jaringan ini." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Il valore della nostra rete supera la somma delle sue parti. La tua iscrizione sostiene l'infrastruttura per la sua crescita, che è alla base di questa rete." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Il valore della nostra rete supera la somma delle sue parti. La tua iscrizione sostiene l'infrastruttura per la sua crescita, che è alla base di questa rete." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "一人ひとりのつながりが、個々の力だけでは成し得ない価値を生み出します。あなたのメンバーシップが、私たちのネットワークの持続的な成長を支える基盤となります。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "一人ひとりのつながりが、個々の力だけでは成し得ない価値を生み出します。あなたのメンバーシップが、私たちのネットワークの持続的な成長を支える基盤となります。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "De waarde van ons netwerk overschrijdt de som der delen. Je lidmaatschap houdt de infrastructuur in stand voor de groei die aan dit netwerk ten grondslag ligt." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "De waarde van ons netwerk overschrijdt de som der delen. Je lidmaatschap houdt de infrastructuur in stand voor de groei die aan dit netwerk ten grondslag ligt." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wartość naszej sieci przewyższa sumę jej części. Twoje członkostwo utrzymuje infrastrukturę dla jej rozwoju, która stanowi podstawę tej sieci." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wartość naszej sieci przewyższa sumę jej części. Twoje członkostwo utrzymuje infrastrukturę dla jej rozwoju, która stanowi podstawę tej sieci." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "O valor da nossa rede excede a soma de suas partes. Sua participação como membro mantém a infraestrutura para seu crescimento, que está na base dessa rede." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "O valor da nossa rede excede a soma de suas partes. Sua participação como membro mantém a infraestrutura para seu crescimento, que está na base dessa rede." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ценность нашей сети превышает сумму её частей. Ваше членство поддерживает инфраструктуру для её роста, которая лежит в основе этой сети." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ценность нашей сети превышает сумму её частей. Ваше членство поддерживает инфраструктуру для её роста, которая лежит в основе этой сети." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Ağımızın değeri parçalarının toplamından daha fazladır. Üyeliğiniz bu ağın temelini oluşturan büyüme altyapısını sürdürmektedir." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ağımızın değeri parçalarının toplamından daha fazladır. Üyeliğiniz bu ağın temelini oluşturan büyüme altyapısını sürdürmektedir." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Our network's value exceeds the sum of its parts. Your membership sustains the infrastructure for its growth which underpins this network." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Giá trị của mạng chúng tôi lớn hơn tổng các thành phần của nó. Tư cách hội viên của bạn giữ vững cơ sở cho sự phát triển của nó, chống trụ cho mạng lưới này." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Giá trị của mạng chúng tôi lớn hơn tổng các thành phần của nó. Tư cách hội viên của bạn giữ vững cơ sở cho sự phát triển của nó, chống trụ cho mạng lưới này." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "我们的网络的价值超过了其各部分的总和。您的会员资格维持了用于支撑这个网络增长的基础设施。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "我们的网络的价值超过了其各部分的总和。您的会员资格维持了用于支撑这个网络增长的基础设施。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "我們網絡的價值超過其各部分的總和。 作為會員,您的加入為網絡的發展奠定了基礎。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "我們網絡的價值超過其各部分的總和。 作為會員,您的加入為網絡的發展奠定了基礎。" } } } }, - "Membership.Banner.Title1": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Build the Vision Together" + "Membership.Banner.Title1" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Build the Vision Together" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Стварайце бачанне разам" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Стварайце бачанне разам" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Gemeinsam die Vision erbauen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Gemeinsam die Vision erbauen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Build the Vision Together" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Build the Vision Together" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Construyamos esta visión juntos" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Construyamos esta visión juntos" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Build the Vision Together" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Build the Vision Together" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Build the Vision Together" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Build the Vision Together" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Construire la Vision ensemble" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Construire la Vision ensemble" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Membangun Visi Bersama" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Membangun Visi Bersama" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Costruire insieme la visione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Costruire insieme la visione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "未来を共に創造する" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "未来を共に創造する" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Build the Vision Together" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Build the Vision Together" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Build the Vision Together" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Build the Vision Together" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bouw de visie samen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bouw de visie samen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Build the Vision Together" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Build the Vision Together" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zbuduj wizję razem" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zbuduj wizję razem" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Criar a Visão em conjunto" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Criar a Visão em conjunto" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Build the Vision Together" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Build the Vision Together" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Постройте видение вместе" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Постройте видение вместе" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Vizyonu Birlikte Oluşturun" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vizyonu Birlikte Oluşturun" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Build the Vision Together" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Build the Vision Together" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Xây dựng tầm nhìn cùng nhau" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Xây dựng tầm nhìn cùng nhau" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "一起构建愿景" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "一起构建愿景" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "一起創建願景" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "一起創建願景" } } } }, - "Membership.Banner.Title2": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "فتح مزايا الأعضاء" + "Membership.Banner.Title2" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "فتح مزايا الأعضاء" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Разблакіруйце Перавагі для Ўдзельнікаў" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Разблакіруйце Перавагі для Ўдзельнікаў" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Mitgliedsvorteile freischalten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Mitgliedsvorteile freischalten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Unlock Member Benefits" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unlock Member Benefits" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Obtén acceso a ventajas de suscriptor" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Obtén acceso a ventajas de suscriptor" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Unlock Member Benefits" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlock Member Benefits" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Unlock Member Benefits" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlock Member Benefits" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Débloquer les Avantages des Membres" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Débloquer les Avantages des Membres" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Dapatkan Keuntungan sebagai Anggota" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Dapatkan Keuntungan sebagai Anggota" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sblocca i vantaggi per i membri" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sblocca i vantaggi per i membri" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メンバーシップ特典" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メンバーシップ特典" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "멤버 혜택 잠금 해제" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "멤버 혜택 잠금 해제" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Unlock Member Benefits" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlock Member Benefits" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ontgrendel ledenvoordelen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ontgrendel ledenvoordelen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Unlock Member Benefits" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlock Member Benefits" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Odblokuj korzyści dla członków" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Odblokuj korzyści dla członków" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Desbloquear benefícios para membros" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Desbloquear benefícios para membros" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Unlock Member Benefits" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlock Member Benefits" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Разблокируйте преимущества для участников" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Разблокируйте преимущества для участников" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Üye Avantajlarının Kilidini Açın" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Üye Avantajlarının Kilidini Açın" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Unlock Member Benefits" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlock Member Benefits" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Mở khoá những đặc quyền hội viên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Mở khoá những đặc quyền hội viên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "解锁会员福利" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "解锁会员福利" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "解鎖會員權益" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "解鎖會員權益" } } } }, - "Membership.Banner.Title3": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "دعم الاستقلال الرقمي" + "Membership.Banner.Title3" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "دعم الاستقلال الرقمي" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Падтрымка Лічбавай Незалежнасці" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Падтрымка Лічбавай Незалежнасці" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Digitale Unabhängigkeit unterstützen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Digitale Unabhängigkeit unterstützen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Support Digital Independence" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Support Digital Independence" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Apoya la independencia digital" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Apoya la independencia digital" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Support Digital Independence" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Support Digital Independence" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Support Digital Independence" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Support Digital Independence" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Soutenir l'indépendance numérique" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Soutenir l'indépendance numérique" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Dukung Kemerdekaan Digital" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Dukung Kemerdekaan Digital" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sostenere l'indipendenza digitale" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sostenere l'indipendenza digitale" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "デジタルの自由を共に守る" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "デジタルの自由を共に守る" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Support Digital Independence" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Support Digital Independence" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Support Digital Independence" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Support Digital Independence" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ondersteun digitale onafhankelijkheid " + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ondersteun digitale onafhankelijkheid " } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Support Digital Independence" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Support Digital Independence" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wspieraj niezależność cyfrową" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wspieraj niezależność cyfrową" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Apoie a Independência Digital" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Apoie a Independência Digital" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Support Digital Independence" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Support Digital Independence" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Поддержка Цифровой Независимости" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Поддержка Цифровой Независимости" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Dijital Bağımsızlığı Destekleyin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Dijital Bağımsızlığı Destekleyin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Support Digital Independence" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Support Digital Independence" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Hỗ trợ sự độc lập số" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Hỗ trợ sự độc lập số" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "支持数字独立性" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "支持数字独立性" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "支持數位獨立" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "支持數位獨立" } } } }, - "Membership.Banner.Title4": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الاستثمار في الاتصال" + "Membership.Banner.Title4" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الاستثمار في الاتصال" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Інвесціруйце ў Падключэнне" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Інвесціруйце ў Падключэнне" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "In Konnektivität investieren" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "In Konnektivität investieren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invest in Connectivity" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invest in Connectivity" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Invierte en conectividad" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Invierte en conectividad" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Invest in Connectivity" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Invest in Connectivity" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Invest in Connectivity" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Invest in Connectivity" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Investir dans la connectivité" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Investir dans la connectivité" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Berinvestasilah pada Konektivitas" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Berinvestasilah pada Konektivitas" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Investi nella connettività" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Investi nella connettività" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "つながりに、もっと力を" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "つながりに、もっと力を" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Invest in Connectivity" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Invest in Connectivity" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Invest in Connectivity" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Invest in Connectivity" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Investeer in verbinding" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Investeer in verbinding" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Invest in Connectivity" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Invest in Connectivity" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zainwestuj w łączność" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zainwestuj w łączność" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Investir em Conectividade" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Investir em Conectividade" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Invest in Connectivity" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Invest in Connectivity" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Инвестировать в Соединение" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Инвестировать в Соединение" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bağlanabilirliğe yatırım yapın" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bağlanabilirliğe yatırım yapın" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Invest in Connectivity" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Invest in Connectivity" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đầu tư vào sự kết nối" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đầu tư vào sự kết nối" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "对连接的投资" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "对连接的投资" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "為互聯互通投資" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "為互聯互通投資" } } } }, - "Membership.Email.Body": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." + "Membership.Email.Body" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Добры дзень, каманда Anytype! Я хацеў бы пашырыць маё бягучае членства на дадатковыя опцыі (калі ласка, абярыце опцыю):- Дадатковае выдаленае сховішча\n- Больш рэдактараў прасторы\n- Дадатковыя агульныя прасторы\n\nКанкрэтна,\nКалі ласка, укажыце тут канкрэтныя дэталі вашых патрэбаў." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Добры дзень, каманда Anytype! Я хацеў бы пашырыць маё бягучае членства на дадатковыя опцыі (калі ласка, абярыце опцыю):- Дадатковае выдаленае сховішча\n- Больш рэдактараў прасторы\n- Дадатковыя агульныя прасторы\n\nКанкрэтна,\nКалі ласка, укажыце тут канкрэтныя дэталі вашых патрэбаў." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Hallo Anytype Team! Ich möchte mein aktuelles Abonnement erweitern um (bitte eine Option wählen):\n- Extra Remotespeicher\n- weitere Space Bearbeiter\n- zusätzliche geteilte Spaces\nBitte gebe hier gegebenenfalls genauere Informationen zu deinen Wünschen an." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Hallo Anytype Team! Ich möchte mein aktuelles Abonnement erweitern um (bitte eine Option wählen):\n- Extra Remotespeicher\n- weitere Space Bearbeiter\n- zusätzliche geteilte Spaces\nBitte gebe hier gegebenenfalls genauere Informationen zu deinen Wünschen an." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¡Hola, equipo de Anytype! Me gustaría ampliar mi suscripción actual de la siguiente forma (elige una opción):\n- Más almacenamiento remoto.\n- Más editores de espacios.\n- Más espacios compartidos.\nEn concreto,\n(Escribe aquí tus necesidades específicas)." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¡Hola, equipo de Anytype! Me gustaría ampliar mi suscripción actual de la siguiente forma (elige una opción):\n- Más almacenamiento remoto.\n- Más editores de espacios.\n- Más espacios compartidos.\nEn concreto,\n(Escribe aquí tus necesidades específicas)." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Salut équipe Anytype ! Je voudrais étendre mon abonnement actuel pour plus de (choisissez une option) :\n- Plus de stockage distant\n- Plus d'éditeurs d'espaces\n- Plus d'espaces partagés\nPrécisions,\nMerci de fournir ici des détails plus précis de vos besoins." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Salut équipe Anytype ! Je voudrais étendre mon abonnement actuel pour plus de (choisissez une option) :\n- Plus de stockage distant\n- Plus d'éditeurs d'espaces\n- Plus d'espaces partagés\nPrécisions,\nMerci de fournir ici des détails plus précis de vos besoins." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Halo tim Anytype! Saya ingin memperpanjang masa berlangganan saya (silakan pilih salah satu opsi):\n- Ekstra penyimpanan daring\n- Lebih banyak editor\n- Tambahan kapasitas ruang bersama\nSecara khusus,\nHarap berikan detail spesifik kebutuhan Anda di sini." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Halo tim Anytype! Saya ingin memperpanjang masa berlangganan saya (silakan pilih salah satu opsi):\n- Ekstra penyimpanan daring\n- Lebih banyak editor\n- Tambahan kapasitas ruang bersama\nSecara khusus,\nHarap berikan detail spesifik kebutuhan Anda di sini." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ciao team di Anytype! Vorrei estendere la mia attuale adesione per ulteriori informazioni (si prega di scegliere un'opzione):\n- Archiviazione remota\n- Più editor di spazio\n- Ulteriori spazi condivisi\nSpecificamente,\nSi prega di fornire dettagli specifici delle vostre esigenze qui." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ciao team di Anytype! Vorrei estendere la mia attuale adesione per ulteriori informazioni (si prega di scegliere un'opzione):\n- Archiviazione remota\n- Più editor di spazio\n- Ulteriori spazi condivisi\nSpecificamente,\nSi prega di fornire dettagli specifici delle vostre esigenze qui." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Anytypeチーム担当者の方へ\n\n現在利用しておりますAnytypeのメンバーシップについて、変更したくご連絡いたしました。\n(下記のオプションの中から必要なものをお選びいただき、詳細をご記入ください)\n\n・リモートストレージの追加\n・スペース編集者の追加\n・共有スペース数の追加\n\n具体的にご希望の内容がございましたら、こちらにご記載ください。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytypeチーム担当者の方へ\n\n現在利用しておりますAnytypeのメンバーシップについて、変更したくご連絡いたしました。\n(下記のオプションの中から必要なものをお選びいただき、詳細をご記入ください)\n\n・リモートストレージの追加\n・スペース編集者の追加\n・共有スペース数の追加\n\n具体的にご希望の内容がございましたら、こちらにご記載ください。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Halllo Anytype team! Ik zou graag mijn huidige lidmaatschap willen uitbreiden voor meer (kies alsjeblieft een optie):\n- Extra opslag\n- Meer ruimte bewerkers\n- Aanvullende gedeelde ruimtes\n\nSpecifiek,\nGeef alsjeblieft specifieke details van jouw wensen hier aan. " + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Halllo Anytype team! Ik zou graag mijn huidige lidmaatschap willen uitbreiden voor meer (kies alsjeblieft een optie):\n- Extra opslag\n- Meer ruimte bewerkers\n- Aanvullende gedeelde ruimtes\n\nSpecifiek,\nGeef alsjeblieft specifieke details van jouw wensen hier aan. " } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Cześć pracownicy Anytype! Chciałbym rozszerzyć swoją obecną subskrypcję na więcej (wybierz poniższe opcje):\n- Więcej zdalnej pamięci\n- Więcej edytorów przestrzeni\n- Dodatkowe dzielone przestrzenie\nKonkretniej,\nProszę umieść tutaj szczegóły swoich potrzeb." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Cześć pracownicy Anytype! Chciałbym rozszerzyć swoją obecną subskrypcję na więcej (wybierz poniższe opcje):\n- Więcej zdalnej pamięci\n- Więcej edytorów przestrzeni\n- Dodatkowe dzielone przestrzenie\nKonkretniej,\nProszę umieść tutaj szczegóły swoich potrzeb." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Olá Equipe Anytype! Eu gostaria de estender minha atual assinatura para (por favor escolha uma opção):\n- Mais armazenamento remoto\n- Mais editores de espaço\n- Mais espaços compartilhados\nEspecificamente,\nforneça detalhes específicos das suas necessidades aqui." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Olá Equipe Anytype! Eu gostaria de estender minha atual assinatura para (por favor escolha uma opção):\n- Mais armazenamento remoto\n- Mais editores de espaço\n- Mais espaços compartilhados\nEspecificamente,\nforneça detalhes específicos das suas necessidades aqui." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Здравствуйте, команда Anytype!\n\nЯ хотел(а) бы продлить свое текущее членство (пожалуйста, выберите опцию):\n- Дополнительное удаленное хранилище\n- Больше редакторов пространства\n- Дополнительные общие пространства\n\nОсобенно хотелось бы,\nПожалуйста, укажите подробности ваших потребностей здесь." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Здравствуйте, команда Anytype!\n\nЯ хотел(а) бы продлить свое текущее членство (пожалуйста, выберите опцию):\n- Дополнительное удаленное хранилище\n- Больше редакторов пространства\n- Дополнительные общие пространства\n\nОсобенно хотелось бы,\nПожалуйста, укажите подробности ваших потребностей здесь." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Merhaba Anytype ekibi! Mevcut üyeliğimi daha fazlası için uzatmak istiyorum (lütfen bir seçenek seçin): \n- Ekstra uzak depolama alanı \n- Daha fazla alan düzenleyicisi \n- Ek paylaşılan alanlar \nÖzellikle, \nLütfen ihtiyaçlarınızın belirli ayrıntılarını burada belirtin." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Merhaba Anytype ekibi! Mevcut üyeliğimi daha fazlası için uzatmak istiyorum (lütfen bir seçenek seçin): \n- Ekstra uzak depolama alanı \n- Daha fazla alan düzenleyicisi \n- Ek paylaşılan alanlar \nÖzellikle, \nLütfen ihtiyaçlarınızın belirli ayrıntılarını burada belirtin." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Hello Anytype team! I would like to extend my current membership for more (please choose an option):\n- Extra remote storage\n- More space editors\n- Additional shared spaces\nSpecifically,\nPlease provide specific details of your needs here." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您好 Anytype 团队!我想要延长我当前的会员资格(请选择一个选项):\n- 额外远程存储\n- 更多空间编辑者\n- 额外的共享空间\n具体来说,\n请在这里提供您需要的具体细节。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您好 Anytype 团队!我想要延长我当前的会员资格(请选择一个选项):\n- 额外远程存储\n- 更多空间编辑者\n- 额外的共享空间\n具体来说,\n请在这里提供您需要的具体细节。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "你好,Anytype 團隊! 我想延長我目前的會員資格以獲得更多(請選擇一個選項):\n - 額外的遠端儲存\n - 更多空間編輯者\n - 額外的共享空間\n 具體來說,\n 請在此提供您需求的具體細節。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "你好,Anytype 團隊! 我想延長我目前的會員資格以獲得更多(請選擇一個選項):\n - 額外的遠端儲存\n - 更多空間編輯者\n - 額外的共享空間\n 具體來說,\n 請在此提供您需求的具體細節。" } } } }, - "Membership.EmailForm.Subtitle": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لا يرتبط بحسابك بأي شكل من الأشكال." + "Membership.EmailForm.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لا يرتبط بحسابك بأي شكل من الأشكال." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ён ніякім чынам не звязаны з вашым уліковым запісам." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ён ніякім чынам не звязаны з вашым уліковым запісам." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Sie ist in keiner Weise mit deinem Konto verknüpft." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Sie ist in keiner Weise mit deinem Konto verknüpft." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "It is not linked to your account in any way." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "It is not linked to your account in any way." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No está vinculado a tu cuenta de ningún modo." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No está vinculado a tu cuenta de ningún modo." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "It is not linked to your account in any way." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "It is not linked to your account in any way." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "It is not linked to your account in any way." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "It is not linked to your account in any way." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Il n'est lié d'aucune manière à votre coffre-fort." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Il n'est lié d'aucune manière à votre coffre-fort." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ini tidak ditautkan ke akun Anda dengan cara apa pun." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ini tidak ditautkan ke akun Anda dengan cara apa pun." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non è collegato in alcun modo al tuo account" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non è collegato in alcun modo al tuo account" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "あなたの保管庫と結びつけられることは一切ありません。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "あなたの保管庫と結びつけられることは一切ありません。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "It is not linked to your account in any way." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "It is not linked to your account in any way." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "It is not linked to your account in any way." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "It is not linked to your account in any way." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Het is op geen enkele manier gekoppeld met je account." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Het is op geen enkele manier gekoppeld met je account." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "It is not linked to your account in any way." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "It is not linked to your account in any way." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie jest to w żaden sposób powiązane z Twoim kontem." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie jest to w żaden sposób powiązane z Twoim kontem." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Não está vinculado ao seu cofre de forma alguma." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Não está vinculado ao seu cofre de forma alguma." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "It is not linked to your account in any way." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "It is not linked to your account in any way." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Он никак не связан с вашим аккаунтом." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Он никак не связан с вашим аккаунтом." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Hesabınızla hiçbir şekilde bağlantılı değildir." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Hesabınızla hiçbir şekilde bağlantılı değildir." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "It is not linked to your account in any way." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "It is not linked to your account in any way." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Nó không hề được liên kết với tài khoản của bạn theo bất kỳ cách gì." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Nó không hề được liên kết với tài khoản của bạn theo bất kỳ cách gì." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "它没有以任何方式链接到您的帐户。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "它没有以任何方式链接到您的帐户。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "這與您的帳戶沒有任何關聯。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "這與您的帳戶沒有任何關聯。" } } } }, - "Membership.EmailForm.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "احصل على التحديثات واستمتع بالمزايا المجانية!" + "Membership.EmailForm.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "احصل على التحديثات واستمتع بالمزايا المجانية!" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Атрымлівайце абнаўленні і карыстайцеся бясплатнымі бонусамі!" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Атрымлівайце абнаўленні і карыстайцеся бясплатнымі бонусамі!" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Erhalte Aktualisierungen und genieße kostenlose Vergünstigungen!" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Erhalte Aktualisierungen und genieße kostenlose Vergünstigungen!" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Get updates and enjoy free perks!" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Get updates and enjoy free perks!" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¡Obtén actualizaciones y ventajas gratuitas!" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¡Obtén actualizaciones y ventajas gratuitas!" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Get updates and enjoy free perks!" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Get updates and enjoy free perks!" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Get updates and enjoy free perks!" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Get updates and enjoy free perks!" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Recevez les actualités et profitez d'avantages gratuits !" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Recevez les actualités et profitez d'avantages gratuits !" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Dapatkan pembaruan dan nikmati beragam keuntungan gratis!" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Dapatkan pembaruan dan nikmati beragam keuntungan gratis!" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ricevi aggiornamenti e goditi vantaggi gratuiti!" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ricevi aggiornamenti e goditi vantaggi gratuiti!" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "最新情報や無料特典を受け取りましょう!" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "最新情報や無料特典を受け取りましょう!" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Get updates and enjoy free perks!" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Get updates and enjoy free perks!" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Get updates and enjoy free perks!" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Get updates and enjoy free perks!" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ontvang updates en geniet van gratis voordelen!" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ontvang updates en geniet van gratis voordelen!" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Get updates and enjoy free perks!" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Get updates and enjoy free perks!" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Pobierz aktualizacje i ciesz się darmowymi korzyściami!" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Pobierz aktualizacje i ciesz się darmowymi korzyściami!" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Receba atualizações e aproveite vantagens gratuitas!" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Receba atualizações e aproveite vantagens gratuitas!" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Get updates and enjoy free perks!" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Get updates and enjoy free perks!" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Получайте обновления и пользуйтесь бесплатными преимуществами!" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Получайте обновления и пользуйтесь бесплатными преимуществами!" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Güncellemeleri alın ve ücretsiz avantajlardan yararlanın!" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Güncellemeleri alın ve ücretsiz avantajlardan yararlanın!" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Get updates and enjoy free perks!" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Get updates and enjoy free perks!" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Nhận cập nhật và tận hưởng những đặc quyền miễn phí!" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Nhận cập nhật và tận hưởng những đặc quyền miễn phí!" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "获得升级并享受免费优惠!" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "获得升级并享受免费优惠!" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "獲得升級並享有免費福利!" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "獲得升級並享有免費福利!" } } } }, - "Membership.EmailValidation": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "أدخل الرمز المرسل إلى بريدك الإلكتروني" + "Membership.EmailValidation" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "أدخل الرمز المرسل إلى بريدك الإلكتروني" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Увядзіце код, адпраўлены на вашу электронную пошту" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Увядзіце код, адпраўлены на вашу электронную пошту" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Gib den an deine E-Mail-Adresse gesendeten Code ein" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Gib den an deine E-Mail-Adresse gesendeten Code ein" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Enter the code sent to your email" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter the code sent to your email" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Introduce el código enviado a tu buzón de correo electrónico" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Introduce el código enviado a tu buzón de correo electrónico" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Enter the code sent to your email" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Enter the code sent to your email" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Enter the code sent to your email" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Enter the code sent to your email" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Entrez le code envoyé à votre adresse e-mail" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Entrez le code envoyé à votre adresse e-mail" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Masukkan kode yang dikirim ke surelmu" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Masukkan kode yang dikirim ke surelmu" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Inserisci il codice inviato alla tua email" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Inserisci il codice inviato alla tua email" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メールアドレスに送信されたコードを入力" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メールアドレスに送信されたコードを入力" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Enter the code sent to your email" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Enter the code sent to your email" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Skriv inn koden som er sendt til deg på e-post" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Skriv inn koden som er sendt til deg på e-post" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voer de code in die naar jouw e-mailadres is verstuurd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voer de code in die naar jouw e-mailadres is verstuurd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Enter the code sent to your email" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Enter the code sent to your email" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wpisz kod wysłany na Twój adres e-mail" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wpisz kod wysłany na Twój adres e-mail" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Digite o código enviado para seu email" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Digite o código enviado para seu email" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Enter the code sent to your email" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Enter the code sent to your email" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Введите код, отправленный на вашу электронную почту" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Введите код, отправленный на вашу электронную почту" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "E-posta adresinize gönderilen kodu girin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "E-posta adresinize gönderilen kodu girin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Enter the code sent to your email" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Enter the code sent to your email" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Nhập mã được gửi về email của bạn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Nhập mã được gửi về email của bạn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "输入发送到您邮箱的代码" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "输入发送到您邮箱的代码" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "請輸入發送到您 email 的兌換代碼" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "請輸入發送到您 email 的兌換代碼" } } } }, - "Membership.Feature.LocalName": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Local, non-unique name" + "Membership.Feature.LocalName" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Local, non-unique name" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Лакальнае, не ўнікальнае імя" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Лакальнае, не ўнікальнае імя" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Lokaler, nicht eindeutiger Name" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Lokaler, nicht eindeutiger Name" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Local, non-unique name" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Local, non-unique name" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Nombre local, no único" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Nombre local, no único" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Local, non-unique name" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Local, non-unique name" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Local, non-unique name" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Local, non-unique name" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Nom local, non unique" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nom local, non unique" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Nama lokal yang tidak unik" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Nama lokal yang tidak unik" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nome locale, non unico" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nome locale, non unico" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ローカル名" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ローカル名" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Local, non-unique name" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Local, non-unique name" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Local, non-unique name" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Local, non-unique name" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Locale, niet-unieke naam" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Locale, niet-unieke naam" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Local, non-unique name" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Local, non-unique name" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Lokalna, nieunikalna nazwa" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Lokalna, nieunikalna nazwa" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Nome local, não único" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Nome local, não único" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Local, non-unique name" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Local, non-unique name" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Локальное, неуникальное имя" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Локальное, неуникальное имя" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yerel, benzersiz olmayan ad" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yerel, benzersiz olmayan ad" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Local, non-unique name" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Local, non-unique name" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Local, non-unique name" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Local, non-unique name" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "本地的,不唯一的名称" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "本地的,不唯一的名称" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "在地的、不獨特的名稱" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "在地的、不獨特的名稱" } } } }, - "Membership.Feature.SharedSpaces": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "Membership.Feature.SharedSpaces" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Up to %@ Shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Up to %@ Shared spaces" } }, - "two": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "two" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } }, - "zero": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "zero" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } } } } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "Да %@ агульных прастор" + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Да %@ агульных прастор" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "Да %@ агульных прастор" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Да %@ агульных прастор" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Да %@ агульных прастор" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Да %@ агульных прастор" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Да %@ агульных прастор" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Да %@ агульных прастор" } } } } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Bis zu %@ geteilte Spaces" + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Bis zu %@ geteilte Spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Bis zu %@ geteilte Spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Bis zu %@ geteilte Spaces" } } } } }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "Up to %d Shared space" + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "Up to %d Shared space" } }, - "other": { - "stringUnit": { - "state": "translated", - "value": "Up to %d Shared spaces" + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "Up to %d Shared spaces" } } } } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Hasta %@ espacios compartidos" + "es" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Hasta %@ espacios compartidos" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Hasta %@ espacios compartidos" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Hasta %@ espacios compartidos" } } } } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Up to %@ Shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Up to %@ Shared spaces" } } } } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Up to %@ Shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Up to %@ Shared spaces" } } } } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Jusqu'à %@ Espaces partagés" + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Jusqu'à %@ Espaces partagés" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Jusqu'à %@ Espaces partagés" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Jusqu'à %@ Espaces partagés" } } } } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "Hingga %@ Ruang terbagi" + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Hingga %@ Ruang terbagi" } } } } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Fino a %@ Spazi condivisi" + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Fino a %@ Spazi condivisi" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Fino a %@ Spazi condivisi" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Fino a %@ Spazi condivisi" } } } } }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "最大%@の共有スペース" + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "最大%@の共有スペース" } } } } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "Up to %@ Shared spaces" + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Up to %@ Shared spaces" } } } } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Up to %@ Shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Up to %@ Shared spaces" } } } } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Tot %@ Gedeelde ruimten" + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Tot %@ Gedeelde ruimten" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Tot %@ Gedeelde ruimten" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Tot %@ Gedeelde ruimten" } } } } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "or" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Up to %@ Shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Up to %@ Shared spaces" } } } } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "Do %@ współdzielonych obszarów" + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Do %@ współdzielonych obszarów" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "Do %@ współdzielonych obszarów" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Do %@ współdzielonych obszarów" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Do %@ współdzielonych obszarów" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Do %@ współdzielonych obszarów" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Do %@ współdzielonych obszarów" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Do %@ współdzielonych obszarów" } } } } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Até %@ Espaços compartilhados" + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Até %@ Espaços compartilhados" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Até %@ Espaços compartilhados" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Até %@ Espaços compartilhados" } } } } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Up to %@ Shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Up to %@ Shared spaces" } } } } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "До %@ общих пространств" + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "До %@ общих пространств" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "До %@ общих пространств" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "До %@ общих пространств" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "До %@ общих пространств" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "До %@ общих пространств" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "До %@ общих пространств" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "До %@ общих пространств" } } } } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "En fazla %@ paylaşılan alan" + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "En fazla %@ paylaşılan alan" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "En fazla %@ paylaşılan alan" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "En fazla %@ paylaşılan alan" } } } } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Up to %@ Shared spaces" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Up to %@ Shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Up to %@ Shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Up to %@ Shared spaces" } } } } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "Up to %@ Shared spaces" + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Up to %@ Shared spaces" } } } } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "最多 %@ 个共享空间" + "zh-Hans" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "最多 %@ 个共享空间" } } } } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "最多 %@ 個共享空間" + "zh-Hant" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "最多 %@ 個共享空間" } } } @@ -20473,472 +20473,472 @@ } } }, - "Membership.Feature.SpaceWriters": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "Membership.Feature.SpaceWriters" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Editors per shared space" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Editors per shared space" } }, - "two": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "two" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } }, - "zero": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "zero" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } } } } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Рэдактараў на агульную прастору" + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Рэдактараў на агульную прастору" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Рэдактараў на агульную прастору" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Рэдактараў на агульную прастору" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Рэдактараў на агульную прастору" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Рэдактараў на агульную прастору" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Рэдактараў на агульную прастору" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Рэдактараў на агульную прастору" } } } } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Bearbeiter pro geteiltem Space" + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Bearbeiter pro geteiltem Space" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Bearbeiter pro geteiltem Space" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Bearbeiter pro geteiltem Space" } } } } }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "%d Editor per shared space" + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d Editor per shared space" } }, - "other": { - "stringUnit": { - "state": "translated", - "value": "%d Editors per shared space" + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d Editors per shared space" } } } } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ editores por cada espacio compartido" + "es" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ editores por cada espacio compartido" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ editores por cada espacio compartido" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ editores por cada espacio compartido" } } } } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Editors per shared space" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Editors per shared space" } } } } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Editors per shared space" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Editors per shared space" } } } } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Éditeurs par espace partagé" + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Éditeurs par espace partagé" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Éditeurs par espace partagé" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Éditeurs par espace partagé" } } } } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Penyunting per ruang terbagi" + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Penyunting per ruang terbagi" } } } } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editor per spazio condiviso" + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editor per spazio condiviso" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Editor per spazio condiviso" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Editor per spazio condiviso" } } } } }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@名まで編集可能" + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@名まで編集可能" } } } } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Editors per shared space" + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Editors per shared space" } } } } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Editors per shared space" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Editors per shared space" } } } } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Bewerkers per gedeelde ruimte" + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Bewerkers per gedeelde ruimte" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Bewerkers per gedeelde ruimte" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Bewerkers per gedeelde ruimte" } } } } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "or" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Editors per shared space" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Editors per shared space" } } } } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Edytorów na wspólny obszar" + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Edytorów na wspólny obszar" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Edytorów na wspólny obszar" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Edytorów na wspólny obszar" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Edytorów na wspólny obszar" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Edytorów na wspólny obszar" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Edytorów na wspólny obszar" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Edytorów na wspólny obszar" } } } } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editores por espaço compartilhado" + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editores por espaço compartilhado" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Editores por espaço compartilhado" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Editores por espaço compartilhado" } } } } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Editors per shared space" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Editors per shared space" } } } } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Редакторов на общее пространство" + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Редакторов на общее пространство" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Редакторов на общее пространство" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Редакторов на общее пространство" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Редакторов на общее пространство" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Редакторов на общее пространство" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Редакторов на общее пространство" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Редакторов на общее пространство" } } } } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Paylaşılan alan başına %@ editör" + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Paylaşılan alan başına %@ editör" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Paylaşılan alan başına %@ editör" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Paylaşılan alan başına %@ editör" } } } } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Editors per shared space" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Editors per shared space" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Editors per shared space" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Editors per shared space" } } } } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Editors per shared space" + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Editors per shared space" } } } } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "每个共享空间 %@ 个编辑者" + "zh-Hans" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "每个共享空间 %@ 个编辑者" } } } } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "每個共享空間 %@ 個編輯者" + "zh-Hant" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "每個共享空間 %@ 個編輯者" } } } @@ -20946,919 +20946,919 @@ } } }, - "Membership.Feature.StorageGB": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "%@ GB of backup & sync space on the Anytype network" + "Membership.Feature.StorageGB" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB of backup & sync space on the Anytype network" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "%@ ГБ прасторы для рэзервовага капіравання і сінхранізацыі ў сетцы Anytype" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ ГБ прасторы для рэзервовага капіравання і сінхранізацыі ў сетцы Anytype" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "%@ GB Speicherplatz für Datensicherung und Synchronisation im Anytype-Netzwerk" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB Speicherplatz für Datensicherung und Synchronisation im Anytype-Netzwerk" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ GB of backup & sync space on the Anytype network" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ GB of backup & sync space on the Anytype network" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "%@ GB de espacio de respaldo y sincronización en la red de Anytype" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB de espacio de respaldo y sincronización en la red de Anytype" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "%@ GB of backup & sync space on the Anytype network" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB of backup & sync space on the Anytype network" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "%@ GB of backup & sync space on the Anytype network" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB of backup & sync space on the Anytype network" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "%@ Go d'espace de sauvegarde et de synchronisation sur le réseau Anytype" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Go d'espace de sauvegarde et de synchronisation sur le réseau Anytype" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "%@ GB ruang pencadangan dan sinkronisasi di jaringan Anytype" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB ruang pencadangan dan sinkronisasi di jaringan Anytype" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "%@ GB di spazio di backup e sincronizzazione sulla rete Anytype" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB di spazio di backup e sincronizzazione sulla rete Anytype" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Anytype Networkでの%@GBのバックアップ容量と同期上限の緩和" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytype Networkでの%@GBのバックアップ容量と同期上限の緩和" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "%@ GB of backup & sync space on the Anytype network" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB of backup & sync space on the Anytype network" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "%@ GB of backup & sync space on the Anytype network" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB of backup & sync space on the Anytype network" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "%@ GB aan backup- & synchronisatieruimte op het Anytype netwerk" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB aan backup- & synchronisatieruimte op het Anytype netwerk" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "%@ GB of backup & sync space on the Anytype network" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB of backup & sync space on the Anytype network" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "%@ GB przestrzeni zapasowej i synchronizacji w sieci Anytype" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB przestrzeni zapasowej i synchronizacji w sieci Anytype" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "%@ GB de backup e espaço de sincronização na rede Anytype" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB de backup e espaço de sincronização na rede Anytype" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "%@ GB of backup & sync space on the Anytype network" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB of backup & sync space on the Anytype network" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "%@ ГБ резервного копирования и синхронизации в сети Anytype" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ ГБ резервного копирования и синхронизации в сети Anytype" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Anytype ağında %@ GB yedekleme ve eşitleme alanı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytype ağında %@ GB yedekleme ve eşitleme alanı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "%@ GB of backup & sync space on the Anytype network" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB of backup & sync space on the Anytype network" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "%@ GB of backup & sync space on the Anytype network" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ GB of backup & sync space on the Anytype network" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "位于 Anytype 网络上的 %@ GB 的备份与同步空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "位于 Anytype 网络上的 %@ GB 的备份与同步空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Anytype 網路上的 %@ GB 備份和同步儲存空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytype 網路上的 %@ GB 備份和同步儲存空間" } } } }, - "Membership.Feature.UniqueName": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Unique Network name (%@+ characters)" + "Membership.Feature.UniqueName" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Unique Network name (%@+ characters)" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Унікальнае сеткавае імя (%@+ сімвалаў)" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Унікальнае сеткавае імя (%@+ сімвалаў)" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Eindeutiger Netzwerkname (%@+ Zeichen)" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Eindeutiger Netzwerkname (%@+ Zeichen)" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Unique Network name (%@+ characters)" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unique Network name (%@+ characters)" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Nombre de red único (%@ o más caracteres)" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Nombre de red único (%@ o más caracteres)" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Unique Network name (%@+ characters)" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Unique Network name (%@+ characters)" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Unique Network name (%@+ characters)" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Unique Network name (%@+ characters)" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Nom unique dans le réseau (%@+ caractères)" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nom unique dans le réseau (%@+ caractères)" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Nama Jaringan yang unik (%@+ karakter)" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Nama Jaringan yang unik (%@+ karakter)" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nome unico nella rete (almeno %@ caratteri)" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nome unico nella rete (almeno %@ caratteri)" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ANY名(%@文字以上)" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ANY名(%@文字以上)" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Unique Network name (%@+ characters)" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Unique Network name (%@+ characters)" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Unique Network name (%@+ characters)" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Unique Network name (%@+ characters)" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Unieke netwerknaam (%@+ tekens)" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Unieke netwerknaam (%@+ tekens)" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Unique Network name (%@+ characters)" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Unique Network name (%@+ characters)" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Unikalna nazwa sieci (%@+ znaków)" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Unikalna nazwa sieci (%@+ znaków)" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Nome único de rede (%@+ caracteres)" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Nome único de rede (%@+ caracteres)" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Unique Network name (%@+ characters)" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Unique Network name (%@+ characters)" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Уникальное имя сети (%@+ символов)" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Уникальное имя сети (%@+ символов)" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Benzersiz Ağ adı (%@+ karakter)" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Benzersiz Ağ adı (%@+ karakter)" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Unique Network name (%@+ characters)" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Unique Network name (%@+ characters)" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Unique Network name (%@+ characters)" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Unique Network name (%@+ characters)" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "唯一的网络名称(%@ 字符以上)" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "唯一的网络名称(%@ 字符以上)" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "獨特的網路名稱 (%@ 個字元以上)" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "獨特的網路名稱 (%@ 個字元以上)" } } } }, - "Membership.Feature.UnlimitedViewers": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Unlimited Viewers for shared spaces" + "Membership.Feature.UnlimitedViewers" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlimited Viewers for shared spaces" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Неабмежаваная колькасць гледачоў для агульных прастор" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Неабмежаваная колькасць гледачоў для агульных прастор" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Unbegrenzte Betrachteranzahl für geteilte Spaces" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Unbegrenzte Betrachteranzahl für geteilte Spaces" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Unlimited Viewers for shared spaces" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unlimited Viewers for shared spaces" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Visitantes ilimitados para espacios compartidos" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Visitantes ilimitados para espacios compartidos" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Unlimited Viewers for shared spaces" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlimited Viewers for shared spaces" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Unlimited Viewers for shared spaces" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlimited Viewers for shared spaces" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Nombre illimité de lecteurs pour les espaces partagés" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nombre illimité de lecteurs pour les espaces partagés" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pemirsa tak terbatas untuk ruang bersama" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pemirsa tak terbatas untuk ruang bersama" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Visualizzatori illimitati per spazi condivisi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Visualizzatori illimitati per spazi condivisi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "無制限の閲覧可能なメンバー" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "無制限の閲覧可能なメンバー" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Unlimited Viewers for shared spaces" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlimited Viewers for shared spaces" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Unlimited Viewers for shared spaces" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlimited Viewers for shared spaces" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Onbeperkt aantal Lezers voor gedeelde ruimten" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Onbeperkt aantal Lezers voor gedeelde ruimten" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Unlimited Viewers for shared spaces" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlimited Viewers for shared spaces" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nieograniczona liczba widzów dla współdzielonych obszarów" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nieograniczona liczba widzów dla współdzielonych obszarów" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Visualizadores ilimitados para espaços compartilhados" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Visualizadores ilimitados para espaços compartilhados" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Unlimited Viewers for shared spaces" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlimited Viewers for shared spaces" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Неограниченное количество Наблюдателей для общих сообществ" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Неограниченное количество Наблюдателей для общих сообществ" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Paylaşılan alanlar için sınırsız görüntüleyici" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Paylaşılan alanlar için sınırsız görüntüleyici" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Unlimited Viewers for shared spaces" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlimited Viewers for shared spaces" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Unlimited Viewers for shared spaces" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Unlimited Viewers for shared spaces" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "共享空间拥有无限的查看者" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "共享空间拥有无限的查看者" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "每個共享空間無限多個瀏覽者" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "每個共享空間無限多個瀏覽者" } } } }, - "Membership.Feature.Viewers": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "Membership.Feature.Viewers" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Viewers for shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Viewers for shared spaces" } }, - "two": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "two" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } }, - "zero": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "zero" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } } } } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Глядачоў для агульных прастор" + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Глядачоў для агульных прастор" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Глядачоў для агульных прастор" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Глядачоў для агульных прастор" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Глядачоў для агульных прастор" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Глядачоў для агульных прастор" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Глядачоў для агульных прастор" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Глядачоў для агульных прастор" } } } } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Betrachter für geteilte Spaces" + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Betrachter für geteilte Spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Betrachter für geteilte Spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Betrachter für geteilte Spaces" } } } } }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "%d Viewer for shared spaces" + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d Viewer for shared spaces" } }, - "other": { - "stringUnit": { - "state": "translated", - "value": "%d Viewers for shared spaces" + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d Viewers for shared spaces" } } } } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ visitantes por espacio compartido" + "es" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ visitantes por espacio compartido" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ visitantes por espacio compartido" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ visitantes por espacio compartido" } } } } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Viewers for shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Viewers for shared spaces" } } } } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Viewers for shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Viewers for shared spaces" } } } } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Lecteurs pour les espaces partagés" + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Lecteurs pour les espaces partagés" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Lecteurs pour les espaces partagés" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Lecteurs pour les espaces partagés" } } } } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Pelihat untuk ruang terbagi" + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Pelihat untuk ruang terbagi" } } } } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Visualizzatori per spazi condivisi" + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Visualizzatori per spazi condivisi" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Visualizzatori per spazi condivisi" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Visualizzatori per spazi condivisi" } } } } }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@名まで閲覧可能" + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@名まで閲覧可能" } } } } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Viewers for shared spaces" + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Viewers for shared spaces" } } } } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Viewers for shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Viewers for shared spaces" } } } } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Lezers voor gedeelde ruimten" + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Lezers voor gedeelde ruimten" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Lezers voor gedeelde ruimten" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Lezers voor gedeelde ruimten" } } } } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "or" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Viewers for shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Viewers for shared spaces" } } } } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Widzów współdzielonych obszarów" + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Widzów współdzielonych obszarów" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Widzów współdzielonych obszarów" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Widzów współdzielonych obszarów" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Widzów współdzielonych obszarów" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Widzów współdzielonych obszarów" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Widzów współdzielonych obszarów" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Widzów współdzielonych obszarów" } } } } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Visualizadores para espaços compartilhados" + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Visualizadores para espaços compartilhados" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Visualizadores para espaços compartilhados" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Visualizadores para espaços compartilhados" } } } } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Viewers for shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Viewers for shared spaces" } } } } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Наблюдателей для общих сообществ" + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Наблюдателей для общих сообществ" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Наблюдателей для общих сообществ" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Наблюдателей для общих сообществ" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Наблюдателей для общих сообществ" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Наблюдателей для общих сообществ" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Наблюдателей для общих сообществ" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Наблюдателей для общих сообществ" } } } } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "needs_review", - "value": "Paylaşılan alan için %@ görüntüleyici" + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "Paylaşılan alan için %@ görüntüleyici" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Paylaşılan alan için %@ görüntüleyici" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Paylaşılan alan için %@ görüntüleyici" } } } } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } }, - "many": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "many" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } }, - "one": { - "stringUnit": { - "state": "needs_review", - "value": "%@ Viewers for shared spaces" + "one" : { + "stringUnit" : { + "state" : "needs_review", + "value" : "%@ Viewers for shared spaces" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Viewers for shared spaces" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Viewers for shared spaces" } } } } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%@ Viewers for shared spaces" + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Viewers for shared spaces" } } } } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "共享空间有 %@ 个查看者" + "zh-Hans" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "共享空间有 %@ 个查看者" } } } } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "每個共享空間 %@ 個瀏覽者" + "zh-Hant" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "每個共享空間 %@ 個瀏覽者" } } } @@ -21866,4495 +21866,4495 @@ } } }, - "Membership.Legal.AlreadyPurchasedTier": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Already purchased tier?" + "Membership.Legal.AlreadyPurchasedTier" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Already purchased tier?" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ужо набылі ўзровень?" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ужо набылі ўзровень?" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Stufe bereits gekauft?" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Stufe bereits gekauft?" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Already purchased tier?" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Already purchased tier?" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¿Ya has pagado un nivel?" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¿Ya has pagado un nivel?" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Already purchased tier?" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Already purchased tier?" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Already purchased tier?" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Already purchased tier?" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous avez déjà acheté le niveau ?" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous avez déjà acheté le niveau ?" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sudah membeli paket?" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sudah membeli paket?" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Hai già acquistato il livello?" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Hai già acquistato il livello?" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "すでに購入済みですか?" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "すでに購入済みですか?" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Already purchased tier?" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Already purchased tier?" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Already purchased tier?" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Already purchased tier?" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Al een abonnement aangeschaft?" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Al een abonnement aangeschaft?" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Already purchased tier?" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Already purchased tier?" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Już kupiłeś dostęp?" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Już kupiłeś dostęp?" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Nível já comprado?" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Nível já comprado?" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Already purchased tier?" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Already purchased tier?" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Уже приобретен уровень?" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Уже приобретен уровень?" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Katmanı zaten satın aldınız mı?" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Katmanı zaten satın aldınız mı?" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Already purchased tier?" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Already purchased tier?" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Already purchased tier?" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Already purchased tier?" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "已经购买了级别吗?" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "已经购买了级别吗?" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "已經購買會員了嗎?" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "已經購買會員了嗎?" } } } }, - "Membership.Legal.Details": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Membership plan details" + "Membership.Legal.Details" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership plan details" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Дэталі членскага плана" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Дэталі членскага плана" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Abonnementdetails" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Abonnementdetails" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Membership plan details" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membership plan details" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Detalles del plan de suscripción" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Detalles del plan de suscripción" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Membership plan details" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership plan details" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Membership plan details" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership plan details" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Détails des abonnements" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Détails des abonnements" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Detail paket berlangganan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Detail paket berlangganan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Dettagli del piano di Membership" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Dettagli del piano di Membership" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メンバーシッププランの詳細" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メンバーシッププランの詳細" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Membership plan details" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership plan details" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Membership plan details" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership plan details" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Lidmaatschap details" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Lidmaatschap details" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Membership plan details" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership plan details" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Szczegóły planu członkostwa" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Szczegóły planu członkostwa" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Detalhes do plano de inscrição" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Detalhes do plano de inscrição" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Membership plan details" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership plan details" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Детали планов членства" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Детали планов членства" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Üyelik plan detayları" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Üyelik plan detayları" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Membership plan details" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership plan details" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chi tiết các bậc hội viên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chi tiết các bậc hội viên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "会员计划详情" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "会员计划详情" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "會員方案詳情" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "會員方案詳情" } } } }, - "Membership.Legal.LetUsKnow": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "يرجى إعلامنا هنا." + "Membership.Legal.LetUsKnow" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "يرجى إعلامنا هنا." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Калі ласка, паведаміце нам тут." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Калі ласка, паведаміце нам тут." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Lass es uns hier wissen." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Lass es uns hier wissen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Please let us know here." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please let us know here." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cuéntanoslo aquí." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cuéntanoslo aquí." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Please let us know here." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Please let us know here." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Please let us know here." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Please let us know here." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "S'il vous plaît, faites-le nous savoir." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "S'il vous plaît, faites-le nous savoir." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Silakan beri tahu kami di sini." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Silakan beri tahu kami di sini." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Per piacere, fatecelo sapere qui." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Per piacere, fatecelo sapere qui." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "こちらからお問い合わせください。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "こちらからお問い合わせください。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Please let us know here." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Please let us know here." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Vennligst gi oss beskjed her." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Vennligst gi oss beskjed her." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Laat het ons hier weten." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Laat het ons hier weten." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Please let us know here." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Please let us know here." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Daj nam znać tutaj." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Daj nam znać tutaj." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Por favor, deixe-nos saber aqui." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Por favor, deixe-nos saber aqui." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Please let us know here." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Please let us know here." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Пожалуйста, дайте нам знать об этом здесь." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Пожалуйста, дайте нам знать об этом здесь." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Lütfen bize buradan bildirin." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Lütfen bize buradan bildirin." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Please let us know here." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Please let us know here." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Please let us know here." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Please let us know here." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "请在这里告诉我们。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "请在这里告诉我们。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "請在這裡告訴我們。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "請在這裡告訴我們。" } } } }, - "Membership.Legal.Privacy": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "سياسة الخصوصية" + "Membership.Legal.Privacy" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "سياسة الخصوصية" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Палітыка прыватнасці" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Палітыка прыватнасці" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Datenschutzrichtlinie" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Datenschutzrichtlinie" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Privacy policy" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Privacy policy" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Política de privacidad" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Política de privacidad" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Privacy policy" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Privacy policy" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Privacy policy" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Privacy policy" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Politique de confidentialité" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Politique de confidentialité" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kebijakan privasi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kebijakan privasi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Informativa sulla privacy" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Informativa sulla privacy" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プライバシーポリシー" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プライバシーポリシー" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "개인정보 보호정책" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "개인정보 보호정책" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Personvernregler" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Personvernregler" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Privacybeleid" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Privacybeleid" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Privacy policy" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Privacy policy" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Polityka prywatności" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Polityka prywatności" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Política de Privacidade" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Política de Privacidade" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Privacy policy" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Privacy policy" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Политика конфиденциальности" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Политика конфиденциальности" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Gizlilik politikası" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Gizlilik politikası" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Privacy policy" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Privacy policy" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chính sách quyền riêng tư" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chính sách quyền riêng tư" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "隐私政策" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "隐私政策" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "隱私政策" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "隱私政策" } } } }, - "Membership.Legal.RestorePurchases": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Restore purchases" + "Membership.Legal.RestorePurchases" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Restore purchases" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Аднаўленне пакупак" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Аднаўленне пакупак" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Käufe wiederherstellen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Käufe wiederherstellen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Restore purchases" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Restore purchases" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Restaurar compras" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Restaurar compras" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Restore purchases" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Restore purchases" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Restore purchases" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Restore purchases" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Restaurer les achats" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Restaurer les achats" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pulihkan pembelian" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pulihkan pembelian" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ripristina gli acquisti" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ripristina gli acquisti" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "購入を復元" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "購入を復元" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Restore purchases" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Restore purchases" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Restore purchases" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Restore purchases" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Herstel aankopen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Herstel aankopen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Restore purchases" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Restore purchases" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przywróć zakupy" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Przywróć zakupy" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Restaurar compras" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Restaurar compras" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Restore purchases" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Restore purchases" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Восстановить Покупки" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Восстановить Покупки" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Satın alınanları geri yükle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Satın alınanları geri yükle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Restore purchases" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Restore purchases" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Khôi phục các gói đã mua" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Khôi phục các gói đã mua" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "恢复购买" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "恢复购买" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "恢復購買" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "恢復購買" } } } }, - "Membership.Legal.Terms": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الشروط والأحكام" + "Membership.Legal.Terms" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الشروط والأحكام" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Тэрміны і ўмовы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Тэрміны і ўмовы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Allgemeine Geschäftsbedingungen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Allgemeine Geschäftsbedingungen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Terms and conditions" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Terms and conditions" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Términos y condiciones" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Términos y condiciones" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Terms and conditions" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Terms and conditions" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Terms and conditions" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Terms and conditions" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Termes et conditions" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Termes et conditions" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Syarat dan ketentuan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Syarat dan ketentuan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Termini e condizioni" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Termini e condizioni" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "利用規約" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "利用規約" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Terms and conditions" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Terms and conditions" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Vilkår og betingelser" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Vilkår og betingelser" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Algemene voorwaarden" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Algemene voorwaarden" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Terms and conditions" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Terms and conditions" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zasady i Warunki" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zasady i Warunki" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Termos e Condições" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Termos e Condições" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Terms and conditions" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Terms and conditions" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Условия и положения" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Условия и положения" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şartlar ve koşullar" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Şartlar ve koşullar" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Terms and conditions" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Terms and conditions" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Điều khoản và điều kiện" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Điều khoản và điều kiện" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "条款与条件" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "条款与条件" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "條款和細則" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "條款和細則" } } } }, - "Membership.Legal.WouldYouLike": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "هل ترغب في استخدام Anytype للأعمال، التعليم، إلخ؟" + "Membership.Legal.WouldYouLike" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "هل ترغب في استخدام Anytype للأعمال، التعليم، إلخ؟" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ці хочаце вы выкарыстоўваць Anytype для бізнесу, адукацыі і г.д.?" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ці хочаце вы выкарыстоўваць Anytype для бізнесу, адукацыі і г.д.?" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Möchten Sie Anytype für Geschäftliches, Bildung, usw.?" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Möchten Sie Anytype für Geschäftliches, Bildung, usw.?" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Would you like to use Anytype for business, education, etc.?" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Would you like to use Anytype for business, education, etc.?" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¿Quieres usar Anytype con fines profesionales, educativos, etc.?" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¿Quieres usar Anytype con fines profesionales, educativos, etc.?" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Would you like to use Anytype for business, education, etc.?" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Would you like to use Anytype for business, education, etc.?" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Would you like to use Anytype for business, education, etc.?" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Would you like to use Anytype for business, education, etc.?" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous souhaitez utiliser Anytype pour les affaires, l'éducation, etc.?" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous souhaitez utiliser Anytype pour les affaires, l'éducation, etc.?" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Apakah Anda ingin menggunakan Anytype untuk bisnis, pendidikan, dll.?" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Apakah Anda ingin menggunakan Anytype untuk bisnis, pendidikan, dll.?" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Vorresti utilizzare Anytype per affari, educazione, ecc.?" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Vorresti utilizzare Anytype per affari, educazione, ecc.?" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Anytypeを仕事や学習などでご利用されますか?" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytypeを仕事や学習などでご利用されますか?" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Would you like to use Anytype for business, education, etc.?" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Would you like to use Anytype for business, education, etc.?" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ønsker du å bruke Anytype for virksomhet, utdanning osv.?" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ønsker du å bruke Anytype for virksomhet, utdanning osv.?" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Wil je Anytype gebruiken voor zakelijk, onderwijs, etc.?" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wil je Anytype gebruiken voor zakelijk, onderwijs, etc.?" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Would you like to use Anytype for business, education, etc.?" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Would you like to use Anytype for business, education, etc.?" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Czy chciałbyś używać Anytype w biznesie, edukacji itp.?" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Czy chciałbyś używać Anytype w biznesie, edukacji itp.?" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você gostaria de usar o Anytype para negócios, educação, etc.?" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você gostaria de usar o Anytype para negócios, educação, etc.?" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Would you like to use Anytype for business, education, etc.?" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Would you like to use Anytype for business, education, etc.?" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы хотели бы использовать Anytype для бизнеса, образования и т.д.?" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы хотели бы использовать Anytype для бизнеса, образования и т.д.?" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Anytype'ı iş, eğitim vb. için kullanmak ister misiniz?" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytype'ı iş, eğitim vb. için kullanmak ister misiniz?" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Would you like to use Anytype for business, education, etc.?" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Would you like to use Anytype for business, education, etc.?" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Would you like to use Anytype for business, education, etc.?" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Would you like to use Anytype for business, education, etc.?" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您想要使用 Anytype 用于例如商业、教育或者其他类似用途吗?" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您想要使用 Anytype 用于例如商业、教育或者其他类似用途吗?" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您想將 Anytype 用於商業、教育或其他用途嗎?" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您想將 Anytype 用於商業、教育或其他用途嗎?" } } } }, - "Membership.ManageTier.Android": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Android platform" + "Membership.ManageTier.Android" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Android platform" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вы можаце кіраваць узроўнем на Android" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы можаце кіраваць узроўнем на Android" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Android platform" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Android platform" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You can manage tier on Android platform" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can manage tier on Android platform" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Puedes gestionar el nivel en la versión de Android" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Puedes gestionar el nivel en la versión de Android" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Android platform" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Android platform" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Android platform" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Android platform" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous pouvez gérer l'offre à partir de l'application Android" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous pouvez gérer l'offre à partir de l'application Android" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Anda dapat mengelola jenjang di platform Android" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Anda dapat mengelola jenjang di platform Android" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È possibile gestire il livello sulla piattaforma Android" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È possibile gestire il livello sulla piattaforma Android" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プランの変更は、Androidで行ってください。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プランの変更は、Androidで行ってください。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Android platform" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Android platform" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Android platform" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Android platform" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je kunt het abonnement op het Android platform beheren" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je kunt het abonnement op het Android platform beheren" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Android platform" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Android platform" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Android platform" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Android platform" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você pode gerenciar o nível na plataforma de Android" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você pode gerenciar o nível na plataforma de Android" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Android platform" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Android platform" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы можете управлять уровнем членства на платформе Android" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы можете управлять уровнем членства на платформе Android" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Android platformunda katmanı yönetebilirsiniz" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Android platformunda katmanı yönetebilirsiniz" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Android platform" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Android platform" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Android platform" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Android platform" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您可以在 Android 平台上管理等级" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您可以在 Android 平台上管理等级" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您可以在安卓平臺上管理層級" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您可以在安卓平臺上管理層級" } } } }, - "Membership.ManageTier.AppleId": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on another AppleId account" + "Membership.ManageTier.AppleId" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on another AppleId account" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вы можаце кіраваць узроўнем у іншым уліковым запісе AppleId" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы можаце кіраваць узроўнем у іншым уліковым запісе AppleId" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You can manage tier on another AppleId account" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can manage tier on another AppleId account" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Puedes gestionar el nivel en otra cuenta de AppleId" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Puedes gestionar el nivel en otra cuenta de AppleId" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on another AppleId account" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on another AppleId account" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on another AppleId account" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on another AppleId account" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous pouvez gérer l'offre à partir d'un autre compte AppleId" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous pouvez gérer l'offre à partir d'un autre compte AppleId" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Anda dapat mengelola jenjang di akun Apple ID lainnya" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Anda dapat mengelola jenjang di akun Apple ID lainnya" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È possibile gestire il livello su un altro account AppleId" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È possibile gestire il livello su un altro account AppleId" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プランの変更は、別のApple IDアカウントで行ってください。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プランの変更は、別のApple IDアカウントで行ってください。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on another AppleId account" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on another AppleId account" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on another AppleId account" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on another AppleId account" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je kunt het abonnement op een andere AppleId account beheren" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je kunt het abonnement op een andere AppleId account beheren" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on another AppleId account" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on another AppleId account" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on another AppleId account" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on another AppleId account" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você pode gerenciar os níveis em outro Apple Id" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você pode gerenciar os níveis em outro Apple Id" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on another AppleId account" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on another AppleId account" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы можете управлять уровнем членства на другой учетной записи AppleId" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы можете управлять уровнем членства на другой учетной записи AppleId" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Katmanı başka bir AppleId hesabından yönetebilirsiniz" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Katmanı başka bir AppleId hesabından yönetebilirsiniz" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on another AppleId account" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on another AppleId account" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on another AppleId account" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on another AppleId account" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您可以在另一个 Apple ID 上管理等级" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您可以在另一个 Apple ID 上管理等级" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您可以在另一個Apple帳戶上管理層級" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您可以在另一個Apple帳戶上管理層級" } } } }, - "Membership.ManageTier.Desktop": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "يمكنك إدارة المستوى على منصة سطح المكتب" + "Membership.ManageTier.Desktop" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "يمكنك إدارة المستوى على منصة سطح المكتب" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вы можаце кіраваць узроўнем на камп'ютары" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы можаце кіраваць узроўнем на камп'ютары" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Desktop platform" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Desktop platform" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You can manage tier on Desktop platform" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can manage tier on Desktop platform" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Puedes gestionar el nivel en la versión de escritorio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Puedes gestionar el nivel en la versión de escritorio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Desktop platform" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Desktop platform" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Desktop platform" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Desktop platform" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous pouvez gérer l'offre à partir de l'application de bureau" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous pouvez gérer l'offre à partir de l'application de bureau" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Anda dapat mengelola jenjang pada platform Desktop" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Anda dapat mengelola jenjang pada platform Desktop" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "È possibile gestire il livello sulla piattaforma Desktop" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "È possibile gestire il livello sulla piattaforma Desktop" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プラン変更は、デスクトップ版から行ってください" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プラン変更は、デスクトップ版から行ってください" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Desktop platform" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Desktop platform" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Desktop platform" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Desktop platform" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je kunt het abonnement op het desktopplatform beheren" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je kunt het abonnement op het desktopplatform beheren" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Desktop platform" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Desktop platform" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Desktop platform" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Desktop platform" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você pode gerenciar o nível na plataforma de Desktop" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você pode gerenciar o nível na plataforma de Desktop" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Desktop platform" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Desktop platform" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы можете управлять уровнями членства на платформе Desktop" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы можете управлять уровнями членства на платформе Desktop" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Masaüstü platformunda katmanı yönetebilirsiniz" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Masaüstü platformunda katmanı yönetebilirsiniz" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Desktop platform" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Desktop platform" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "You can manage tier on Desktop platform" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "You can manage tier on Desktop platform" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您可以在桌面端上管理等级" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您可以在桌面端上管理等级" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您可以在桌面平臺上管理層級" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您可以在桌面平臺上管理層級" } } } }, - "Membership.NameForm.Subtitle": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "هذا هو اسمك الفريد على شبكة Anytype، يؤكد عضويتك. يعمل كنطاق شخصي ولا يمكن تغييره." + "Membership.NameForm.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "هذا هو اسمك الفريد على شبكة Anytype، يؤكد عضويتك. يعمل كنطاق شخصي ولا يمكن تغييره." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Гэта ваша ўнікальнае імя ў сетцы Anytype, якое пацвярджае ваша членства. Яно дзейнічае як ваш асабісты дамен і не можа быць зменены." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Гэта ваша ўнікальнае імя ў сетцы Anytype, якое пацвярджае ваша членства. Яно дзейнічае як ваш асабісты дамен і не можа быць зменены." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Dies ist dein eindeutiger Name im Anytype-Netzwerk, der deine Mitgliedschaft bestätigt. Er dient als deine persönliche Domain und kann nicht geändert werden." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Dies ist dein eindeutiger Name im Anytype-Netzwerk, der deine Mitgliedschaft bestätigt. Er dient als deine persönliche Domain und kann nicht geändert werden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Este es tu nombre único en la red Anytype y confirma tu suscripción. Funciona como tu dominio personal y no se puede cambiar." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Este es tu nombre único en la red Anytype y confirma tu suscripción. Funciona como tu dominio personal y no se puede cambiar." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ceci est votre nom unique sur le réseau Anytype, confirmant votre abonnement. Il agit comme votre domaine personnel et ne peut pas être changé." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ceci est votre nom unique sur le réseau Anytype, confirmant votre abonnement. Il agit comme votre domaine personnel et ne peut pas être changé." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ini adalah nama unik Anda di jaringan Anytype, yang mengonfirmasi Keanggotaan Anda. Nama ini berfungsi sebagai domain pribadi Anda dan tidak dapat diubah." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ini adalah nama unik Anda di jaringan Anytype, yang mengonfirmasi Keanggotaan Anda. Nama ini berfungsi sebagai domain pribadi Anda dan tidak dapat diubah." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Questo è il tuo nome univoco sulla rete Anytype, che conferma la vostra iscrizione. Funge da dominio personale e non può essere cambiato." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Questo è il tuo nome univoco sulla rete Anytype, che conferma la vostra iscrizione. Funge da dominio personale e non può essere cambiato." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "これはAnytype Network内で使えるあなただけの名前です。メンバーシップの加入認証にも使われます。自分専用のドメイン名として使うことができ、変更できません。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "これはAnytype Network内で使えるあなただけの名前です。メンバーシップの加入認証にも使われます。自分専用のドメイン名として使うことができ、変更できません。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Dette er ditt unike navn på Anytype-nettverket, som bekrefter medlemskapet ditt. Det fungerer som ditt personlige domene og kan ikke endres." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Dette er ditt unike navn på Anytype-nettverket, som bekrefter medlemskapet ditt. Det fungerer som ditt personlige domene og kan ikke endres." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Dit is je unieke naam op het Anytype netwerk, die je lidmaatschap bevestigt. Het fungeert als je persoonlijke domein en kan niet worden gewijzigd." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dit is je unieke naam op het Anytype netwerk, die je lidmaatschap bevestigt. Het fungeert als je persoonlijke domein en kan niet worden gewijzigd." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jest to Twoje unikalne imię i nazwisko w sieci Anytype, potwierdzające Twoje członkostwo. Działa jako Twoja domena osobista i nie można jej zmienić." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jest to Twoje unikalne imię i nazwisko w sieci Anytype, potwierdzające Twoje członkostwo. Działa jako Twoja domena osobista i nie można jej zmienić." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Este é o seu nome exclusivo na rede Anytype, confirmando a sua Associação. Ele atua como seu domínio pessoal e não pode ser alterado." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Este é o seu nome exclusivo na rede Anytype, confirmando a sua Associação. Ele atua como seu domínio pessoal e não pode ser alterado." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Это ваше уникальное имя в сети Anytype, подтверждающее ваше членство. Оно служит вашим личным доменом и не может быть изменено." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Это ваше уникальное имя в сети Anytype, подтверждающее ваше членство. Оно служит вашим личным доменом и не может быть изменено." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu, Anytype ağında üyeliğinizi onaylayan benzersiz adınızdır. Kişisel alan adınız olarak işlev görür ve değiştirilemez." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu, Anytype ağında üyeliğinizi onaylayan benzersiz adınızdır. Kişisel alan adınız olarak işlev görür ve değiştirilemez." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "This is your unique name on the Anytype network, confirming your Membership. It acts as your personal domain and cannot be changed." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đây là biệt danh của bạn trên mạng Anytype, chứng nhận cho Tư cách hội viên của bạn. Nó có tác dụng giống một tên miền cá nhân và không thể thay đổi." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đây là biệt danh của bạn trên mạng Anytype, chứng nhận cho Tư cách hội viên của bạn. Nó có tác dụng giống một tên miền cá nhân và không thể thay đổi." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "这是您在 Anytype 网络上的独特名称,用于确认您的会员身份。它是您的个人域名,且无法更改。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "这是您在 Anytype 网络上的独特名称,用于确认您的会员身份。它是您的个人域名,且无法更改。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "這是您在Anytype網絡的專屬用戶名,以確認您的會員身份。它是您的個人域名,不可更改。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "這是您在Anytype網絡的專屬用戶名,以確認您的會員身份。它是您的個人域名,不可更改。" } } } }, - "Membership.NameForm.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "اختر اسمك الفريد" + "Membership.NameForm.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "اختر اسمك الفريد" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выберыце сваё ўнікальнае імя" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выберыце сваё ўнікальнае імя" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Wähle deinen einzigartigen Namen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Wähle deinen einzigartigen Namen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Pick your unique name" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pick your unique name" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Elige un nombre único" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Elige un nombre único" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Pick your unique name" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Pick your unique name" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Pick your unique name" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Pick your unique name" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Choisissez votre nom unique" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Choisissez votre nom unique" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pilih nama unikmu" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pilih nama unikmu" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Scegli il tuo nome unico" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Scegli il tuo nome unico" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "自分だけの名前を決めましょう" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "自分だけの名前を決めましょう" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Pick your unique name" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Pick your unique name" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Velg ditt unike navn" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Velg ditt unike navn" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Kies jouw unieke naam" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kies jouw unieke naam" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Pick your unique name" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Pick your unique name" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wybierz swoją unikalną nazwę" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wybierz swoją unikalną nazwę" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Escolha seu nome único" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Escolha seu nome único" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Pick your unique name" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Pick your unique name" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Выберите ваше уникальное имя" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Выберите ваше уникальное имя" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Benzersiz isminizi seçin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Benzersiz isminizi seçin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Pick your unique name" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Pick your unique name" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chọn biệt danh của bạn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chọn biệt danh của bạn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "选择您独有的名字" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "选择您独有的名字" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "取一個獨特的名字" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "取一個獨特的名字" } } } }, - "Membership.NameForm.Validated": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "This name is up for grabs" + "Membership.NameForm.Validated" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "This name is up for grabs" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Гэтая назва выстаўлена на продаж" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Гэтая назва выстаўлена на продаж" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Dieser Name ist noch zu vergeben" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Dieser Name ist noch zu vergeben" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This name is up for grabs" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This name is up for grabs" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Este nombre está disponible" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Este nombre está disponible" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "This name is up for grabs" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "This name is up for grabs" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "This name is up for grabs" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "This name is up for grabs" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ce nom est disponible" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ce nom est disponible" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Nama ini boleh dipakai" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Nama ini boleh dipakai" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Questo nome è disponibile" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Questo nome è disponibile" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "この名前は利用可能です" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "この名前は利用可能です" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "This name is up for grabs" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "This name is up for grabs" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Dette navnet er ledig" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Dette navnet er ledig" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deze naam is voor het grijpen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deze naam is voor het grijpen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "This name is up for grabs" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "This name is up for grabs" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ta nazwa jest do zgarnięcia" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ta nazwa jest do zgarnięcia" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Este nome está disponível para uso" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Este nome está disponível para uso" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "This name is up for grabs" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "This name is up for grabs" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Это имя свободно" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Это имя свободно" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu isim tartışmaya açık" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu isim tartışmaya açık" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "This name is up for grabs" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "This name is up for grabs" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tên này còn để lấy" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tên này còn để lấy" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "这个名称是可获得的" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "这个名称是可获得的" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "此名稱可以使用!" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "此名稱可以使用!" } } } }, - "Membership.NameForm.Validating": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Wait a second..." + "Membership.NameForm.Validating" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Wait a second..." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пачакайце секунду..." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пачакайце секунду..." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Einen Moment bitte..." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Einen Moment bitte..." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Wait a second..." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Wait a second..." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Espera un segundo…" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Espera un segundo…" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Wait a second..." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Wait a second..." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Wait a second..." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Wait a second..." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Patientez..." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Patientez..." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tunggu sebentar..." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tunggu sebentar..." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Aspetta un secondo..." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Aspetta un secondo..." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "少々お待ちください…" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "少々お待ちください…" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Wait a second..." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Wait a second..." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Vent et øyeblikk..." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Vent et øyeblikk..." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Even geduld..." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Even geduld..." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Wait a second..." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Wait a second..." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zaraz, zaraz..." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zaraz, zaraz..." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Só um segundo..." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Só um segundo..." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Wait a second..." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Wait a second..." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Подождите секундочку..." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Подождите секундочку..." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bir saniye bekleyin..." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bir saniye bekleyin..." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Wait a second..." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Wait a second..." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chờ một chút..." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chờ một chút..." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "请耐心等待..." + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "请耐心等待..." } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "請稍後..." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "請稍後..." } } } }, - "Membership.Payment.Apple subscription": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "اشتراك Apple" + "Membership.Payment.Apple subscription" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "اشتراك Apple" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Apple падпіска" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple падпіска" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Apple-Abonnement" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple-Abonnement" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Apple subscription" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Apple subscription" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Suscripción de Apple" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Suscripción de Apple" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Apple subscription" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple subscription" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Apple subscription" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple subscription" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Abonnement Apple" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Abonnement Apple" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Langganan Apple" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Langganan Apple" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Abbonamento Apple" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Abbonamento Apple" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Appleサブスクリプション" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Appleサブスクリプション" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Apple subscription" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple subscription" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Apple subscription" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple subscription" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Apple-abonnement" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple-abonnement" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Apple subscription" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple subscription" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Subskrypcja Apple" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Subskrypcja Apple" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Assinatura Apple" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Assinatura Apple" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Apple subscription" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple subscription" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Подписка Apple" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Подписка Apple" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Apple aboneliği" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple aboneliği" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Apple subscription" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple subscription" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Apple subscription" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple subscription" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Apple 订阅" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple 订阅" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Apple 訂閱" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Apple 訂閱" } } } }, - "Membership.Payment.Card": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "بطاقة" + "Membership.Payment.Card" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "بطاقة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Картка" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Картка" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Karte" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Karte" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Card" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Card" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tarjeta" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tarjeta" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Card" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Card" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Kortti" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Kortti" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Carte" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Carte" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kartu" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kartu" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Scheda" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Scheda" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "カード" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "カード" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "카드" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "카드" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Kort" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Kort" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Kaart" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kaart" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "କାର୍ଡ଼" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "କାର୍ଡ଼" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Karta" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Karta" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Cartão" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Cartão" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Cartão" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Cartão" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Карточка" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Карточка" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Kart" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Kart" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Картка" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Картка" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Thẻ" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Thẻ" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "卡片" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "卡片" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "卡片" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "卡片" } } } }, - "Membership.Payment.Crypto": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "عملة مشفرة" + "Membership.Payment.Crypto" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "عملة مشفرة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Крыпта" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Крыпта" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Kryptowährung" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Kryptowährung" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Crypto" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Crypto" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cripto" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cripto" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Crypto" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Crypto" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Crypto" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Crypto" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Crypto" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Crypto" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kripto" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kripto" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Cripto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Cripto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "暗号資産" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "暗号資産" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Crypto" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Crypto" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Krypto" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Krypto" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Crypto" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Crypto" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Crypto" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Crypto" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Krypto" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Krypto" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Crypto" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Crypto" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Crypto" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Crypto" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Криптовалюта" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Криптовалюта" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Kripto" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Kripto" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Crypto" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Crypto" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tiền ảo" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tiền ảo" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "加密货币" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "加密货币" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "加密貨幣" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "加密貨幣" } } } }, - "Membership.Payment.Google subscription": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "اشتراك Google" + "Membership.Payment.Google subscription" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "اشتراك Google" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Google падпіска" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Google падпіска" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Google-Abonnement" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Google-Abonnement" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Google subscription" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Google subscription" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Suscripción de Google" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Suscripción de Google" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Google subscription" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Google subscription" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Google subscription" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Google subscription" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Abonnement Google" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Abonnement Google" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Langganan Google" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Langganan Google" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Abbonamento Google" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Abbonamento Google" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Google Playでの定期購入" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Google Playでの定期購入" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Google subscription" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Google subscription" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Google subscription" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Google subscription" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Google-abonnement" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Google-abonnement" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Google subscription" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Google subscription" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Subskrypcja Google" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Subskrypcja Google" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Assinatura Google" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Assinatura Google" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Google subscription" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Google subscription" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Подписка Google" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Подписка Google" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Google aboneliği" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Google aboneliği" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Google subscription" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Google subscription" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Google subscription" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Google subscription" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Google 订阅" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Google 订阅" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Google 訂閱" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Google 訂閱" } } } }, - "Membership.Success.Curiosity": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تحيات كبيرة لفضولك!" + "Membership.Success.Curiosity" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تحيات كبيرة لفضولك!" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вялікі дзякуй за вашу цікаўнасць!" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вялікі дзякуй за вашу цікаўнасць!" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ein Hoch auf deine Neugierde!" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ein Hoch auf deine Neugierde!" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Big cheers for your curiosity!" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Big cheers for your curiosity!" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¡Enhorabuena por tu curiosidad!" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¡Enhorabuena por tu curiosidad!" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your curiosity!" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your curiosity!" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your curiosity!" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your curiosity!" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Merci beaucoup pour votre curiosité !" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Merci beaucoup pour votre curiosité !" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tepuk tangan yang meriah untuk rasa ingin tahu Anda!" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tepuk tangan yang meriah untuk rasa ingin tahu Anda!" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Un grande applauso per la tua curiosità!" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Un grande applauso per la tua curiosità!" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ご興味をお持ちいただき、ありがとうございます!" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ご興味をお持ちいただき、ありがとうございます!" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your curiosity!" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your curiosity!" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your curiosity!" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your curiosity!" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Hulde voor jouw nieuwsgierigheid!" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Hulde voor jouw nieuwsgierigheid!" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your curiosity!" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your curiosity!" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wielkie brawa za ciekawość!" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wielkie brawa za ciekawość!" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Um grande aplauso por sua curiosidade!" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Um grande aplauso por sua curiosidade!" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your curiosity!" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your curiosity!" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Большое спасибо за Ваше любопытство!" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Большое спасибо за Ваше любопытство!" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Merakınız için kocaman bir alkış!" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Merakınız için kocaman bir alkış!" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your curiosity!" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your curiosity!" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Ăn mừng cho sự tò mò của bạn thôi!" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ăn mừng cho sự tò mò của bạn thôi!" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "为你的好奇心干一杯大的!" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "为你的好奇心干一杯大的!" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "為你的好奇心喝彩!" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "為你的好奇心喝彩!" } } } }, - "Membership.Success.Support": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your support!" + "Membership.Success.Support" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your support!" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вялікі дзякуй за вашу падтрымку!" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вялікі дзякуй за вашу падтрымку!" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ein Hoch auf deine Unterstützung!" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ein Hoch auf deine Unterstützung!" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Big cheers for your support!" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Big cheers for your support!" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¡Enhorabuena por tu apoyo!" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¡Enhorabuena por tu apoyo!" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your support!" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your support!" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your support!" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your support!" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Un grand merci pour votre soutien !" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Un grand merci pour votre soutien !" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tepuk tangan yang meriah untuk dukungan Anda!" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tepuk tangan yang meriah untuk dukungan Anda!" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Grazie mille per il tuo supporto!" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Grazie mille per il tuo supporto!" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ご支援に心より感謝申し上げます!" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ご支援に心より感謝申し上げます!" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your support!" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your support!" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your support!" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your support!" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Hulde voor jouw ondersteuning!" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Hulde voor jouw ondersteuning!" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your support!" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your support!" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wielkie dzięki za Twoje wsparcie!" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wielkie dzięki za Twoje wsparcie!" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Um grande aplauso pelo seu apoio!" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Um grande aplauso pelo seu apoio!" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your support!" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your support!" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Большое спасибо за вашу поддержку!" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Большое спасибо за вашу поддержку!" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Desteğiniz için kocaman alkış!" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Desteğiniz için kocaman alkış!" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Big cheers for your support!" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Big cheers for your support!" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Ăn mừng cho sự hỗ trợ của bạn thôi!" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ăn mừng cho sự hỗ trợ của bạn thôi!" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "为你的支持干一杯大的!" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "为你的支持干一杯大的!" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "為你的支持點贊!" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "為你的支持點贊!" } } } }, - "Membership.Success.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Welcome to the network, %@" + "Membership.Success.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Welcome to the network, %@" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вітаем вас у сетцы, %@" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вітаем вас у сетцы, %@" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Willkommen im Netzwerk, %@" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Willkommen im Netzwerk, %@" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Welcome to the network, %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Welcome to the network, %@" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Te damos la bienvenida a la red, %@" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Te damos la bienvenida a la red, %@" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Welcome to the network, %@" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Welcome to the network, %@" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Welcome to the network, %@" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Welcome to the network, %@" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Bienvenue sur le réseau, %@" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bienvenue sur le réseau, %@" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Selamat menjadi anggota, %@" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Selamat menjadi anggota, %@" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Benvenuto/a nella rete, %@" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Benvenuto/a nella rete, %@" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ネットワーク %@へようこそ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ネットワーク %@へようこそ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Welcome to the network, %@" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Welcome to the network, %@" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Welcome to the network, %@" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Welcome to the network, %@" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Welkom bij het netwerk, %@" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Welkom bij het netwerk, %@" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Welcome to the network, %@" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Welcome to the network, %@" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Witaj w sieci, %@" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Witaj w sieci, %@" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Bem-vindo à rede, %@" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Bem-vindo à rede, %@" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Welcome to the network, %@" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Welcome to the network, %@" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Добро пожаловать в сеть, %@" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Добро пожаловать в сеть, %@" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@, ağa hoş geldiniz" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@, ağa hoş geldiniz" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Welcome to the network, %@" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Welcome to the network, %@" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chào mừng đến với mạng, %@" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chào mừng đến với mạng, %@" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "欢迎来到网络, %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "欢迎来到网络, %@" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "歡迎來到 Anytype 網絡,%@" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "歡迎來到 Anytype 網絡,%@" } } } }, - "Membership.unavailable": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "Membership.unavailable" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This tier is not available in the app. We know it's not ideal." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Este nivel no está disponible en la aplicación. Sabemos que no es lo ideal." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Este nivel no está disponible en la aplicación. Sabemos que no es lo ideal." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Questo livello non è disponibile nell'app. Sappiamo che non è l'ideale." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Questo livello non è disponibile nell'app. Sappiamo che non è l'ideale." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "このプランはアプリでは利用できません。ご不便をおかけし、申し訳ありません。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "このプランはアプリでは利用できません。ご不便をおかけし、申し訳ありません。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu katman uygulamada mevcut değildir. İdeal olmadığını biliyoruz." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu katman uygulamada mevcut değildir. İdeal olmadığını biliyoruz." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "This tier is not available in the app. We know it's not ideal." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "This tier is not available in the app. We know it's not ideal." } } } }, - "Membership.Upgrade.Button": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الاتصال بفريق Anytype" + "Membership.Upgrade.Button" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الاتصال بفريق Anytype" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Звяжыцеся з камандай Anytype" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Звяжыцеся з камандай Anytype" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Anytype-Team kontaktieren" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytype-Team kontaktieren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Contact Anytype Team" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Contact Anytype Team" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Hablar con el equipo de Anytype" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Hablar con el equipo de Anytype" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Contact Anytype Team" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Contact Anytype Team" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Contact Anytype Team" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Contact Anytype Team" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Contacter l'équipe d'Anytype" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Contacter l'équipe d'Anytype" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hubungi Tim Anytype" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hubungi Tim Anytype" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Contatta il Team Anytype" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Contatta il Team Anytype" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Anytypeへのお問い合わせ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytypeへのお問い合わせ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Contact Anytype Team" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Contact Anytype Team" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Contact Anytype Team" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Contact Anytype Team" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Contacteer Anytype team" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Contacteer Anytype team" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Contact Anytype Team" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Contact Anytype Team" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Skontaktuj się z zespołem Anytype" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Skontaktuj się z zespołem Anytype" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Entrar em contato com a equipe Anytype" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Entrar em contato com a equipe Anytype" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Contact Anytype Team" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Contact Anytype Team" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Связаться с командой Anytype" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Связаться с командой Anytype" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Anytype ekibi ile iletişime geçin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytype ekibi ile iletişime geçin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Contact Anytype Team" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Contact Anytype Team" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Liên hệ đội ngũ Anytype" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Liên hệ đội ngũ Anytype" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "联系Anytype团队" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "联系Anytype团队" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "聯絡 Anytype 團隊" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "聯絡 Anytype 團隊" } } } }, - "Membership.Upgrade.MoreMembers": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more members" + "Membership.Upgrade.MoreMembers" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more members" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Палепшыце, каб дадаць больш удзельнікаў" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Палепшыце, каб дадаць больш удзельнікаў" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Upgrade um weitere Mitglieder hinzuzufügen. " + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade um weitere Mitglieder hinzuzufügen. " } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Upgrade to add more members" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrade to add more members" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Amplía tu suscripción para añadir más miembros" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Amplía tu suscripción para añadir más miembros" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more members" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more members" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more members" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more members" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Mettre à niveau pour ajouter plus de membres" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Mettre à niveau pour ajouter plus de membres" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tingkatkan untuk menambah lebih banyak anggota" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tingkatkan untuk menambah lebih banyak anggota" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Aggiorna per aggiungere più membri" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Aggiorna per aggiungere più membri" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "アップグレードしてさらに多くのメンバーを追加" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "アップグレードしてさらに多くのメンバーを追加" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more members" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more members" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more members" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more members" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Upgrade om meer leden toe te voegen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade om meer leden toe te voegen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more members" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more members" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more members" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more members" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Dê um “upgrade” na sua assinatura para adicionar mais membros" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Dê um “upgrade” na sua assinatura para adicionar mais membros" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more members" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more members" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Обновите, чтобы добавить больше участников" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Обновите, чтобы добавить больше участников" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Daha fazla üye eklemek için yükseltin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Daha fazla üye eklemek için yükseltin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more members" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more members" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Nâng cấp để thêm nhiều thành viên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Nâng cấp để thêm nhiều thành viên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "升级以添加更多成员" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "升级以添加更多成员" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "升級以新增更多成員" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "升級以新增更多成員" } } } }, - "Membership.Upgrade.MoreSpaces": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more spaces" + "Membership.Upgrade.MoreSpaces" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more spaces" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Палепшыце, каб дадаць больш прастор" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Палепшыце, каб дадаць больш прастор" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Upgraden um weitere Spaces hinzuzufügen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgraden um weitere Spaces hinzuzufügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Upgrade to add more spaces" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Upgrade to add more spaces" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Amplía tu suscripción para añadir más espacios" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Amplía tu suscripción para añadir más espacios" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more spaces" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more spaces" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more spaces" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more spaces" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Mettre à niveau pour ajouter plus d’espaces" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Mettre à niveau pour ajouter plus d’espaces" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tingkatkan untuk menambah ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tingkatkan untuk menambah ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Fai l'upgrade per aggiungere più spazi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Fai l'upgrade per aggiungere più spazi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "アップグレードしてさらにスペースを追加" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "アップグレードしてさらにスペースを追加" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more spaces" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more spaces" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more spaces" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more spaces" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Upgrade om meer ruimten toe te voegen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade om meer ruimten toe te voegen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more spaces" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more spaces" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ulepsz, aby dodać więcej przestrzeni" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ulepsz, aby dodać więcej przestrzeni" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Dê um “upgrade” na sua assinatura para adicionar mais espaços" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Dê um “upgrade” na sua assinatura para adicionar mais espaços" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more spaces" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more spaces" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Обновите, чтобы добавить больше пространств" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Обновите, чтобы добавить больше пространств" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Daha fazla alan eklemek için yükseltin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Daha fazla alan eklemek için yükseltin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Upgrade to add more spaces" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Upgrade to add more spaces" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Nâng cấp để thêm nhiều không gian" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Nâng cấp để thêm nhiều không gian" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "升级以创建更多空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "升级以创建更多空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "升級以使用更多空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "升級以使用更多空間" } } } }, - "Membership.Upgrade.NoMoreEditors": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لا يمكنك إضافة المزيد من المحررين" + "Membership.Upgrade.NoMoreEditors" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لا يمكنك إضافة المزيد من المحررين" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вы не можаце дадаць больш рэдактараў" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы не можаце дадаць больш рэдактараў" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Du kannst keine weiteren Editoren hinzufügen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Du kannst keine weiteren Editoren hinzufügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You can’t add more editors" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can’t add more editors" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No puedes añadir más editores" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No puedes añadir más editores" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You can’t add more editors" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more editors" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You can’t add more editors" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more editors" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous ne pouvez pas ajouter plus d'éditeurs" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous ne pouvez pas ajouter plus d'éditeurs" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kamu tidak bisa menambah penyunting lagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kamu tidak bisa menambah penyunting lagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non puoi aggiungere altri editor" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non puoi aggiungere altri editor" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "これ以上、編集権限のメンバーを追加できません。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "これ以上、編集権限のメンバーを追加できません。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You can’t add more editors" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more editors" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You can’t add more editors" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more editors" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je kunt geen bewerkers meer toevoegen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je kunt geen bewerkers meer toevoegen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You can’t add more editors" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more editors" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie można dodać więcej edytorów" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie można dodać więcej edytorów" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você não pode adicionar mais editores" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você não pode adicionar mais editores" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You can’t add more editors" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more editors" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы не можете добавить больше редакторов" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы не можете добавить больше редакторов" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Daha fazla düzenleyici ekleyemezsiniz" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Daha fazla düzenleyici ekleyemezsiniz" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You can’t add more editors" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more editors" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bạn không thể thêm biên tập viên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bạn không thể thêm biên tập viên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您无法添加更多编辑者" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您无法添加更多编辑者" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您無法新增更多編輯者" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您無法新增更多編輯者" } } } }, - "Membership.Upgrade.NoMoreMembers": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لا يمكنك إضافة المزيد من الأعضاء" + "Membership.Upgrade.NoMoreMembers" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لا يمكنك إضافة المزيد من الأعضاء" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вы не можаце дадаць больш удзельнікаў" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы не можаце дадаць больш удзельнікаў" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Du kannst keine weiteren Mitglieder hinzufügen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Du kannst keine weiteren Mitglieder hinzufügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You can’t add more members" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You can’t add more members" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No puedes añadir más miembros" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No puedes añadir más miembros" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You can’t add more members" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more members" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You can’t add more members" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more members" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous ne pouvez plus ajouter de membres" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous ne pouvez plus ajouter de membres" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Anda tidak dapat menambah anggota lagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Anda tidak dapat menambah anggota lagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non puoi aggiungere altri membri" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non puoi aggiungere altri membri" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "これ以上、閲覧権限のメンバーを追加できません。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "これ以上、閲覧権限のメンバーを追加できません。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You can’t add more members" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more members" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You can’t add more members" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more members" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je kunt geen leden meer toevoegen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je kunt geen leden meer toevoegen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You can’t add more members" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more members" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "You can’t add more members" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more members" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você não pode adicionar mais membros" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você não pode adicionar mais membros" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You can’t add more members" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more members" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы не можете добавить больше участников" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы не можете добавить больше участников" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Daha fazla üye ekleyemezsiniz" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Daha fazla üye ekleyemezsiniz" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You can’t add more members" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You can’t add more members" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bạn không thể thêm thành viên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bạn không thể thêm thành viên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您无法添加更多成员" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您无法添加更多成员" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您無法新增更多成員" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您無法新增更多成員" } } } }, - "Membership.Upgrade.SpacesLimit": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "Membership.Upgrade.SpacesLimit" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d space that can be shared" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d space that can be shared" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } }, - "two": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "two" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } }, - "zero": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "zero" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } } } } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "Вы дасягнулі ліміту %d прасторы, якія можна абагуліць" + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы дасягнулі ліміту %d прасторы, якія можна абагуліць" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "Вы дасягнулі ліміту %d прастор, якія можна абагуліць" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы дасягнулі ліміту %d прастор, якія можна абагуліць" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "Вы дасягнулі ліміту %d прасторы, якую можна абагуліць" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы дасягнулі ліміту %d прасторы, якую можна абагуліць" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Вы дасягнулі ліміту %d прастор, якія можна абагуліць" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы дасягнулі ліміту %d прастор, якія можна абагуліць" } } } } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Du hast die Grenze von %d Space, die gemeinsam genutzt werden können, erreicht" + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Du hast die Grenze von %d Space, die gemeinsam genutzt werden können, erreicht" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Du hast die Grenze von %d Space, die gemeinsam genutzt werden können, erreicht" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Du hast die Grenze von %d Space, die gemeinsam genutzt werden können, erreicht" } } } } }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "You’ve reached the limit of %d space that can be shared" + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "You’ve reached the limit of %d space that can be shared" } }, - "other": { - "stringUnit": { - "state": "translated", - "value": "You’ve reached the limit of %d spaces that can be shared" + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "You’ve reached the limit of %d spaces that can be shared" } } } } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Has alcanzado el límite de %d espacio compartido." + "es" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Has alcanzado el límite de %d espacio compartido." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Has alcanzado el límite de %d espacios compartidos." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Has alcanzado el límite de %d espacios compartidos." } } } } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d space that can be shared" + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d space that can be shared" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } } } } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d space that can be shared" + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d space that can be shared" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } } } } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Vous avez atteint la limite d’%d espace pouvant être partagé" + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous avez atteint la limite d’%d espace pouvant être partagé" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Vous avez atteint la limite de %d espaces pouvant être partagés" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous avez atteint la limite de %d espaces pouvant être partagés" } } } } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "Kamu sudah mencapai batas %d ruang yang bisa dibagikan" + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Kamu sudah mencapai batas %d ruang yang bisa dibagikan" } } } } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Hai raggiunto il limite di %d spazio che può essere condiviso" + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Hai raggiunto il limite di %d spazio che può essere condiviso" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Hai raggiunto il limite di %d spazi che possono essere condivisi" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Hai raggiunto il limite di %d spazi che possono essere condivisi" } } } } }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "共有スペースの上限数である%dつに達しました。" + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "共有スペースの上限数である%dつに達しました。" } } } } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } } } } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d space that can be shared" + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d space that can be shared" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } } } } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Je hebt de limiet bereikt van de %d ruimte die kan worden gedeeld" + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Je hebt de limiet bereikt van de %d ruimte die kan worden gedeeld" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Je hebt de limiet bereikt van de %d ruimtes die kunnen worden gedeeld" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Je hebt de limiet bereikt van de %d ruimtes die kunnen worden gedeeld" } } } } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d space that can be shared" + "or" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d space that can be shared" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } } } } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "Osiągnąłeś limit przestrzeni %d, która może być udostępniona" + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "Osiągnąłeś limit przestrzeni %d, która może być udostępniona" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "Osiągnąłeś limit przestrzeni %d, która może być udostępniona" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "Osiągnąłeś limit przestrzeni %d, która może być udostępniona" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "Osiągnąłeś limit przestrzeni %d, która może być udostępniona" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Osiągnąłeś limit przestrzeni %d, która może być udostępniona" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Osiągnąłeś limit przestrzeni %d, która może być udostępniona" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Osiągnąłeś limit przestrzeni %d, która może być udostępniona" } } } } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Você atingiu o limite de espaço %d que pode ser compartilhado" + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Você atingiu o limite de espaço %d que pode ser compartilhado" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Você atingiu o limite de espaço %d que pode ser compartilhado" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Você atingiu o limite de espaço %d que pode ser compartilhado" } } } } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d space that can be shared" + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d space that can be shared" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } } } } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "Вы достигли лимита в %d пространства, которыми можно поделиться" + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы достигли лимита в %d пространства, которыми можно поделиться" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "Вы достигли лимита в %d пространств, которыми можно поделиться" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы достигли лимита в %d пространств, которыми можно поделиться" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "Вы достигли лимита в %d пространство, которым можно поделиться" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы достигли лимита в %d пространство, которым можно поделиться" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Вы достигли лимита в %d пространств, которыми можно поделиться" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы достигли лимита в %d пространств, которыми можно поделиться" } } } } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Paylaşılabilecek %d alan sınırına ulaştınız" + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Paylaşılabilecek %d alan sınırına ulaştınız" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Paylaşılabilecek %d alan sınırına ulaştınız" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Paylaşılabilecek %d alan sınırına ulaştınız" } } } } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d space that can be shared" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d space that can be shared" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } } } } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "You’ve reached the limit of %d spaces that can be shared" + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve reached the limit of %d spaces that can be shared" } } } } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "您已经达到 %d 个可共享空间的限制" + "zh-Hans" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "您已经达到 %d 个可共享空间的限制" } } } } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "您已達到可共享 %d 個空間的上限了" + "zh-Hant" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "您已達到可共享 %d 個空間的上限了" } } } @@ -26362,25559 +26362,22326 @@ } } }, - "Membership.Upgrade.Text": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تواصل معنا للحصول على مساحة تخزين إضافية، أو محرري مساحة، أو مساحات مشتركة إضافية. سيوفر فريق Anytype التفاصيل والشروط المصممة خصيصًا لاحتياجاتك." + "Membership.Upgrade.Text" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تواصل معنا للحصول على مساحة تخزين إضافية، أو محرري مساحة، أو مساحات مشتركة إضافية. سيوفر فريق Anytype التفاصيل والشروط المصممة خصيصًا لاحتياجاتك." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Звяртайцеся да нас за дадатковымі месцамі для захоўвання, рэдактарамі прасторы ці дадатковымі месцамі для агульнага выкарыстання. Каманда Anytype прадаставіць дэталі і ўмовы ў адпаведнасці з вашымі патрэбамі." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Звяртайцеся да нас за дадатковымі месцамі для захоўвання, рэдактарамі прасторы ці дадатковымі месцамі для агульнага выкарыстання. Каманда Anytype прадаставіць дэталі і ўмовы ў адпаведнасці з вашымі патрэбамі." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Kontaktiere und bezüglich mehr Speicherplatz oder mehr geteilten Spaces. Das Anytype Team wird sich mit Informationen und den auf dich zugeschnittenen Konditionen melden. " + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Kontaktiere und bezüglich mehr Speicherplatz oder mehr geteilten Spaces. Das Anytype Team wird sich mit Informationen und den auf dich zugeschnittenen Konditionen melden. " } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Habla con nosotros si quieres aumentar el almacenamiento, los editores de tus espacios o los espacios compartidos. El equipo de Anytype te ofrecerá detalles y condiciones adaptados a tus necesidades." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Habla con nosotros si quieres aumentar el almacenamiento, los editores de tus espacios o los espacios compartidos. El equipo de Anytype te ofrecerá detalles y condiciones adaptados a tus necesidades." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Contactez-nous pour obtenir du stockage supplémentaire, plus de rédacteurs, ou davantage d'espaces partagés. L'équipe d'Anytype vous fournira l'offre adaptée à vos besoins." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Contactez-nous pour obtenir du stockage supplémentaire, plus de rédacteurs, ou davantage d'espaces partagés. L'équipe d'Anytype vous fournira l'offre adaptée à vos besoins." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hubungi kami untuk penyimpanan ekstra, tambahan editor, atau lebih banyak ruang bersama. Tim Anytype akan memberikan detail dan ketentuan yang disesuaikan dengan kebutuhan Anda." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hubungi kami untuk penyimpanan ekstra, tambahan editor, atau lebih banyak ruang bersama. Tim Anytype akan memberikan detail dan ketentuan yang disesuaikan dengan kebutuhan Anda." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Contattaci per ottenere più spazio di archiviazione, editor di spazi o più spazi condivisi. Il team di Anytype fornirà dettagli e condizioni su misura per le tue esigenze." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Contattaci per ottenere più spazio di archiviazione, editor di spazi o più spazi condivisi. Il team di Anytype fornirà dettagli e condizioni su misura per le tue esigenze." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ストレージ容量の追加、スペースエディターに関するご質問、または共有スペースの増設については、お気軽にお問い合わせください。Anytypeがお客様のニーズに合わせた詳細と条件をご案内いたします。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ストレージ容量の追加、スペースエディターに関するご質問、または共有スペースの増設については、お気軽にお問い合わせください。Anytypeがお客様のニーズに合わせた詳細と条件をご案内いたします。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Neem contact met ons op voor extra opslag, ruimtebewerkers of meer gedeelde ruimtes. Het Anytype-team zal details en voorwaarden bieden die zijn afgestemd op jouw behoeften." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Neem contact met ons op voor extra opslag, ruimtebewerkers of meer gedeelde ruimtes. Het Anytype-team zal details en voorwaarden bieden die zijn afgestemd op jouw behoeften." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Skontaktuj się z nami w celu uzyskania dodatkowej pamięci, edytorów przestrzeni lub większej liczby dzielonych przestrzeni. Zespół Antype poda szczegóły i warunki dostosowane do Twoich potrzeb." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Skontaktuj się z nami w celu uzyskania dodatkowej pamięci, edytorów przestrzeni lub większej liczby dzielonych przestrzeni. Zespół Antype poda szczegóły i warunki dostosowane do Twoich potrzeb." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Entre em contato conosco para obter armazenamento extra, editores de espaço ou mais espaços compartilhados. A equipe Anytype fornecerá detalhes e condições adaptadas às suas necessidades." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Entre em contato conosco para obter armazenamento extra, editores de espaço ou mais espaços compartilhados. A equipe Anytype fornecerá detalhes e condições adaptadas às suas necessidades." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Обращайтесь к нам за дополнительным объемом памяти хранилища, редакторами пространства или общими пространствами. Команда Anytype предоставит детали и условия в соответствии с вашими потребностями." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Обращайтесь к нам за дополнительным объемом памяти хранилища, редакторами пространства или общими пространствами. Команда Anytype предоставит детали и условия в соответствии с вашими потребностями." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Ekstra depolama, alan editörleri veya daha fazla ortak alan için bize ulaşın. Anytype ekibi ihtiyaçlarınıza göre uyarlanmış ayrıntılar ve koşullar sağlayacaktır." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ekstra depolama, alan editörleri veya daha fazla ortak alan için bize ulaşın. Anytype ekibi ihtiyaçlarınıza göre uyarlanmış ayrıntılar ve koşullar sağlayacaktır." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Reach us for extra storage, space editors, or more shared spaces. Anytype team will provide details and conditions tailored to your needs." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Liên lạc chúng tôi để có thêm dung lượng, biên tập viên không gian, hoặc nhiều không gian chung hơn. Đội ngũ Anytype sẽ cung cấp cho chi tiết và điều kiện phù hợp với nhu cầu của bạn." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Liên lạc chúng tôi để có thêm dung lượng, biên tập viên không gian, hoặc nhiều không gian chung hơn. Đội ngũ Anytype sẽ cung cấp cho chi tiết và điều kiện phù hợp với nhu cầu của bạn." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "联系我们以获取额外的存储空间、空间编辑器或更多共享空间。任何类型的团队都将根据您的需求提供量身定制的细节和条件。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "联系我们以获取额外的存储空间、空间编辑器或更多共享空间。任何类型的团队都将根据您的需求提供量身定制的细节和条件。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "如需更多額外的儲存容量、更多空間編輯者或更多共享空間,請與我們聯絡。 Anytype 團隊將根據您的需求和條件為您量身定製。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "如需更多額外的儲存容量、更多空間編輯者或更多共享空間,請與我們聯絡。 Anytype 團隊將根據您的需求和條件為您量身定製。" } } } }, - "Membership.Upgrade.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "ترقية العضوية" + "Membership.Upgrade.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "ترقية العضوية" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Павышэнне членства" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Павышэнне членства" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Hochstufen der Mitgliedschaft" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Hochstufen der Mitgliedschaft" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Membership upgrade" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Membership upgrade" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ampliación de la suscripción" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ampliación de la suscripción" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Membership upgrade" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership upgrade" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Membership upgrade" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership upgrade" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Mise à niveau de l'abonnement" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Mise à niveau de l'abonnement" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Gangguan pada status keanggotaan saat ini" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Gangguan pada status keanggotaan saat ini" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Aggiornamento Membership" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Aggiornamento Membership" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メンバーシップをアップグレード" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メンバーシップをアップグレード" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Membership upgrade" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership upgrade" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Membership upgrade" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership upgrade" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Lidmaatschap upgrade" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Lidmaatschap upgrade" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Membership upgrade" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership upgrade" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ulepszenie subskrypcji" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ulepszenie subskrypcji" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Atualizar assinatura" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Atualizar assinatura" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Membership upgrade" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership upgrade" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Улучшение членства" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Улучшение членства" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Üyelik yükseltme" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Üyelik yükseltme" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Membership upgrade" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Membership upgrade" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Nâng cấp tư cách hội viên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Nâng cấp tư cách hội viên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "会员升级" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "会员升级" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "會員升級" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "會員升級" } } } }, - "MembershipServiceError.invalidBillingIdFormat": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Internal problem with billing format, we are working on this. Try again later or contact support." + "MembershipServiceError.invalidBillingIdFormat" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Internal problem with billing format, we are working on this. Try again later or contact support." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Унутраная праблема з фарматам аплаты, мы працуем над гэтым. Паўтарыце спробу пазней або звярніцеся ў службу падтрымкі." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Унутраная праблема з фарматам аплаты, мы працуем над гэтым. Паўтарыце спробу пазней або звярніцеся ў службу падтрымкі." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Internes Problem mit dem Rechnungsformat, wir arbeiten daran. Versuche es später noch einmal oder kontaktiere den Support." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Internes Problem mit dem Rechnungsformat, wir arbeiten daran. Versuche es später noch einmal oder kontaktiere den Support." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Internal problem with billing format, we are working on this. Try again later or contact support." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Internal problem with billing format, we are working on this. Try again later or contact support." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Hubo un problema interno con el formato de facturación y lo estamos resolviendo. Inténtelo de nuevo más tarde o ponte en contacto con el soporte técnico." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Hubo un problema interno con el formato de facturación y lo estamos resolviendo. Inténtelo de nuevo más tarde o ponte en contacto con el soporte técnico." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Internal problem with billing format, we are working on this. Try again later or contact support." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Internal problem with billing format, we are working on this. Try again later or contact support." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Internal problem with billing format, we are working on this. Try again later or contact support." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Internal problem with billing format, we are working on this. Try again later or contact support." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Problème interne avec le format de facturation, nous travaillons sur ceci. Réessayez plus tard ou contactez le support." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Problème interne avec le format de facturation, nous travaillons sur ceci. Réessayez plus tard ou contactez le support." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Masalah internal dengan format penagihan, kami sedang mengatasinya. Coba lagi nanti atau hubungi layanan dukungan." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Masalah internal dengan format penagihan, kami sedang mengatasinya. Coba lagi nanti atau hubungi layanan dukungan." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Problema interno con il formato di fatturazione, stiamo lavorando per risolverlo. Riprova più tardi o contatta l'assistenza." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Problema interno con il formato di fatturazione, stiamo lavorando per risolverlo. Riprova più tardi o contatta l'assistenza." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "請求処理に問題が発生しています。現在、復旧作業中ですので、しばらくしてから再度お試しになるか、サポートまでご連絡をお願いします。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "請求処理に問題が発生しています。現在、復旧作業中ですので、しばらくしてから再度お試しになるか、サポートまでご連絡をお願いします。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Internal problem with billing format, we are working on this. Try again later or contact support." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Internal problem with billing format, we are working on this. Try again later or contact support." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Internal problem with billing format, we are working on this. Try again later or contact support." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Internal problem with billing format, we are working on this. Try again later or contact support." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Intern probleem met factuurformaat, we werken hieraan. Probeer het later opnieuw of neem contact op met ondersteuning." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Intern probleem met factuurformaat, we werken hieraan. Probeer het later opnieuw of neem contact op met ondersteuning." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Internal problem with billing format, we are working on this. Try again later or contact support." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Internal problem with billing format, we are working on this. Try again later or contact support." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wewnętrzny problem z formatem rozliczeniowym, pracujemy nad tym. Spróbuj ponownie później lub skontaktuj się z pomocą techniczną." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wewnętrzny problem z formatem rozliczeniowym, pracujemy nad tym. Spróbuj ponownie później lub skontaktuj się z pomocą techniczną." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Um problema interno com o formato de faturamento. Estamos trabalhando nisso. Tente novamente mais tarde ou entre em contato com o suporte." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Um problema interno com o formato de faturamento. Estamos trabalhando nisso. Tente novamente mais tarde ou entre em contato com o suporte." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Internal problem with billing format, we are working on this. Try again later or contact support." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Internal problem with billing format, we are working on this. Try again later or contact support." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Внутренняя проблема с форматом биллинга, мы работаем над этим. Попробуйте позже или обратитесь в службу поддержки." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Внутренняя проблема с форматом биллинга, мы работаем над этим. Попробуйте позже или обратитесь в службу поддержки." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Fatura formatıyla ilgili dahili sorun, bunun üzerinde çalışıyoruz. Daha sonra tekrar deneyin veya destek ekibiyle iletişime geçin." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Fatura formatıyla ilgili dahili sorun, bunun üzerinde çalışıyoruz. Daha sonra tekrar deneyin veya destek ekibiyle iletişime geçin." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Internal problem with billing format, we are working on this. Try again later or contact support." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Internal problem with billing format, we are working on this. Try again later or contact support." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Internal problem with billing format, we are working on this. Try again later or contact support." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Internal problem with billing format, we are working on this. Try again later or contact support." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "帐单格式内部有问题,我们正在处理这个问题。请稍后再试或联系客服支持。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "帐单格式内部有问题,我们正在处理这个问题。请稍后再试或联系客服支持。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "帳單格式存在內部問題,我們正在處理中。請稍後再試,或聯絡客服支援。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "帳單格式存在內部問題,我們正在處理中。請稍後再試,或聯絡客服支援。" } } } }, - "MembershipServiceError.tierNotFound": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Not found tier data, restart app and try again" + "MembershipServiceError.tierNotFound" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Not found tier data, restart app and try again" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Не знойдзены даныя ўзроўню, перазапусціце праграму і паўтарыце спробу" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Не знойдзены даныя ўзроўню, перазапусціце праграму і паўтарыце спробу" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Informationen zur Stufe nicht gefunden, App neustarten und erneut versuchen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Informationen zur Stufe nicht gefunden, App neustarten und erneut versuchen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Not found tier data, restart app and try again" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not found tier data, restart app and try again" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No se encuentran los datos del nivel, reinicia la aplicación e inténtalo de nuevo" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No se encuentran los datos del nivel, reinicia la aplicación e inténtalo de nuevo" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Not found tier data, restart app and try again" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Not found tier data, restart app and try again" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Not found tier data, restart app and try again" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Not found tier data, restart app and try again" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Données de niveau introuvables, redémarrez l'application et réessayez" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Données de niveau introuvables, redémarrez l'application et réessayez" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Data jenjang tidak ditemukan, mulai ulang aplikasi dan coba lagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Data jenjang tidak ditemukan, mulai ulang aplikasi dan coba lagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Dati del livello non trovati, riavviare l'app e riprovare" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Dati del livello non trovati, riavviare l'app e riprovare" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メンバーシップ情報が見つかりませんでした。アプリを再起動して、もう一度お試し下さい。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メンバーシップ情報が見つかりませんでした。アプリを再起動して、もう一度お試し下さい。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Not found tier data, restart app and try again" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Not found tier data, restart app and try again" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Not found tier data, restart app and try again" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Not found tier data, restart app and try again" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Abonnementsgegevens niet gevonden, herstart app en probeer het opnieuw" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Abonnementsgegevens niet gevonden, herstart app en probeer het opnieuw" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Not found tier data, restart app and try again" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Not found tier data, restart app and try again" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie znaleziono danych poziomu, zrestartuj aplikację i spróbuj ponownie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie znaleziono danych poziomu, zrestartuj aplikację i spróbuj ponownie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Não foi encontrado o tier data, reinicie o app e tente novamente" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Não foi encontrado o tier data, reinicie o app e tente novamente" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Not found tier data, restart app and try again" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Not found tier data, restart app and try again" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Данные об уровне членства не найдены, перезапустите приложение и повторите попытку" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Данные об уровне членства не найдены, перезапустите приложение и повторите попытку" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Katman verisi bulunamadı, uygulamayı yeniden başlatın ve tekrar deneyin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Katman verisi bulunamadı, uygulamayı yeniden başlatın ve tekrar deneyin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Not found tier data, restart app and try again" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Not found tier data, restart app and try again" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Not found tier data, restart app and try again" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Not found tier data, restart app and try again" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "找不到层数据,重启应用并重试" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "找不到层数据,重启应用并重试" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "未找到該階段數據,請重新啟動應用程式並重試" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "未找到該階段數據,請重新啟動應用程式並重試" } } } }, - "Message.Action.AddReaction": { - "comment": "MARK: - Messages", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إضافة رد فعل" + "Message.Action.AddReaction" : { + "comment" : "MARK: - Messages", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إضافة رد فعل" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Дадаць рэакцыю" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Дадаць рэакцыю" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Reaktion hinzufügen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Reaktion hinzufügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Add Reaction" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add Reaction" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Añadir reacción" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Añadir reacción" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Add Reaction" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Add Reaction" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Add Reaction" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add Reaction" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ajouter une Réaction" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ajouter une Réaction" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tambahkan Reaksi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tambahkan Reaksi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Aggiungi una Reazione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Aggiungi una Reazione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リアクションを追加" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リアクションを追加" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Add Reaction" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Add Reaction" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Add Reaction" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Add Reaction" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voeg reactie toe" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voeg reactie toe" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Add Reaction" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Add Reaction" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Add Reaction" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Add Reaction" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Adicionar reação" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Adicionar reação" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Add Reaction" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Add Reaction" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Добавить реакцию" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Добавить реакцию" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Tepki Ekle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tepki Ekle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Add Reaction" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Add Reaction" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Add Reaction" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add Reaction" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "添加回应" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "添加回应" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Add Reaction" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Add Reaction" } } } }, - "Message.Action.CopyPlainText": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "Message.Action.CopyPlainText" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Klartext kopieren" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Klartext kopieren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Copy Plain Text" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy Plain Text" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Copiar texto simple" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Copiar texto simple" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Copier le texte brut" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Copier le texte brut" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Salin Teks Polos" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Salin Teks Polos" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Copia Testo Semplice" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Copia Testo Semplice" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "テキストをコピー" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "テキストをコピー" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Kopieer platte tekst" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kopieer platte tekst" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Düz Metni Kopyala" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Düz Metni Kopyala" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "复制纯文本" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "复制纯文本" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Copy Plain Text" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy Plain Text" } } } }, - "Message.Action.Reply": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "رد" + "Message.Action.Reply" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "رد" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Reply" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Antworten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Antworten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Reply" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reply" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Responder" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Responder" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Reply" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Reply" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Répondre" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Répondre" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Balas" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Balas" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Rispondi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Rispondi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "返信" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "返信" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Reply" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Reply" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Antwoord" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Antwoord" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Reply" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Reply" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Responder" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Responder" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Reply" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ответить" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ответить" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yanıtla" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yanıtla" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Reply" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Reply" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "回复" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "回复" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Reply" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Reply" } } } }, - "Message.Action.Unread": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "Message.Action.Unread" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Als ungelesen markieren" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Als ungelesen markieren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Mark Unread" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mark Unread" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Marcar como no leído" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Marcar como no leído" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Marquer comme non lu" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Marquer comme non lu" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tandai Belum Dibaca" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tandai Belum Dibaca" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Segna come non letto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Segna come non letto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "未読にする" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "未読にする" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Markeer als ongelezen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Markeer als ongelezen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Okunmadı Olarak İşaretle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Okunmadı Olarak İşaretle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "标记未读" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "标记未读" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Mark Unread" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Mark Unread" } } } }, - "Message.ChatTitle.Placeholder": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Untitled Chat" + "Message.ChatTitle.Placeholder" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled Chat" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Untitled Chat" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled Chat" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Unbenannter Chat " + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Unbenannter Chat " } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Untitled Chat" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Untitled Chat" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Chat sin título" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat sin título" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Untitled Chat" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled Chat" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Untitled Chat" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled Chat" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Chat sans titre" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat sans titre" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Obrolan Nirjudul" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Obrolan Nirjudul" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Chat senza titolo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat senza titolo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "無題" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "無題" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Untitled Chat" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled Chat" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Untitled Chat" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled Chat" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Naamloze chat" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Naamloze chat" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Untitled Chat" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled Chat" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Untitled Chat" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled Chat" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Chat sem título" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat sem título" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Untitled Chat" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled Chat" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Чат без названия" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Чат без названия" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Başlıksız Sohbet" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Başlıksız Sohbet" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Untitled Chat" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled Chat" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Untitled Chat" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled Chat" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "未命名对话" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "未命名对话" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Untitled Chat" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Untitled Chat" } } } }, - "Message.edited": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تم التعديل" + "Message.edited" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تم التعديل" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "адрэдагавана" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "адрэдагавана" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "bearbeitet" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "bearbeitet" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "edited" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "edited" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "editado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "editado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "edited" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "edited" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "edited" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "edited" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "modifié" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "modifié" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "disunting" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "disunting" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "modificato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "modificato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "編集済み" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "編集済み" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "수정됨" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "수정됨" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "edited" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "edited" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "bewerkt" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "bewerkt" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "edited" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "edited" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "edited" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "edited" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "edited" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "edited" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "edited" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "edited" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "отредактировано" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "отредактировано" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "düzenlendi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "düzenlendi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "edited" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "edited" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "edited" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "edited" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "已编辑" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "已编辑" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "edited" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "edited" } } } }, - "Message.Input.Chat.EmptyPlaceholder": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "اكتب رسالة..." + "Message.Input.Chat.EmptyPlaceholder" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "اكتب رسالة..." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Write a message..." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Write a message..." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Eine Nachricht schreiben..." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Eine Nachricht schreiben..." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Write a message..." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Write a message..." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Escribir mensaje…" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Escribir mensaje…" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Write a message..." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Write a message..." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Write a message..." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Write a message..." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ecrire un message..." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ecrire un message..." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tulis pesan …" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tulis pesan …" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Scrivi un messaggio..." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Scrivi un messaggio..." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メッセージを入力…" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メッセージを入力…" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Write a message..." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Write a message..." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Write a message..." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Write a message..." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Schrijf een bericht..." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Schrijf een bericht..." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Write a message..." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Write a message..." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Write a message..." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Write a message..." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Write a message..." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Write a message..." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Write a message..." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Write a message..." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Напишите сообщение..." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Напишите сообщение..." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bir mesaj yazın..." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bir mesaj yazın..." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Write a message..." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Write a message..." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Write a message..." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Write a message..." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "写点什么..." + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "写点什么..." } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Write a message..." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Write a message..." } } } }, - "Message.Input.Stream.EmptyPlaceholder": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "Message.Input.Stream.EmptyPlaceholder" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Broadcast" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Broadcast" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Difundir" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Difundir" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Diffuser" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Diffuser" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Siarkan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Siarkan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Trasmissione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Trasmissione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ブロードキャスト" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ブロードキャスト" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Zend uit" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zend uit" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yayın" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yayın" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "直播" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "直播" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Broadcast" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Broadcast" } } } }, - "NewProperty": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "New Property" + "NewProperty" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "New Property" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Neue Eigenschaft" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Neue Eigenschaft" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "New Property" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "New Property" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Nueva propiedad" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Nueva propiedad" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "New Property" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "New Property" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Nouvelle propriété" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nouvelle propriété" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Properti Baru" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Properti Baru" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nuova Proprietà" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nuova Proprietà" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "新しいプロパティ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "新しいプロパティ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "New Property" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "New Property" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "New Property" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "New Property" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "New Property" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "New Property" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "New Property" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "New Property" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yeni Özellik" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yeni Özellik" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "New Property" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "New Property" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "New Property" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "New Property" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "New Property" } } } }, - "Note": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "ملاحظة" + "Note" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "ملاحظة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Нататка" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Нататка" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Notiz" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Notiz" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Note" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Note" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Nota" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Nota" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Note" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Note" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Note" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Note" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Note" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Note" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Catatan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Catatan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nota" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nota" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ノート" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ノート" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "메모" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "메모" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Notat" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Notat" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Notitie" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Notitie" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ନୋଟ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ନୋଟ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Notatka" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Notatka" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Nota" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Nota" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Note" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Note" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Заметка" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Заметка" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Not" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Not" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Нотатка" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Нотатка" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Ghi chú" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ghi chú" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "笔记" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "笔记" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "筆記" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "筆記" } } } }, - "Notifications": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "Notifications" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Benachrichtigungen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Benachrichtigungen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Notifications" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Notificaciones" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Notificaciones" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pemberitahuan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pemberitahuan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Notifiche" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifiche" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "通知" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "通知" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bildirimler" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bildirimler" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Notifications" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications" } } } }, - "Object.Deleted.Placeholder": { - "comment": "MARK: - Object", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "كائن محذوف" + "Object.Deleted.Placeholder" : { + "comment" : "MARK: - Object", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "كائن محذوف" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выдаліць аб'ект" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выдаліць аб'ект" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Gelöschtes Objekt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Gelöschtes Objekt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Deleted object" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleted object" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Objeto eliminado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Objeto eliminado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Deleted object" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted object" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Poistettu kohde" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Poistettu kohde" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Objet supprimé" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Objet supprimé" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Objek terhapus" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Objek terhapus" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Oggetto eliminato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Oggetto eliminato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "削除されたオブジェクト" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "削除されたオブジェクト" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "삭제된 개체" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "삭제된 개체" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Slettet objekt" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Slettet objekt" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verwijderd object" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwijderd object" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ବିଲୋପ ହୋଇଥିବା ଅବଜେକ୍ଟ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ବିଲୋପ ହୋଇଥିବା ଅବଜେକ୍ଟ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Usunięte obiekty" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Usunięte obiekty" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Objeto excluído" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Objeto excluído" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Objeto eliminado" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Objeto eliminado" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удаленный объект" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удаленный объект" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Silinen nesne" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Silinen nesne" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Видалений об'єкт" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Видалений об'єкт" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đối tượng đã xoá" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đối tượng đã xoá" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "已删除的对象" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "已删除的对象" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "已刪除物件" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "已刪除物件" } } } }, - "ObjectType.AddedToLibrary": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Type ‘%@’ has been created" + "ObjectType.AddedToLibrary" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Type ‘%@’ has been created" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Type ‘%@’ has been created" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Type ‘%@’ has been created" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Typ ‚%@‘ wurde erstellt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Typ ‚%@‘ wurde erstellt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Type ‘%@’ has been created" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Type ‘%@’ has been created" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Se ha creado el tipo «%@»." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Se ha creado el tipo «%@»." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Type ‘%@’ has been created" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Type ‘%@’ has been created" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Type ‘%@’ has been created" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Type ‘%@’ has been created" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Le type ‘%@’ a été créé" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Le type ‘%@’ a été créé" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tipe '%@' telah dibuat" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipe '%@' telah dibuat" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Il tipo '%@' è stato creato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Il tipo '%@' è stato creato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "タイプ「%@」が作成されました" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "タイプ「%@」が作成されました" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Type ‘%@’ has been created" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Type ‘%@’ has been created" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Type ‘%@’ has been created" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Type ‘%@’ has been created" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Type '%@' is gemaakt" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Type '%@' is gemaakt" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Type ‘%@’ has been created" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Type ‘%@’ has been created" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Type ‘%@’ has been created" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Type ‘%@’ has been created" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "O tipo ‘%@ foi criado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "O tipo ‘%@ foi criado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Type ‘%@’ has been created" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Type ‘%@’ has been created" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Тип ‘%@был создан" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Тип ‘%@был создан" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "'%@' türü oluşturuldu" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "'%@' türü oluşturuldu" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Type ‘%@’ has been created" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Type ‘%@’ has been created" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Type ‘%@’ has been created" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Type ‘%@’ has been created" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "已创建类型 “%@”" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "已创建类型 “%@”" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Type ‘%@’ has been created" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Type ‘%@’ has been created" } } } }, - "ObjectType.DeletedName": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "نوع محذوف" + "ObjectType.DeletedName" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "نوع محذوف" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выдалены тып" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выдалены тып" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Gelöschter Typ" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Gelöschter Typ" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Deleted type" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleted type" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tipo eliminado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo eliminado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Deleted type" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted type" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Deleted type" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted type" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Type supprimé" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Type supprimé" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tipe yang terhapus" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipe yang terhapus" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Tipo eliminato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo eliminato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "削除されたタイプ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "削除されたタイプ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Deleted type" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted type" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Slettet type" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Slettet type" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verwijderd type" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwijderd type" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Deleted type" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted type" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Usunięty typ" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Usunięty typ" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tipo apagado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo apagado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Tipo excluído" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo excluído" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удаленный тип" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удаленный тип" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Türü sil" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Türü sil" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Видалений тип" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Видалений тип" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Loại đã xoá" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Loại đã xoá" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "删除类型" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "删除类型" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "已刪除類型" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "已刪除類型" } } } }, - "ObjectType.editingType": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "أنت تقوم بتعديل النوع" + "ObjectType.editingType" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "أنت تقوم بتعديل النوع" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "You're editing type" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "You're editing type" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "You're editing type" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "You're editing type" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You're editing type" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You're editing type" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Estás editando el tipo" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Estás editando el tipo" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You're editing type" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You're editing type" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You're editing type" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You're editing type" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous éditez le type" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous éditez le type" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Anda sedang mengedit tipe" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Anda sedang mengedit tipe" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Stai modificando il tipo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Stai modificando il tipo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "編集中のタイプ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "編集中のタイプ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You're editing type" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You're editing type" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You're editing type" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You're editing type" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je bewerkt het type" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je bewerkt het type" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You're editing type" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You're editing type" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "You're editing type" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "You're editing type" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você está editando o tipo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você está editando o tipo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You're editing type" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You're editing type" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы редактировали тип" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы редактировали тип" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Düzenleme türünüz" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Düzenleme türünüz" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You're editing type" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You're editing type" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "You're editing type" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "You're editing type" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您正在编辑类型" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您正在编辑类型" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "You're editing type" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "You're editing type" } } } }, - "ObjectType.fallbackDescription": { - "comment": "MARK: - ObjectType", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Blank canvas with no title" + "ObjectType.fallbackDescription" : { + "comment" : "MARK: - ObjectType", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Blank canvas with no title" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пустое палатно без назвы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пустое палатно без назвы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Leere Leinwand ohne Titel" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Leere Leinwand ohne Titel" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Blank canvas with no title" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Blank canvas with no title" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Lienzo en blanco sin título" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Lienzo en blanco sin título" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Blank canvas with no title" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Blank canvas with no title" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Blank canvas with no title" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Blank canvas with no title" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Toile vierge sans titre" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Toile vierge sans titre" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kanvas kosong tanpa judul" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kanvas kosong tanpa judul" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Tela vuota senza titolo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Tela vuota senza titolo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "無題のまっさらなキャンバス" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "無題のまっさらなキャンバス" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Blank canvas with no title" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Blank canvas with no title" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Tomt lerret uten tittel" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Tomt lerret uten tittel" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Leeg canvas zonder titel" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Leeg canvas zonder titel" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "କୌଣସି ଶୀର୍ଷକ ନଥିବା ଖାଲି କ୍ୟାନଭାସ୍" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "କୌଣସି ଶୀର୍ଷକ ନଥିବା ଖାଲି କ୍ୟାନଭାସ୍" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Puste płótno bez tytułu" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Puste płótno bez tytułu" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tela em branco sem título" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tela em branco sem título" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Blank canvas with no title" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Blank canvas with no title" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Пустой холст без заголовка" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Пустой холст без заголовка" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Başlıksız boş tuval" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Başlıksız boş tuval" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Порожнє полотно без заголовка" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Порожнє полотно без заголовка" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Blank canvas with no title" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Blank canvas with no title" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "没有标题的空白画布" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "没有标题的空白画布" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "沒有標題的空白畫布" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "沒有標題的空白畫布" } } } }, - "ObjectType.MyTypes": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "My Types" + "ObjectType.MyTypes" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "My Types" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Мае тыпы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Мае тыпы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Meine Typen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Meine Typen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "My Types" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "My Types" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Mis tipos" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Mis tipos" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "My Types" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "My Types" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "My Types" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "My Types" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Mes Types" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Mes Types" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tipeku" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipeku" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "I miei Tipi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "I miei Tipi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "作成したタイプ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "作成したタイプ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "My Types" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "My Types" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Mine typer" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Mine typer" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Mijn types" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Mijn types" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ମୋ ପ୍ରକାର" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ମୋ ପ୍ରକାର" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Moje typy" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Moje typy" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Meus Tipos" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Meus Tipos" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "My Types" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "My Types" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Мои типы" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Мои типы" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Türlerim" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Türlerim" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Мої типи" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Мої типи" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Các Loại của tôi" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Các Loại của tôi" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "我的类型" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "我的类型" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "我的類型" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "我的類型" } } } }, - "ObjectType.Search": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Search for Type" + "ObjectType.Search" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Search for Type" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пошук тыпу" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пошук тыпу" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nach Typ suchen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nach Typ suchen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Search for Type" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search for Type" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Buscar un tipo" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Buscar un tipo" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Search for Type" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Search for Type" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Search for Type" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Search for Type" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Rechercher un type" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Rechercher un type" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Telusuri Tipe" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Telusuri Tipe" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Cerca per Tipo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Cerca per Tipo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "タイプを検索" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "タイプを検索" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Search for Type" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Search for Type" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Søk etter type" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Søk etter type" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Zoek naar type" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zoek naar type" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ପ୍ରକାର ସନ୍ଧାନ କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ପ୍ରକାର ସନ୍ଧାନ କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wyszukaj typ" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wyszukaj typ" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Pesquisar por Tipo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Pesquisar por Tipo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Search for Type" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Search for Type" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Поиск типа" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Поиск типа" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Tür ara" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tür ara" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Пошук типу" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Пошук типу" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Search for Type" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Search for Type" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "搜索类型" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "搜索类型" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "搜尋類型" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "搜尋類型" } } } }, - "ObjectType.SearchOrInstall": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Search or install a new type" + "ObjectType.SearchOrInstall" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Search or install a new type" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пошук або ўстаноўка новага тыпу" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пошук або ўстаноўка новага тыпу" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Suche oder installiere einen neuen Typen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Suche oder installiere einen neuen Typen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Search or install a new type" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Search or install a new type" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Buscar o instalar un nuevo tipo" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Buscar o instalar un nuevo tipo" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Search or install a new type" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Search or install a new type" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Search or install a new type" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Search or install a new type" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Rechercher ou créer un nouveau type" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Rechercher ou créer un nouveau type" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Telusuri atau buat tipe baru" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Telusuri atau buat tipe baru" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Cerca o crea un nuovo tipo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Cerca o crea un nuovo tipo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "タイプを検索もしくは作成" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "タイプを検索もしくは作成" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Search or install a new type" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Search or install a new type" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Søk eller installer en ny type" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Søk eller installer en ny type" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Zoek of installeer een nieuw type" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zoek of installeer een nieuw type" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଏକ ନୂତନ ପ୍ରକାର ସନ୍ଧାନ କିମ୍ୱା ସଂସ୍ଥାପନ କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଏକ ନୂତନ ପ୍ରକାର ସନ୍ଧାନ କିମ୍ୱା ସଂସ୍ଥାପନ କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Szukaj lub utwórz nowy typ" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Szukaj lub utwórz nowy typ" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Pesquise ou instale um novo tipo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Pesquise ou instale um novo tipo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Search or install a new type" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Search or install a new type" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Искать или создать новый тип" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Искать или создать новый тип" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yeni bir tür arayın veya yükleyin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yeni bir tür arayın veya yükleyin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Знайдіть або встановіть новий тип" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Знайдіть або встановіть новий тип" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tìm hoặc cài một loại mới" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tìm hoặc cài một loại mới" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "搜索或安装新类型" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "搜索或安装新类型" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "搜尋或安裝新類型" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "搜尋或安裝新類型" } } } }, - "Page": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Page" + "Page" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Page" } } } }, - "Pages": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الصفحات" + "Pages" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الصفحات" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Старонкі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Старонкі" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Seiten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Seiten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Pages" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Pages" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Páginas" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Páginas" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Pages" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Pages" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Pages" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Pages" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Pages" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Pages" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Halaman" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Halaman" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Pagine" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Pagine" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ページ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ページ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "페이지 " + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "페이지 " } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Pages" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Pages" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Pagina's" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Pagina's" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ପୃଷ୍ଠା" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ପୃଷ୍ଠା" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Pages" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Pages" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Páginas" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Páginas" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Pages" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Pages" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Страницы" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Страницы" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sayfalar" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sayfalar" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Pages" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Pages" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Pages" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Pages" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "页面" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "页面" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Pages" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Pages" } } } }, - "ParticipantRemoveNotification.Text": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "You were removed from **%@** space, or the space has been deleted by the owner." + "ParticipantRemoveNotification.Text" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "You were removed from **%@** space, or the space has been deleted by the owner." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вас выдалілі з Прасторы **%@**, або Прастора была выдалена ўладальнікам." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вас выдалілі з Прасторы **%@**, або Прастора была выдалена ўладальнікам." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Du wurdesg auf dem Space **%@** entfernt, oder der Space wurde von dessen Besitzer gelöscht." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Du wurdesg auf dem Space **%@** entfernt, oder der Space wurde von dessen Besitzer gelöscht." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You were removed from **%@** space, or the space has been deleted by the owner." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You were removed from **%@** space, or the space has been deleted by the owner." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Te han eliminado del espacio **%@**, o el propietario ha eliminado ese espacio." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Te han eliminado del espacio **%@**, o el propietario ha eliminado ese espacio." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You were removed from **%@** space, or the space has been deleted by the owner." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You were removed from **%@** space, or the space has been deleted by the owner." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You were removed from **%@** space, or the space has been deleted by the owner." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You were removed from **%@** space, or the space has been deleted by the owner." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous avez été retiré de l'espace **%@**, ou l'espace a été supprimé par son propriétaire." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous avez été retiré de l'espace **%@**, ou l'espace a été supprimé par son propriétaire." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kamu telah dikeluarkan dari ruang **%@**, atau ruang tersebut telah dihapus oleh pemiliknya." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kamu telah dikeluarkan dari ruang **%@**, atau ruang tersebut telah dihapus oleh pemiliknya." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sei stato rimosso dallo spazio **%@**, oppure lo spazio è stato eliminato dal proprietario." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sei stato rimosso dallo spazio **%@**, oppure lo spazio è stato eliminato dal proprietario." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース「%@」から退出させられました。スペース所有者によってスペースごと削除された可能性があります。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース「%@」から退出させられました。スペース所有者によってスペースごと削除された可能性があります。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You were removed from **%@** space, or the space has been deleted by the owner." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You were removed from **%@** space, or the space has been deleted by the owner." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You were removed from **%@** space, or the space has been deleted by the owner." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You were removed from **%@** space, or the space has been deleted by the owner." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je werd verwijderd uit de ruimte '%@' of de ruimte is verwijderd door de eigenaar." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je werd verwijderd uit de ruimte '%@' of de ruimte is verwijderd door de eigenaar." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You were removed from **%@** space, or the space has been deleted by the owner." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You were removed from **%@** space, or the space has been deleted by the owner." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "You were removed from **%@** space, or the space has been deleted by the owner." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "You were removed from **%@** space, or the space has been deleted by the owner." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você foi removido do **%@** espaço, ou o espaço foi excluído pelo proprietário." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você foi removido do **%@** espaço, ou o espaço foi excluído pelo proprietário." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You were removed from **%@** space, or the space has been deleted by the owner." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You were removed from **%@** space, or the space has been deleted by the owner." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы были удалены из пространства '%@', или оно было удалено владельцем." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы были удалены из пространства '%@', или оно было удалено владельцем." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "**%@** alanından çıkarıldınız veya alan sahibi tarafından silindi." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** alanından çıkarıldınız veya alan sahibi tarafından silindi." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You were removed from **%@** space, or the space has been deleted by the owner." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You were removed from **%@** space, or the space has been deleted by the owner." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "You were removed from **%@** space, or the space has been deleted by the owner." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "You were removed from **%@** space, or the space has been deleted by the owner." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您已被移除出 “%@” 空间,或该空间已被所有者删除." + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您已被移除出 “%@” 空间,或该空间已被所有者删除." } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "You were removed from **%@** space, or the space has been deleted by the owner." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "You were removed from **%@** space, or the space has been deleted by the owner." } } } }, - "ParticipantRequestApprovedNotification.Text": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." + "ParticipantRequestApprovedNotification.Text" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ваш запыт на далучэнне да прасторы **%@** быў ухвалены з правамі доступу **%@**. Прастора хутка будзе даступная на вашай прыладзе." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ваш запыт на далучэнне да прасторы **%@** быў ухвалены з правамі доступу **%@**. Прастора хутка будзе даступная на вашай прыладзе." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Deine Anfrage dem Space **%@** beizutreten wurde mit den Zugriffsrechten **%@** akzeptiert. Der Space wird in Kürze auf deinem Gerät verfügbar sein." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Deine Anfrage dem Space **%@** beizutreten wurde mit den Zugriffsrechten **%@** akzeptiert. Der Space wird in Kürze auf deinem Gerät verfügbar sein." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tu solicitud de acceso al espacio **%@** se ha aprobado con derechos de **%@**. El espacio estará pronto disponible en tu dispositivo." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tu solicitud de acceso al espacio **%@** se ha aprobado con derechos de **%@**. El espacio estará pronto disponible en tu dispositivo." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Votre demande de rejoindre l'espace **%@** a été approuvée avec les droits d'accès **%@**. L'espace sera bientôt disponible sur votre appareil." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Votre demande de rejoindre l'espace **%@** a été approuvée avec les droits d'accès **%@**. L'espace sera bientôt disponible sur votre appareil." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Permintaanmu bergabung ke ruang **%@** telah disetujui dengan hak akses **%@**. Ruang ini akan tersedia di akunmu sebentar lagi." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Permintaanmu bergabung ke ruang **%@** telah disetujui dengan hak akses **%@**. Ruang ini akan tersedia di akunmu sebentar lagi." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "La tua richiesta di unirti allo spazio **%@** è stata approvata con diritti di accesso **%@**. Lo spazio sarà disponibile nel tuo account a breve." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "La tua richiesta di unirti allo spazio **%@** è stata approvata con diritti di accesso **%@**. Lo spazio sarà disponibile nel tuo account a breve." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース「**%@**」への参加リクエストが**%@**さんに承認されました。すぐにスペースが追加され、使えるようになります。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース「**%@**」への参加リクエストが**%@**さんに承認されました。すぐにスペースが追加され、使えるようになります。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Jouw verzoek om deel te nemen aan de ruimte **%@** is goedgekeurd met **%@** toegangsrechten. De ruimte zal binnenkort beschikbaar zijn op jouw apparaat." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jouw verzoek om deel te nemen aan de ruimte **%@** is goedgekeurd met **%@** toegangsrechten. De ruimte zal binnenkort beschikbaar zijn op jouw apparaat." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Twoja prośba o dołączenie do przestrzeni **%@** została zatwierdzona z **%@** prawami dostępu. Miejsce będzie wkrótce dostępne na Twoim urządzeniu." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Twoja prośba o dołączenie do przestrzeni **%@** została zatwierdzona z **%@** prawami dostępu. Miejsce będzie wkrótce dostępne na Twoim urządzeniu." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Seu pedido para participar do espaço **%@** foi aprovado com direitos de acesso do **%@**. O espaço estará disponível no seu dispositivo em breve." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Seu pedido para participar do espaço **%@** foi aprovado com direitos de acesso do **%@**. O espaço estará disponível no seu dispositivo em breve." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ваш запрос на присоединение к **%@** пространству был одобрен с **%@** правами доступа. Пространство будет доступно на вашем устройстве в ближайшее время." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ваш запрос на присоединение к **%@** пространству был одобрен с **%@** правами доступа. Пространство будет доступно на вашем устройстве в ближайшее время." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "**%@** alanına katılma isteğiniz **%@** erişim hakları ile onaylandı. Alan yakında cihazınızda kullanılabilir olacaktır." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** alanına katılma isteğiniz **%@** erişim hakları ile onaylandı. Alan yakında cihazınızda kullanılabilir olacaktır." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been approved with **%@** access rights. The space will be available on your device soon." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您加入 **%@** 空间的请求已获批准并获得了 **%@** 访问权限,该空间很快就会在您的设备中显示。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您加入 **%@** 空间的请求已获批准并获得了 **%@** 访问权限,该空间很快就会在您的设备中显示。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您請求加入的 **%@** 空間已獲得批准,並具有 **%@** 存取權限。 該空間很快就可以在您的裝置上使用。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您請求加入的 **%@** 空間已獲得批准,並具有 **%@** 存取權限。 該空間很快就可以在您的裝置上使用。" } } } }, - "ParticipantRequestDeclineNotification.Text": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been declined." + "ParticipantRequestDeclineNotification.Text" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been declined." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ваш запыт на далучэнне да прасторы **%@** быў адхілены." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ваш запыт на далучэнне да прасторы **%@** быў адхілены." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Deine Anfrage dem Space **%@** beizutreten wurde abgelehnt. " + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Deine Anfrage dem Space **%@** beizutreten wurde abgelehnt. " } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Your request to join the **%@** space has been declined." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your request to join the **%@** space has been declined." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tu solicitud de acceso al espacio **%@** se ha rechazado." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tu solicitud de acceso al espacio **%@** se ha rechazado." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been declined." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been declined." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been declined." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been declined." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Votre demande d'adhésion à l'espace **%@** a été refusée." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Votre demande d'adhésion à l'espace **%@** a été refusée." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Permintaanmu bergabung ke ruang **%@** telah ditolak." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Permintaanmu bergabung ke ruang **%@** telah ditolak." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "La tua richiesta di unirti allo spazio **%@** è stata rifiutata." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "La tua richiesta di unirti allo spazio **%@** è stata rifiutata." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース「**%@**」への参加リクエストが拒否されました。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース「**%@**」への参加リクエストが拒否されました。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been declined." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been declined." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been declined." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been declined." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Jouw verzoek om deel te nemen aan de ruimte**%@** is afgewezen." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jouw verzoek om deel te nemen aan de ruimte**%@** is afgewezen." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been declined." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been declined." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Twoja prośba o dołączenie do przestrzeni **%@** została odrzucona." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Twoja prośba o dołączenie do przestrzeni **%@** została odrzucona." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Seu pedido para se juntar ao espaço **%@** foi recusado." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Seu pedido para se juntar ao espaço **%@** foi recusado." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been declined." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been declined." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ваш запрос присоединиться к пространству **%@** был отклонен." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ваш запрос присоединиться к пространству **%@** был отклонен." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "**%@** alanına katılma isteğiniz reddedildi." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** alanına katılma isteğiniz reddedildi." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been declined." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been declined." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Your request to join the **%@** space has been declined." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Your request to join the **%@** space has been declined." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您加入**%@** 空间的请求已被拒绝。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您加入**%@** 空间的请求已被拒绝。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您請求加入的 **%@** 空間已被拒絕。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您請求加入的 **%@** 空間已被拒絕。" } } } }, - "PermissionChangeNotification.Text": { - "comment": "MARK: - Permission notification", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Your access rights were changed to **%@** in the **%@** space." + "PermissionChangeNotification.Text" : { + "comment" : "MARK: - Permission notification", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Your access rights were changed to **%@** in the **%@** space." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вашы правы доступу былі зменены на **%@** у Прасторы **%@**." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вашы правы доступу былі зменены на **%@** у Прасторы **%@**." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Deine Zugriffsrechte wurden zu **%@** geändert im Space **%@**" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Deine Zugriffsrechte wurden zu **%@** geändert im Space **%@**" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Your access rights were changed to **%@** in the **%@** space." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Your access rights were changed to **%@** in the **%@** space." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tus derechos de acceso han cambiado a **%@** en el espacio **%@**." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tus derechos de acceso han cambiado a **%@** en el espacio **%@**." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Your access rights were changed to **%@** in the **%@** space." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Your access rights were changed to **%@** in the **%@** space." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Your access rights were changed to **%@** in the **%@** space." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Your access rights were changed to **%@** in the **%@** space." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vos droits d'accès ont été changés en **%@** dans l'espace **%@**." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vos droits d'accès ont été changés en **%@** dans l'espace **%@**." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hak aksesmu telah diganti menjadi **%@** di ruang **%@**." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hak aksesmu telah diganti menjadi **%@** di ruang **%@**." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "I tuoi diritti di accesso sono stati modificati in **%@** nello spazio **%@**." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "I tuoi diritti di accesso sono stati modificati in **%@** nello spazio **%@**." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "アクセス権が「**%@**」にスペース「**%@**」では変更されました。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "アクセス権が「**%@**」にスペース「**%@**」では変更されました。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Your access rights were changed to **%@** in the **%@** space." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Your access rights were changed to **%@** in the **%@** space." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Your access rights were changed to **%@** in the **%@** space." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Your access rights were changed to **%@** in the **%@** space." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Jouw toegangsrechten werden veranderd naar **%@** in de ruimte **%@**." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jouw toegangsrechten werden veranderd naar **%@** in de ruimte **%@**." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Your access rights were changed to **%@** in the **%@** space." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Your access rights were changed to **%@** in the **%@** space." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Twoje prawa dostępu zostały zmienione na **%@** w przestrzeni **%@**." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Twoje prawa dostępu zostały zmienione na **%@** w przestrzeni **%@**." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Seus direitos de acesso foram alterados para **%@** no espaço **%@." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Seus direitos de acesso foram alterados para **%@** no espaço **%@." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Your access rights were changed to **%@** in the **%@** space." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Your access rights were changed to **%@** in the **%@** space." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ваши права доступа были изменены на **%@** в пространстве **%@**." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ваши права доступа были изменены на **%@** в пространстве **%@**." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Erişim haklarınız **%@** alanında **%@** olarak değiştirildi." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Erişim haklarınız **%@** alanında **%@** olarak değiştirildi." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Your access rights were changed to **%@** in the **%@** space." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Your access rights were changed to **%@** in the **%@** space." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Your access rights were changed to **%@** in the **%@** space." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Your access rights were changed to **%@** in the **%@** space." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您在 **%@** 空间中的访问权限已更改为 **%@**。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您在 **%@** 空间中的访问权限已更改为 **%@**。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您在 **%@** 空間的存取權限已變更為 **%@**。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您在 **%@** 空間的存取權限已變更為 **%@**。" } } } }, - "Properties": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الخصائص" + "Properties" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الخصائص" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Уласцівасці" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Уласцівасці" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Eigenschaften" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenschaften" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Properties" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Properties" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Propiedades" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Propiedades" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Properties" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Properties" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Propriétés" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Propriétés" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Properti" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Properti" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Proprietà" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Proprietà" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プロパティ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プロパティ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "속성" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "속성" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Egenskaper" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Egenskaper" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Eigenschappen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenschappen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Properties" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Właściwości" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Właściwości" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Propriedades" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Propriedades" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Properties" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Свойства" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Свойства" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Özellikler" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Özellikler" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Properties" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Thuộc tính" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Thuộc tính" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "属性" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "属性" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "屬性" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "屬性" } } } }, - "Properties formats": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تنسيقات الخصائص" + "Properties formats" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تنسيقات الخصائص" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Formate der Eigenschaften" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Formate der Eigenschaften" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Properties formats" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Properties formats" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Formatos de propiedades" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Formatos de propiedades" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Format atribut" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Format atribut" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Formati delle proprietà" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Formati delle proprietà" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プロパティ種類" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プロパティ種類" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Eigenschappen formaten" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenschappen formaten" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Формат свойств" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Формат свойств" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Özellik formatları" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Özellik formatları" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "属性格式" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "属性格式" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Properties formats" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties formats" } } } }, - "Publishing.Error.NoDomain": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Failed to load your domain. Please try again." + "Publishing.Error.NoDomain" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to load your domain. Please try again." } } } }, - "Publishing.Error.NoObjectData": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Failed to load object data. Please try again." + "Publishing.Error.NoObjectData" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Failed to load object data. Please try again." } } } }, - "Publishing.URL.placeholder": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "insert-page-name-here" + "Publishing.URL.placeholder" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "insert-page-name-here" } } } }, - "Publishing.WebBanner.LiveOnWeb": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "This object is live on the web." + "Publishing.WebBanner.LiveOnWeb" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This object is live on the web." } } } }, - "Publishing.WebBanner.ViewSite": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "View site ↗︎" + "Publishing.WebBanner.ViewSite" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "View site ↗︎" } } } }, - "PublishingToWeb.published": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Successfully published" + "PublishingToWeb.published" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Successfully published" } } } }, - "PublishingToWeb.unpublished": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Successfully unpublished" + "PublishingToWeb.unpublished" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Successfully unpublished" } } } }, - "PublishingToWeb.updated": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Successfully updated" + "PublishingToWeb.updated" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Successfully updated" } } } }, - "PushNotifications.DisabledAlert.description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "PushNotifications.DisabledAlert.description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No has permitido las notificaciones. Eso significa que no verás avisos de nuevos mensajes, menciones o invitaciones. Ve a los ajustes para activarlas." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No has permitido las notificaciones. Eso significa que no verás avisos de nuevos mensajes, menciones o invitaciones. Ve a los ajustes para activarlas." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sepertinya notifikasi tidak diaktifkan. Ini berarti kamu tidak akan mendapat pemberitahuan pesan, sebutan, atau undangan baru. Kunjungi Setelan untuk menyalakannya." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sepertinya notifikasi tidak diaktifkan. Ini berarti kamu tidak akan mendapat pemberitahuan pesan, sebutan, atau undangan baru. Kunjungi Setelan untuk menyalakannya." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sembra che tu non abbia consentito le notifiche. Ciò significa che non vedrai nuovi messaggi, menzioni o inviti. Vai alle impostazioni per attivarli." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sembra che tu non abbia consentito le notifiche. Ciò significa che non vedrai nuovi messaggi, menzioni o inviti. Vai alle impostazioni per attivarli." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "通知が許可されていません。新着メッセージやメンション、招待などの通知を受け取るには、設定から通知を有効にください。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "通知が許可されていません。新着メッセージやメンション、招待などの通知を受け取るには、設定から通知を有効にください。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bildirimlere izin vermemiş görünüyorsunuz. Bu, yeni mesajları, bahsetmeleri veya davetleri göremeyeceğiniz anlamına gelir. Ayarlara giderek bunları etkinleştirin." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bildirimlere izin vermemiş görünüyorsunuz. Bu, yeni mesajları, bahsetmeleri veya davetleri göremeyeceğiniz anlamına gelir. Ayarlara giderek bunları etkinleştirin." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "It looks like you didn’t allow notifications. That means you won’t see new messages, mentions, or invites. Go to settings to turn them on." } } } }, - "PushNotifications.DisabledAlert.Skip.button": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "PushNotifications.DisabledAlert.Skip.button" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Vorerst überspringen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Vorerst überspringen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Skip for now" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Skip for now" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Omitir por ahora" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Omitir por ahora" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak dulu" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak dulu" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Salta per ora" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Salta per ora" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "あとで" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "あとで" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şimdilik atla" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Şimdilik atla" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Skip for now" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Skip for now" } } } }, - "PushNotifications.DisabledAlert.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "PushNotifications.DisabledAlert.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Notifications are still turned off" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications are still turned off" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Las notificaciones siguen desactivadas" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Las notificaciones siguen desactivadas" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Notifikasi belum dinyalakan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifikasi belum dinyalakan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Le notifiche sono ancora disattivate" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Le notifiche sono ancora disattivate" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "まだ通知はオンになっていません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "まだ通知はオンになっていません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bildirimler hala kapalı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bildirimler hala kapalı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Notifications are still turned off" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are still turned off" } } } }, - "PushNotifications.Message.Attachment.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "PushNotifications.Message.Attachment.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Anhang" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Anhang" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Attachment" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Attachment" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Adjunto" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Adjunto" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Pièce jointe" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Pièce jointe" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Lampiran" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Lampiran" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Allegato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Allegato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "添付ファイル" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "添付ファイル" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Ek dosya" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ek dosya" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Attachment" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Attachment" } } } }, - "PushNotifications.RequestAlert.Description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "PushNotifications.RequestAlert.Description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Recibe notificaciones al instante cuando te envíen un mensaje o te mencionen en tus espacios." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Recibe notificaciones al instante cuando te envíen un mensaje o te mencionen en tus espacios." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Recevez une notification instantanée lorsque quelqu'un vous envoie des messages ou vous mentionne dans vos espaces." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Recevez une notification instantanée lorsque quelqu'un vous envoie des messages ou vous mentionne dans vos espaces." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Dapatkan pemberitahuan segera ketika seseorang mengirim pesan atau menyebutmu di ruangmu." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Dapatkan pemberitahuan segera ketika seseorang mengirim pesan atau menyebutmu di ruangmu." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ricevi una notifica immediata quando qualcuno ti invia un messaggio o ti menziona nei tuoi spazi." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ricevi una notifica immediata quando qualcuno ti invia un messaggio o ti menziona nei tuoi spazi." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースでメッセージやメンションがあった場合にすぐに通知を受け取ります。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペースでメッセージやメンションがあった場合にすぐに通知を受け取ります。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alanlarınızda biri size mesaj attığında veya sizden bahsettiğinde anında bildirim alın." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alanlarınızda biri size mesaj attığında veya sizden bahsettiğinde anında bildirim alın." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Get notified instantly when someone messages or mentions you in your spaces." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Get notified instantly when someone messages or mentions you in your spaces." } } } }, - "PushNotifications.RequestAlert.NotificationTitle": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "New Message" + "PushNotifications.RequestAlert.NotificationTitle" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "New Message" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Neue Nachricht" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Neue Nachricht" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "New Message" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "New Message" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Nuevo mensaje" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Nuevo mensaje" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "New Message" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "New Message" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Nouveau message" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nouveau message" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pesan Baru" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pesan Baru" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nuovo messaggio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nuovo messaggio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "新着メッセージ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "新着メッセージ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "New Message" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "New Message" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "New Message" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "New Message" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "New Message" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "New Message" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "New Message" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "New Message" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yeni Mesaj" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yeni Mesaj" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "New Message" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "New Message" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "New Message" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "New Message" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "New Message" } } } }, - "PushNotifications.RequestAlert.PrimaryButton": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "PushNotifications.RequestAlert.PrimaryButton" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Benachrichtigungen aktivieren" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Benachrichtigungen aktivieren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Enable notifications" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enable notifications" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Activar notificaciones" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Activar notificaciones" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Activer les notifications" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Activer les notifications" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Nyalakan Pemberitahuan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Nyalakan Pemberitahuan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Abilita le notifiche" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Abilita le notifiche" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "通知を有効化" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "通知を有効化" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bildirimleri etkinleştir" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bildirimleri etkinleştir" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Enable notifications" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Enable notifications" } } } }, - "PushNotifications.RequestAlert.SecondaryButton": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "ليس الآن" + "PushNotifications.RequestAlert.SecondaryButton" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "ليس الآن" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Не зараз" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Не зараз" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nicht jetzt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nicht jetzt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Not now" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Not now" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ahora no" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ahora no" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Not now" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Not now" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Not now" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Not now" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Plus tard" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Plus tard" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak dulu" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak dulu" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non ora" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non ora" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "あとで" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "あとで" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Not now" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Not now" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Not now" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Not now" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Niet nu" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Niet nu" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Not now" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Not now" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie teraz" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie teraz" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Agora não" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Agora não" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Not now" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Not now" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Не сейчас" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Не сейчас" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şimdi değil" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Şimdi değil" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Not now" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Not now" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Để sau" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Để sau" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "暂不" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "暂不" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "稍後" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "稍後" } } } }, - "PushNotifications.RequestAlert.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "PushNotifications.RequestAlert.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Push-Benachrichtigungen einschalten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Push-Benachrichtigungen einschalten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Turn on push notifications" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Turn on push notifications" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Activar las notificaciones push" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Activar las notificaciones push" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Activer les notifications push" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Activer les notifications push" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Nyalakan pemberitahuan push" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Nyalakan pemberitahuan push" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Attiva le notifiche push" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Attiva le notifiche push" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プッシュ通知を有効化" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プッシュ通知を有効化" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Anlık bildirimleri aç" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Anlık bildirimleri aç" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Turn on push notifications" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn on push notifications" } } } }, - "PushNotifications.Settings.DisabledAlert.description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "PushNotifications.Settings.DisabledAlert.description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Receive notifications about new messages by enabling them in your device settings." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Para recibir notificaciones de mensajes nuevos, actívalas en los ajustes del dispositivo." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Para recibir notificaciones de mensajes nuevos, actívalas en los ajustes del dispositivo." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Recevez des notifications sur les nouveaux messages en les activant dans les paramètres de votre appareil." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Recevez des notifications sur les nouveaux messages en les activant dans les paramètres de votre appareil." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Terima pemberitahuan pesan baru dengan mengaktifkannya di setelan perangkatmu." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Terima pemberitahuan pesan baru dengan mengaktifkannya di setelan perangkatmu." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ricevi le notifiche dei nuovi messaggi attivandole nelle impostazioni del dispositivo." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ricevi le notifiche dei nuovi messaggi attivandole nelle impostazioni del dispositivo." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メッセージ通知を受け取るには、デバイスの設定から通知を有効にしてください。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メッセージ通知を受け取るには、デバイスの設定から通知を有効にしてください。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Cihaz ayarlarınızda etkinleştirerek yeni mesajlarla ilgili bildirimler alın." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Cihaz ayarlarınızda etkinleştirerek yeni mesajlarla ilgili bildirimler alın." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Receive notifications about new messages by enabling them in your device settings." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Receive notifications about new messages by enabling them in your device settings." } } } }, - "PushNotifications.Settings.DisabledAlert.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "PushNotifications.Settings.DisabledAlert.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Benachrichtigungen sind deaktiviert" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Benachrichtigungen sind deaktiviert" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Notifications are disabled" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notifications are disabled" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Las notificaciones están desactivadas" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Las notificaciones están desactivadas" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Les notifications sont désactivées" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Les notifications sont désactivées" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pemberitahuan dinonaktifkan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pemberitahuan dinonaktifkan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Le notifiche sono disabilitate" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Le notifiche sono disabilitate" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "通知が無効です" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "通知が無効です" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bildirimler devre dışı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bildirimler devre dışı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Notifications are disabled" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications are disabled" } } } }, - "PushNotifications.Settings.Status.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "PushNotifications.Settings.Status.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Mitteilungsbenachrichtigungen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Mitteilungsbenachrichtigungen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Message Notifications" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Message Notifications" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Notificaciones de mensajes" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Notificaciones de mensajes" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Notifications de message" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifications de message" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pemberitahuan Pesan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pemberitahuan Pesan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Notifiche dei messaggi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Notifiche dei messaggi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メッセージ通知" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メッセージ通知" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Mesaj Bildirimleri" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Mesaj Bildirimleri" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Message Notifications" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Message Notifications" } } } }, - "QR.join.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "QR.join.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Über QR-Code beitreten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Über QR-Code beitreten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Join via QR Code" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Join via QR Code" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Unirse con código QR" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Unirse con código QR" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Gabung via kode QR" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Gabung via kode QR" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "QRコードで参加" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "QRコードで参加" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Karekod ile katıl" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Karekod ile katıl" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Join via QR Code" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Join via QR Code" } } } }, - "QR.scan.error.custom.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "QR.scan.error.custom.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Scanning error" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scanning error" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Error al escanear" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Error al escanear" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Galat pemindaian" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Galat pemindaian" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スキャンエラー" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スキャンエラー" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Tarama hatası" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tarama hatası" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Scanning error" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Scanning error" } } } }, - "QR.scan.error.invalidFormat.message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "QR.scan.error.invalidFormat.message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The scanned QR code contains URL in invalid format" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The scanned QR code contains URL in invalid format" } }, - "es": { - "stringUnit": { - "state": "new", - "value": " Este código QR contiene una URL cuyo formato no es válido" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : " Este código QR contiene una URL cuyo formato no es válido" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kode QR terpindai mengadung URL dengan format invalid" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kode QR terpindai mengadung URL dengan format invalid" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スキャンされたQRコードに無効なURLが含まれています" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スキャンされたQRコードに無効なURLが含まれています" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Taranan karekod geçersiz biçimde URL içeriyor" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Taranan karekod geçersiz biçimde URL içeriyor" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains URL in invalid format" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains URL in invalid format" } } } }, - "QR.scan.error.invalidQR.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "QR.scan.error.invalidQR.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ungültiger QR-Code" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ungültiger QR-Code" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invalid QR Code" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invalid QR Code" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "El código QR no es válido" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "El código QR no es válido" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kode QR Tidak Valid" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kode QR Tidak Valid" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "無効なQRコード" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "無効なQRコード" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Geçersiz karekod" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Geçersiz karekod" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Invalid QR Code" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Invalid QR Code" } } } }, - "QR.scan.error.notUrl.message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "QR.scan.error.notUrl.message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The scanned QR code doesn't contain a valid URL" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Este código QR no contiene una URL válida" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Este código QR no contiene una URL válida" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kode QR terpindai tidak mengandung URL valid" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kode QR terpindai tidak mengandung URL valid" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スキャンされたQRコードに有効なURLが含まれていません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スキャンされたQRコードに有効なURLが含まれていません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Taranan karekod geçerli bir URL içermiyor." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Taranan karekod geçerli bir URL içermiyor." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code doesn't contain a valid URL" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code doesn't contain a valid URL" } } } }, - "QR.scan.error.tryAgain": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "حاول مرة أخرى" + "QR.scan.error.tryAgain" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "حاول مرة أخرى" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Паспрабуйце яшчэ раз" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Паспрабуйце яшчэ раз" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Erneut versuchen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Erneut versuchen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Try again" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Try again" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Inténtalo de nuevo" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Inténtalo de nuevo" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Try again" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Try again" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Try again" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Try again" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Essayez de nouveau" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Essayez de nouveau" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Coba lagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Coba lagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Riprova" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Riprova" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "もう一度実行" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "もう一度実行" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Try again" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Try again" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Prøv igjen" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Prøv igjen" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Probeer opnieuw" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Probeer opnieuw" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Try again" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Try again" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Spróbuj ponownie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Spróbuj ponownie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tente novamente" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tente novamente" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Try again" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Try again" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Попробуйте еще раз" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Попробуйте еще раз" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Tekrar deneyin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tekrar deneyin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Try again" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Try again" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Thử lại" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Thử lại" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "请再试一次" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "请再试一次" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "請再試一次" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "請再試一次" } } } }, - "QR.scan.error.wrongLink.message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "QR.scan.error.wrongLink.message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The scanned QR code contains different action" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The scanned QR code contains different action" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Este código QR contiene diferentes acciones" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Este código QR contiene diferentes acciones" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kode QR terpindai mengandung tindakan lain" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kode QR terpindai mengandung tindakan lain" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スキャンされたQRコードは別のアクションが含まれています" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スキャンされたQRコードは別のアクションが含まれています" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Taranan karekod farklı eylemler içeriyor" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Taranan karekod farklı eylemler içeriyor" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "The scanned QR code contains different action" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "The scanned QR code contains different action" } } } }, - "Relation.Create.Row.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Create “%@”" + "Relation.Create.Row.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Create “%@”" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Стварыць “%@”" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Стварыць “%@”" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "„%@“ erstellen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "„%@“ erstellen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Create “%@”" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create “%@”" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Crear “%@”" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Crear “%@”" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Create “%@”" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Create “%@”" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Luo “%@”" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Luo “%@”" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Créer \"%@”" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Créer \"%@”" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buat “%@”" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buat “%@”" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Crea “%@”" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Crea “%@”" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "「%@」を作成" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "「%@」を作成" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "\"%@\" 만들기" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "\"%@\" 만들기" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Create “%@”" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Create “%@”" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Maak \"%@\"" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Maak \"%@\"" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "“%@” ତିଆରି କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "“%@” ତିଆରି କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Utwórz „%@”" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Utwórz „%@”" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Criar \"%@”" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Criar \"%@”" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Criar “%@\"" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Criar “%@\"" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Создать %@" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Создать %@" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "\"%@\" oluştur" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "\"%@\" oluştur" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Create “%@”" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Create “%@”" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tạo “%@”" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tạo “%@”" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "创建 “%@”" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "创建 “%@”" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "建立 \"%@\"" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "建立 \"%@\"" } } } }, - "Relation.Create.Textfield.placeholder": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "أدخل الاسم..." + "Relation.Create.Textfield.placeholder" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "أدخل الاسم..." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Увядзіце назву..." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Увядзіце назву..." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Name eingeben..." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Name eingeben..." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Enter name..." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Enter name..." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Introducir nombre…" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Introducir nombre…" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Enter name..." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Enter name..." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Anna nimi..." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Anna nimi..." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Saisir un nom..." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Saisir un nom..." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Masukkan nama..." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Masukkan nama..." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Inserisci nome..." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Inserisci nome..." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "名前を入力…" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "名前を入力…" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "이름 입력..." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "이름 입력..." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Skriv inn navn..." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Skriv inn navn..." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voer naam in..." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voer naam in..." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ନାମ ପ୍ରବେଶ କରନ୍ତୁ..." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ନାମ ପ୍ରବେଶ କରନ୍ତୁ..." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wprowadź nazwę..." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wprowadź nazwę..." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Inserir nome..." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Inserir nome..." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Introduzir nome..." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Introduzir nome..." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Введите название..." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Введите название..." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İsim girin..." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İsim girin..." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Enter name..." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Enter name..." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Nhập tên..." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Nhập tên..." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "输入名称..." + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "输入名称..." } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "輸入名稱..." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "輸入名稱..." } } } }, - "Relation.Delete.Alert.Description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "The option will be permanently removed from your space." + "Relation.Delete.Alert.Description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "The option will be permanently removed from your space." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Параметр будзе назаўсёды выдалены з вашай прасторы." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Параметр будзе назаўсёды выдалены з вашай прасторы." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Die Option wird dauerhaft aus Ihrem Bereich entfernt." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Die Option wird dauerhaft aus Ihrem Bereich entfernt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The option will be permanently removed from your space." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The option will be permanently removed from your space." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "La opción se eliminará definitivamente de tu espacio." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "La opción se eliminará definitivamente de tu espacio." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "The option will be permanently removed from your space." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "The option will be permanently removed from your space." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Tämä vaihtoehto poistetaan pysyvästi tilastasi." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tämä vaihtoehto poistetaan pysyvästi tilastasi." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "L'option sera définitivement retirée de votre espace." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "L'option sera définitivement retirée de votre espace." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Opsi ini akan dihapus secara permanen dari ruang Anda." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Opsi ini akan dihapus secara permanen dari ruang Anda." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "L'opzione verrà rimossa definitivamente dal tuo spazio." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "L'opzione verrà rimossa definitivamente dal tuo spazio." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "このオプションがスペースから完全に削除されます。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "このオプションがスペースから完全に削除されます。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "이 옵션은 스페이스에서 영구적으로 제거됩니다." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "이 옵션은 스페이스에서 영구적으로 제거됩니다." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Alternativet vil bli permanent fjernet fra ditt rom." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Alternativet vil bli permanent fjernet fra ditt rom." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "De optie wordt permanent verwijderd uit jouw ruimte." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "De optie wordt permanent verwijderd uit jouw ruimte." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ବିକଳ୍ପ ଆପଣଙ୍କ ସ୍ଥାନରୁ ସ୍ଥାୟୀ ଭାବରେ ଅପସାରଣ ହେବ।" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ବିକଳ୍ପ ଆପଣଙ୍କ ସ୍ଥାନରୁ ସ୍ଥାୟୀ ଭାବରେ ଅପସାରଣ ହେବ।" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Opcja zostanie trwale usunięta z Twojej przestrzeni." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Opcja zostanie trwale usunięta z Twojej przestrzeni." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "A opção será removida permanentemente do seu espaço." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "A opção será removida permanentemente do seu espaço." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "A opção será removida permanentemente do seu espaço." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "A opção será removida permanentemente do seu espaço." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Эта опция будет удалена из вашего рабочего пространства." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Эта опция будет удалена из вашего рабочего пространства." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Seçenek, alanınızdan kalıcı olarak kaldırılacaktır." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Seçenek, alanınızdan kalıcı olarak kaldırılacaktır." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "The option will be permanently removed from your space." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "The option will be permanently removed from your space." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Lựa chọn này sẽ bị xoá vĩnh viễn khỏi không gian của bạn." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Lựa chọn này sẽ bị xoá vĩnh viễn khỏi không gian của bạn." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "此选项将从您的空间永久删除。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "此选项将从您的空间永久删除。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "該選項將從您的空間中永久刪除" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "該選項將從您的空間中永久刪除" } } } }, - "Relation.Delete.Alert.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "هل أنت متأكد؟" + "Relation.Delete.Alert.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "هل أنت متأكد؟" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вы ўпэўнены?" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы ўпэўнены?" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Sind Sie sicher?" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Sind Sie sicher?" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Are you sure?" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Are you sure?" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¿Seguro?" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¿Seguro?" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Are you sure?" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure?" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Are you sure?" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure?" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Êtes-vous sûr ?" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Êtes-vous sûr ?" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Apakah kamu yakin?" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Apakah kamu yakin?" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sei sicuro/a?" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sei sicuro/a?" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "本当によろしいですか?" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "本当によろしいですか?" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Are you sure?" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure?" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Er du sikker?" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Er du sikker?" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Weet je het zeker?" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Weet je het zeker?" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Are you sure?" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Are you sure?" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jesteś pewny?" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jesteś pewny?" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você tem certeza?" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você tem certeza?" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Você tem certeza?" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Você tem certeza?" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы уверены?" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы уверены?" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Emin misiniz?" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Emin misiniz?" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Ви впевнені?" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Ви впевнені?" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bạn chắc chưa?" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bạn chắc chưa?" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "是否确定?" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "是否确定?" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您確定嗎?" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您確定嗎?" } } } }, - "Relation.Deleted": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "خاصية محذوفة" + "Relation.Deleted" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "خاصية محذوفة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Deleted property" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted property" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Gelöschte Eigenschaft" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Gelöschte Eigenschaft" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Deleted property" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleted property" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Propiedad eliminada" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Propiedad eliminada" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Deleted property" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted property" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Deleted property" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted property" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Propriété supprimée" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Propriété supprimée" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Properti terhapus" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Properti terhapus" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Proprietà eliminata" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Proprietà eliminata" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "削除されたプロパティ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "削除されたプロパティ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Deleted property" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted property" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Deleted property" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted property" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verwijderde eigenschap" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwijderde eigenschap" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Deleted property" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted property" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Deleted property" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted property" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Propriedade deletada" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Propriedade deletada" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Deleted property" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted property" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удаленное свойство" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удаленное свойство" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Silinmiş özellik" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Silinmiş özellik" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Deleted property" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted property" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Deleted property" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted property" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "已删除属性" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "已删除属性" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Deleted property" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted property" } } } }, - "Relation.EmptyState.Blocked.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الخاصية فارغة" + "Relation.EmptyState.Blocked.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الخاصية فارغة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Die Eigenschaft ist leer" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Die Eigenschaft ist leer" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The property is empty" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The property is empty" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "La propiedad está vacía" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "La propiedad está vacía" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "La propriété est vide" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "La propriété est vide" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Propertinya kosong" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Propertinya kosong" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プロパティが空です" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プロパティが空です" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "De eigenschap is leeg" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "De eigenschap is leeg" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu özellik boş" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu özellik boş" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "该属性为空" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "该属性为空" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "The property is empty" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "The property is empty" } } } }, - "Relation.EmptyState.description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لم يتم العثور على شيء. أنشئ الخيار الأول للبدء." + "Relation.EmptyState.description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لم يتم العثور على شيء. أنشئ الخيار الأول للبدء." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Нічога не знойдзена. Стварыце першую опцыю для пачатку." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Нічога не знойдзена. Стварыце першую опцыю для пачатку." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nichts gefunden. Erstelle zuerst eine Option zum Starten." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nichts gefunden. Erstelle zuerst eine Option zum Starten." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Nothing found. Create first option to start." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Nothing found. Create first option to start." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No se ha encontrado nada. Crea la primera opción para comenzar." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No se ha encontrado nada. Crea la primera opción para comenzar." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Nothing found. Create first option to start." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Nothing found. Create first option to start." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Mitään ei löytynyt. Luo ensimmäinen valinta aloittaaksesi." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Mitään ei löytynyt. Luo ensimmäinen valinta aloittaaksesi." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Rien n'a été trouvé. Créez la première option pour commencer." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Rien n'a été trouvé. Créez la première option pour commencer." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak ada yang ditemukan. Buat opsi pertama untuk memulai." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak ada yang ditemukan. Buat opsi pertama untuk memulai." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nessun risultato. Crea la prima opzione per iniziare." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nessun risultato. Crea la prima opzione per iniziare." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "何も見つかりませんでした。開始する最初のオプションを作成してください。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "何も見つかりませんでした。開始する最初のオプションを作成してください。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "찾을 수 없습니다. 첫 번째 옵션을 생성하여 시작합니다." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "찾을 수 없습니다. 첫 번째 옵션을 생성하여 시작합니다." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Fant ingenting. Opprett første alternativ for å starte." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Fant ingenting. Opprett første alternativ for å starte." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Niets gevonden. Maak een eerste optie om te starten." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Niets gevonden. Maak een eerste optie om te starten." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "କିଛି ମିଳିଲା ନାହିଁ। ଆରମ୍ଭ କରିବାକୁ ପ୍ରଥମ ବିକଳ୍ପ ସୃଷ୍ଟି କରନ୍ତୁ।" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "କିଛି ମିଳିଲା ନାହିଁ। ଆରମ୍ଭ କରିବାକୁ ପ୍ରଥମ ବିକଳ୍ପ ସୃଷ୍ଟି କରନ୍ତୁ।" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nic nie znaleziono. Utwórz pierwszą opcję, aby rozpocząć." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nic nie znaleziono. Utwórz pierwszą opcję, aby rozpocząć." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Nada foi encontrado. Crie a primeira opção para começar." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Nada foi encontrado. Crie a primeira opção para começar." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Nada foi encontrado. Crie a primeira opção para começar." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Nada foi encontrado. Crie a primeira opção para começar." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ничего не найдено. Создайте первую опцию для начала." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ничего не найдено. Создайте первую опцию для начала." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Hiçbir şey bulunamadı. Başlamak için ilk seçeneği oluşturun." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Hiçbir şey bulunamadı. Başlamak için ilk seçeneği oluşturun." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Nothing found. Create first option to start." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Nothing found. Create first option to start." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Nothing found. Create first option to start." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Nothing found. Create first option to start." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "什么也没有。创建第一个选项以开始。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "什么也没有。创建第一个选项以开始。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "什麼也沒有。建立第一個選項以開始。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "什麼也沒有。建立第一個選項以開始。" } } } }, - "Relation.EmptyState.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لا توجد خيارات" + "Relation.EmptyState.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لا توجد خيارات" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Няма опцый" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Няма опцый" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Keine Optionen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Keine Optionen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No options" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No options" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Sin opciones" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Sin opciones" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No options" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No options" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Ei valintoja" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ei valintoja" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Aucune option" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Aucune option" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak ada opsi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak ada opsi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nessuna opzione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nessuna opzione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "オプションなし" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "オプションなし" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "옵션 없음" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "옵션 없음" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ingen valg" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ingen valg" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geen opties" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geen opties" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "କୌଣସି ବିକଳ୍ପ ନାହିଁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "କୌଣସି ବିକଳ୍ପ ନାହିଁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Brak opcji" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Brak opcji" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Nenhuma opção" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Nenhuma opção" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "No options" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "No options" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Опций нет" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Опций нет" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Seçenek yok" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Seçenek yok" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "No options" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "No options" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không có lựa chọn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không có lựa chọn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "无选项" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "无选项" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "無選項" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "無選項" } } } }, - "Relation.Format.Checkbox.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "مربع اختيار" + "Relation.Format.Checkbox.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "مربع اختيار" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Птушка" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Птушка" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Checkbox" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Checkbox" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Checkbox" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Checkbox" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Casilla" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Casilla" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Checkbox" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Checkbox" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Tarkastuslaatikko" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tarkastuslaatikko" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Case à cocher" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Case à cocher" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kotak centang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kotak centang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Casella di scelta" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Casella di scelta" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "チェックボックス" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "チェックボックス" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "체크박스" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "체크박스" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Avkrysningsboks" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Avkrysningsboks" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Selectievakje" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Selectievakje" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଚେକବାକ୍ସ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଚେକବାକ୍ସ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Pole wyboru" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Pole wyboru" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Caixa de seleção" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Caixa de seleção" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Checkbox" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Checkbox" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Флажок" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Флажок" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Onay kutusu" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Onay kutusu" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Прапорець" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Прапорець" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Ô tick" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ô tick" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "复选框" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "复选框" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "核取方塊列表" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "核取方塊列表" } } } }, - "Relation.Format.Date.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تاريخ" + "Relation.Format.Date.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تاريخ" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Дата" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Дата" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Datum" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Datum" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Date" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Date" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Fecha" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Fecha" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Date" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Date" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Päivämäärä" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Päivämäärä" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Date" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Date" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tanggal" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tanggal" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Data" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Data" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "日付" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "日付" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "날짜" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "날짜" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Dato" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Dato" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Datum" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Datum" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ତାରିଖ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ତାରିଖ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Data" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Data" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Data" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Data" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Data" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Data" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Дата" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Дата" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Tarih" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tarih" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Дата" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Дата" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Ngày tháng" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ngày tháng" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "日期" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "日期" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "日期" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "日期" } } } }, - "Relation.Format.Email.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "بريد إلكتروني" + "Relation.Format.Email.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "بريد إلكتروني" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Эл. пошта" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Эл. пошта" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "E-Mail" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "E-Mail" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Email" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Email" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Correo electrónico" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Correo electrónico" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Email" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Email" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Email" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Email" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Email" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Email" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Surel" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Surel" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Email" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Email" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メールアドレス" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メールアドレス" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "이메일" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "이메일" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "E-post" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "E-post" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "E-mailadres" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "E-mailadres" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଇମେଲ୍" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଇମେଲ୍" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Adres mailowy" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Adres mailowy" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Email" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Email" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Email" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Email" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "E-mail" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "E-mail" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "E-Posta" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "E-Posta" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Ел. пошта" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Ел. пошта" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Email" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Email" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "电子邮件" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "电子邮件" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "email" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "email" } } } }, - "Relation.Format.FileMedia.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "File & Media" + "Relation.Format.FileMedia.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "File & Media" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Файлы і Медыя" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Файлы і Медыя" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Dateien & Medien" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Dateien & Medien" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "File & Media" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "File & Media" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Archivos y medios" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Archivos y medios" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "File & Media" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "File & Media" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Tiedosto & Media" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tiedosto & Media" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Fichier & Média" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Fichier & Média" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Berkas & Media" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Berkas & Media" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "File & Media" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "File & Media" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ファイルとメディア" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ファイルとメディア" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "파일 및 미디어" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "파일 및 미디어" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Fil & Media" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Fil & Media" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bestand & media" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bestand & media" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଫାଇଲ୍ ଏବଂ ମିଡିଆ " + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଫାଇଲ୍ ଏବଂ ମିଡିଆ " } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Plik i media" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Plik i media" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Arquivos e mídias" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Arquivos e mídias" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Ficheiro & Media" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Ficheiro & Media" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Файл и Медиа" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Файл и Медиа" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Dosya & Medya" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Dosya & Medya" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Файл і медіа" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Файл і медіа" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tập tin & Đa phương tiện" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tập tin & Đa phương tiện" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "文件 & 媒体" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "文件 & 媒体" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "檔案與媒體" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "檔案與媒體" } } } }, - "Relation.Format.Number.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "رقم" + "Relation.Format.Number.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "رقم" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Нумар" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Нумар" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nummer" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nummer" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Number" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Number" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Número" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Número" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Number" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Number" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Numero" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Numero" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Nombre" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nombre" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Angka" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Angka" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Numero" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Numero" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "数字" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "数字" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "숫자" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "숫자" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Tall" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Tall" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Nummer" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nummer" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ନମ୍ବର" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ନମ୍ବର" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Liczba" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Liczba" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Número" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Número" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Número" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Número" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Число" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Число" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sayı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sayı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Число" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Число" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Số" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Số" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "数目" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "数目" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "數字" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "數字" } } } }, - "Relation.Format.Object.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "Relation.Format.Object.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Relation object" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Relation object" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Objeto de relación" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Objeto de relación" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Objek koneksi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Objek koneksi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "関連するオブジェクト" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "関連するオブジェクト" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Relatie object" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Relatie object" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İlişki nesnesi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İlişki nesnesi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "相关的对象" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "相关的对象" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Relation object" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Relation object" } } } }, - "Relation.Format.Phone.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "رقم الهاتف" + "Relation.Format.Phone.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "رقم الهاتف" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Нумар тэлефона" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Нумар тэлефона" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Telefonnummer" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Telefonnummer" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Phone number" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Phone number" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Número de teléfono" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Número de teléfono" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Phone number" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Phone number" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Puhelinnumero" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Puhelinnumero" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "N° de téléphone" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "N° de téléphone" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Nomor telepon" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Nomor telepon" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Numero di telefono" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Numero di telefono" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "電話番号" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "電話番号" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "전화번호" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "전화번호" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Telefonnummer" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Telefonnummer" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Telefoonnummer" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Telefoonnummer" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଫୋନ୍ ନମ୍ବର" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଫୋନ୍ ନମ୍ବର" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Numer telefonu" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Numer telefonu" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Número de telefone" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Número de telefone" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Número de telefone" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Número de telefone" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Номер телефона" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Номер телефона" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Telefon numarası" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Telefon numarası" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Номер телефону" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Номер телефону" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Số điện thoại" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Số điện thoại" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "电话号码" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "电话号码" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "電話號碼" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "電話號碼" } } } }, - "Relation.Format.Status.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تحديد" + "Relation.Format.Status.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تحديد" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выбраць" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выбраць" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Auswählen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Auswählen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Select" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Seleccionar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Seleccionar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Select" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Select" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Valitse" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Valitse" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Sélectionner" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sélectionner" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pilih" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pilih" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Seleziona" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Seleziona" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "セレクト" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "セレクト" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "선택" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "선택" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Velg" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Velg" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Selecteer" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Selecteer" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଚୟନ କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଚୟନ କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wybierz" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wybierz" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Selecionar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Selecionar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Select" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Select" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Выбрать" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Выбрать" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Seç" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Seç" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Select" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Select" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chọn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chọn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "选择" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "选择" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "選項" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "選項" } } } }, - "Relation.Format.Tag.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Multi-select" + "Relation.Format.Tag.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Multi-select" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Множны выбар" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Множны выбар" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Mehrfachauswahl" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Mehrfachauswahl" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Multi-select" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Multi-select" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Selección múltiple" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Selección múltiple" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Multi-select" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Multi-select" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Monivalinta" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Monivalinta" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Sélection multiple" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sélection multiple" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pilih jamak" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pilih jamak" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Selezione multipla" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Selezione multipla" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "複数セレクト" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "複数セレクト" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "다중 선택" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "다중 선택" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Velg flere" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Velg flere" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Selecteer meerdere" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Selecteer meerdere" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ବହୁ-ଚୟନ କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ବହୁ-ଚୟନ କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wielokrotny wybór" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wielokrotny wybór" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Seleção múltipla" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Seleção múltipla" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Multi-select" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Multi-select" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Множественный выбор" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Множественный выбор" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Çoklu seçim" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Çoklu seçim" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Multi-select" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Multi-select" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chọn nhiều" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chọn nhiều" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "多选" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "多选" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "多重選項" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "多重選項" } } } }, - "Relation.Format.Text.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "نص" + "Relation.Format.Text.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "نص" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Тэкст" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Тэкст" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Text" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Text" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Text" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Text" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Texto" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Texto" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Text" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Text" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Teksti" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Teksti" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Texte" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Texte" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Teks" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Teks" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Testo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Testo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "テキスト" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "テキスト" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "텍스트" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "텍스트" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Tekst" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Tekst" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Tekst" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Tekst" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଲେଖା" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଲେଖା" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Tekst" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Tekst" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Texto" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Texto" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Texto" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Texto" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Текст" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Текст" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Metin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Metin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Текст" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Текст" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Văn bản" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Văn bản" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "正文" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "正文" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "文字" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "文字" } } } }, - "Relation.Format.Url.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "عنوان URL" + "Relation.Format.Url.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "عنوان URL" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "URL" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Link" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Link" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "URL" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "URL" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "URL" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "URL" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "URL" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "URL" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "URL" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "URL" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "URL" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "URL" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "URL" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "URL" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "URL" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Adres URL" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Adres URL" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "URL" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "URL" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ссылка" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ссылка" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "URL" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "URL" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "URL" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "URL网址" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "URL网址" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "URL" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "URL" } } } }, - "Relation.From.Type": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "From type %@" + "Relation.From.Type" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "From type %@" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "З тыпу %@" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "З тыпу %@" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Vom Typ \"%@\"" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Vom Typ \"%@\"" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "From type %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "From type %@" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Del tipo %@" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Del tipo %@" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "From type %@" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "From type %@" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Tyypistä %@" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tyypistä %@" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "À partir du type %@" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "À partir du type %@" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Dari tipe %@" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Dari tipe %@" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Dal tipo %@" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Dal tipo %@" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "タイプ「%@」から" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "タイプ「%@」から" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "%@ 유형으로 부터" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 유형으로 부터" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "From type %@" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "From type %@" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Van type %@" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Van type %@" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "%@ ପ୍ରକାରରୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ ପ୍ରକାରରୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Z typu %@" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Z typu %@" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Do tipo \"%@\"" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Do tipo \"%@\"" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Do tipo %@" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Do tipo %@" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Из типа %@" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Из типа %@" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@ türünden" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ türünden" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "З типу %@" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "З типу %@" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Của loại '%@'" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Của loại '%@'" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "来自 %@ 类型" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "来自 %@ 类型" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "來自類型 %@" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "來自類型 %@" } } } }, - "Relation.ImportType.Csv": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "CSV" + "Relation.ImportType.Csv" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "CSV" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "CSV" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "CSV" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "CSV" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "CSV" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "CSV" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "CSV" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "CSV" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "CSV" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "CSV" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "CSV" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "CSV" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "CSV" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "CSV" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "CSV" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "CSV" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "CSV" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "CSV" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "CSV" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "CSV" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "CSV" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "CSV" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "CSV" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "CSV" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "CSV" } } } }, - "Relation.ImportType.Html": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "HTML" + "Relation.ImportType.Html" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "HTML" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "HTML" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "HTML" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "HTML" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "HTML" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "HTML" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "HTML" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "HTML" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "HTML" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "HTML" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "HTML" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "HTML" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "HTML" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "HTML" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "HTML" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "HTML" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "HTML" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "HTML" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "HTML" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "HTML" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "HTML" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "HTML" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "超文本" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "超文本" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "HTML" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "HTML" } } } }, - "Relation.ImportType.Markdown": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "Relation.ImportType.Markdown" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Markdown" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Markdown" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "マークダウン" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "マークダウン" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "마크다운" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "마크다운" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ମାର୍କଡାଉନ୍" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ମାର୍କଡାଉନ୍" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Marcação" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Marcação" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Markdown" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Markdown" } } } }, - "Relation.ImportType.Notion": { - "comment": "MARK: - Import Type Relation", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Notion" + "Relation.ImportType.Notion" : { + "comment" : "MARK: - Import Type Relation", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Notion" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Notion" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Notion" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Notion" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Notion" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Notion" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Notion" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Notion" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Notion" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Notion" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Notion" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Notion" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Notion" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Notion" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଧାରଣା" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଧାରଣା" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Pojęcie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Pojęcie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "noção" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "noção" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Notion" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Notion" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Kavram" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Kavram" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Notion" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Notion" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Notion" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Notion" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Notion" } } } }, - "Relation.ImportType.Obsidian": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "Relation.ImportType.Obsidian" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Obsidian" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Obsidian" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Obsidian" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Obsidian" } } } }, - "Relation.ImportType.Protobuf": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "Relation.ImportType.Protobuf" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Any-Block" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Any-Block" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Any-blokk" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-blokk" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଏନି ବ୍ଲକ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଏନି ବ୍ଲକ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dowolny blok" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dowolny blok" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Herhangi bir Blok" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Herhangi bir Blok" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Any-Block" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Any-Block" } } } }, - "Relation.ImportType.Text": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "TXT" + "Relation.ImportType.Text" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "TXT" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "TXT" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "TXT" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "TXT" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "TXT" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "TXT" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "TXT" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "TXT" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "TXT" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "TXT" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "TXT" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "TXT" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "TXT" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "TXT" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "TXT" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "TXT" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "TXT" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "TXT" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "TXT" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "TXT" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "TXT" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "TXT" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "纯文本(.txt)" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "纯文本(.txt)" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "TXT 文檔" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "TXT 文檔" } } } }, - "Relation.MyRelations": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "خصائصي" + "Relation.MyRelations" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "خصائصي" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "My properties" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "My properties" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Meine Eigenschaften" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Meine Eigenschaften" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "My properties" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "My properties" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Mis propiedades" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Mis propiedades" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "My properties" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "My properties" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "My properties" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "My properties" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Mes propriétés" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Mes propriétés" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Propertiku" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Propertiku" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Le mie proprietà" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Le mie proprietà" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "作成したプロパティ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "作成したプロパティ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "My properties" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "My properties" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "My properties" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "My properties" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Mijn eigenschappen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Mijn eigenschappen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "My properties" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "My properties" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "My properties" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "My properties" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Minhas propriedades" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Minhas propriedades" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "My properties" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "My properties" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Мои свойства" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Мои свойства" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Özelliklerim" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Özelliklerim" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "My properties" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "My properties" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "My properties" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "My properties" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "我的属性" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "我的属性" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "My properties" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "My properties" } } } }, - "Relation.Object.Delete.Alert.Description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "The object will be moved to Bin." + "Relation.Object.Delete.Alert.Description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "The object will be moved to Bin." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Аб'ект будзе перамешчаны ў сметніцу." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Аб'ект будзе перамешчаны ў сметніцу." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Das Objekt wird in den Papierkorb verschoben." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Das Objekt wird in den Papierkorb verschoben." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The object will be moved to Bin." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The object will be moved to Bin." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "El objeto será movido a la papelera." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "El objeto será movido a la papelera." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "The object will be moved to Bin." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "The object will be moved to Bin." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Tämä vaihtoehto siirretään roskakoriin." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tämä vaihtoehto siirretään roskakoriin." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "L'objet sera déplacé dans la corbeille." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "L'objet sera déplacé dans la corbeille." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Objek ini akan dipindah ke Bak Sampah." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Objek ini akan dipindah ke Bak Sampah." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "L'oggetto verrà spostato nel Cestino." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "L'oggetto verrà spostato nel Cestino." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "オブジェクトがごみ箱に移動されます。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "オブジェクトがごみ箱に移動されます。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "오브젝트가 휴지통으로 이동됩니다." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "오브젝트가 휴지통으로 이동됩니다." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Objektet vil bli flyttet til papirkurven." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Objektet vil bli flyttet til papirkurven." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Het object wordt naar de prullenmand verplaatst." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Het object wordt naar de prullenmand verplaatst." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଅବଜେକ୍ଟକୁ ବିନ୍ କୁ ସ୍ଥାନାନ୍ତର କରାଯିବ।" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଅବଜେକ୍ଟକୁ ବିନ୍ କୁ ସ୍ଥାନାନ୍ତର କରାଯିବ।" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Obiekt zostanie przeniesiony do Kosza." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Obiekt zostanie przeniesiony do Kosza." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "O objeto será movido para o Lixo." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "O objeto será movido para o Lixo." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "The object will be moved to Bin." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "The object will be moved to Bin." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Этот объект будет перемещен в корзину." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Этот объект будет перемещен в корзину." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Nesne Çöp Kutusuna taşınacaktır." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nesne Çöp Kutusuna taşınacaktır." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "The object will be moved to Bin." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "The object will be moved to Bin." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đối tượng này sẽ được đưa vào Thùng rác." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đối tượng này sẽ được đưa vào Thùng rác." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "对象将被移动到回收站。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "对象将被移动到回收站。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "該物件將被移至垃圾桶" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "該物件將被移至垃圾桶" } } } }, - "Relation.ObjectType.Header.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Object type:" + "Relation.ObjectType.Header.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Object type:" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Тып аб'екта:" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Тып аб'екта:" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Objekttyp:" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Objekttyp:" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Object type:" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object type:" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tipo de objeto" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo de objeto" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Object type:" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Object type:" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Objekti tyyppi:" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Objekti tyyppi:" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Type d'objet :" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Type d'objet :" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tipe objek:" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipe objek:" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Tipo di oggetto:" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo di oggetto:" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "タイプ:" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "タイプ:" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "오브젝트 유형:" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "오브젝트 유형:" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Objekttype:" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Objekttype:" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Objecttype:" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Objecttype:" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଅବଜେକ୍ଟ ପ୍ରକାର:" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଅବଜେକ୍ଟ ପ୍ରକାର:" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Typ obiektu:" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Typ obiektu:" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tipo de Objeto:" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo de Objeto:" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Object type:" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Object type:" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Тип объекта:" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Тип объекта:" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Nesne türü:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nesne türü:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Object type:" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Object type:" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Loại đối tượng:" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Loại đối tượng:" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "对象类型:" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "对象类型:" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "物件類型:" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "物件類型:" } } } }, - "Relation.ObjectTypes.Header.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Object types:" + "Relation.ObjectTypes.Header.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Object types:" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Тыпы аб'екта:" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Тыпы аб'екта:" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Objekttypen:" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Objekttypen:" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Object types:" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object types:" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tipos de objeto" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipos de objeto" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Object types:" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Object types:" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Objekti tyypit:" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Objekti tyypit:" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Types d'objets :" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Types d'objets :" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tipe objek:" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipe objek:" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Tipi di oggetto:" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipi di oggetto:" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "タイプ:" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "タイプ:" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "객체 유형:" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "객체 유형:" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Objekttyper:" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Objekttyper:" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Objecttypes:" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Objecttypes:" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଅବଜେକ୍ଟ ପ୍ରକାର:" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଅବଜେକ୍ଟ ପ୍ରକାର:" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Typy obiektów:" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Typy obiektów:" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tipos de objeto:" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipos de objeto:" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Object types:" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Object types:" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Типы объектов:" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Типы объектов:" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Nesne türleri:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nesne türleri:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Object types:" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Object types:" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Loại đối tượng:" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Loại đối tượng:" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "对象类型:" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "对象类型:" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "物件類型:" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "物件類型:" } } } }, - "Relation.Origin.API": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "API" + "Relation.Origin.API" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "API" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "API" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "API" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "API" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "API" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "API" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "API" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "API" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "API" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "API" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "API" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "API" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "API" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "API" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "API" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "API" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "API" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "API" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "API" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "API" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "API" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "API" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "API" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "API" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "API" } } } }, - "Relation.Origin.Bookmark": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إشارة مرجعية" + "Relation.Origin.Bookmark" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إشارة مرجعية" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Закладка" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Закладка" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Lesezeichen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Lesezeichen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Bookmark" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Bookmark" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Marcador" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Marcador" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Bookmark" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Bookmark" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Kirjanmerkki" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Kirjanmerkki" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Marque-page" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Marque-page" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Markah" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Markah" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Segnalibro" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Segnalibro" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ブックマーク" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ブックマーク" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "북마크" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "북마크" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Bokmerke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Bokmerke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bladwijzer" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bladwijzer" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Bookmark" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Bookmark" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zakładka" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zakładka" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Marcador" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Marcador" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Bookmark" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Bookmark" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Закладка" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Закладка" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yer imi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yer imi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Закладка" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Закладка" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Dấu trang" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Dấu trang" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "书签" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "书签" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "書籤" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "書籤" } } } }, - "Relation.Origin.Builtin": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "المكتبة مثبتة" + "Relation.Origin.Builtin" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "المكتبة مثبتة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Бібліятэка ўсталяваная" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Бібліятэка ўсталяваная" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Bibliothek installiert" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Bibliothek installiert" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Library installed" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Library installed" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Instalado de la biblioteca" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Instalado de la biblioteca" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Library installed" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Library installed" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Kirjasto asennettu" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Kirjasto asennettu" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Bibliothèque installée" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bibliothèque installée" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pustaka terpasang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pustaka terpasang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Libreria installata" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Libreria installata" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "インストールされました" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "インストールされました" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "라이브러리 설치됨" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "라이브러리 설치됨" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Bibliotek installert" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Bibliotek installert" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bibliotheek geïnstalleerd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bibliotheek geïnstalleerd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଲାଇବ୍ରେରୀ ସଂସ୍ଥାପିତ ହୋଇଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଲାଇବ୍ରେରୀ ସଂସ୍ଥାପିତ ହୋଇଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zainstalowana biblioteka" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zainstalowana biblioteka" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Biblioteca instalada" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Biblioteca instalada" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Library installed" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Library installed" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Библиотеки установлены." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Библиотеки установлены." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Kitaplık kuruldu" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Kitaplık kuruldu" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Library installed" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Library installed" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Cài từ thư viện" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Cài từ thư viện" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "文库已安装" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "文库已安装" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "資料庫已安裝" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "資料庫已安裝" } } } }, - "Relation.Origin.Clipboard": { - "comment": "Origin Relation", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الحافظة" + "Relation.Origin.Clipboard" : { + "comment" : "Origin Relation", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الحافظة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Буфер абмену" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Буфер абмену" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Zwischenablage" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Zwischenablage" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Clipboard" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Clipboard" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Portapapeles" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Portapapeles" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Clipboard" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Clipboard" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Leikepöytä" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Leikepöytä" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Presse-papier" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Presse-papier" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Papan kerani" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Papan kerani" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Appunti" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Appunti" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "クリップボード" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "クリップボード" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "클립보드" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "클립보드" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Utklippstavle" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Utklippstavle" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Klembord" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Klembord" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "କ୍ଲିପ୍ ବୋର୍ଡ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "କ୍ଲିପ୍ ବୋର୍ଡ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Schowek" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Schowek" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Área de Transferência" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Área de Transferência" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Clipboard" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Clipboard" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Буфер обмена" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Буфер обмена" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Pano" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Pano" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Clipboard" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Clipboard" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Clipboard" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Clipboard" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "剪贴板" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "剪贴板" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "剪貼簿" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "剪貼簿" } } } }, - "Relation.Origin.DragAndDrop": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Drag'n'Drop" + "Relation.Origin.DragAndDrop" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Drag'n'Drop" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Перасунуць" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Перасунуць" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Drag'n'Drop" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Drag'n'Drop" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Drag'n'Drop" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Drag'n'Drop" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Arrastrar y soltar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Arrastrar y soltar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Drag'n'Drop" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Drag'n'Drop" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Raahaa ja tiputa" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Raahaa ja tiputa" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Glisser-déposer" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Glisser-déposer" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Seret dan Lepas" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Seret dan Lepas" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Trascina e rilascia" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Trascina e rilascia" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ドラッグ&ドロップ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ドラッグ&ドロップ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "드래그 앤 드롭" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "드래그 앤 드롭" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Dra og slipp" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Dra og slipp" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Drag'n'Drop" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Drag'n'Drop" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଡ୍ରାଗ ଓ ଡ୍ରପ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଡ୍ରାଗ ଓ ଡ୍ରପ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przeciągnij i upuść" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Przeciągnij i upuść" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Arraste e Solte" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Arraste e Solte" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Drag'n'Drop" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Drag'n'Drop" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Перетащи" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Перетащи" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sürükle & Bırak" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sürükle & Bırak" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Drag'n'Drop" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Drag'n'Drop" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Kéo thả" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Kéo thả" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "拖放" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "拖放" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "拖放" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "拖放" } } } }, - "Relation.Origin.Import": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "كائن مستورد" + "Relation.Origin.Import" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "كائن مستورد" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Імпартаваць аб'ект" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Імпартаваць аб'ект" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Importiertes Objekt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Importiertes Objekt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Imported object" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Imported object" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Objeto importado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Objeto importado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Imported object" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Imported object" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Tuotu objekti" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tuotu objekti" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Objet importé" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Objet importé" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Objek diimpor" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Objek diimpor" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Oggetto importato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Oggetto importato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "インポート済みオブジェクト" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "インポート済みオブジェクト" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "가져온 오브젝트" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "가져온 오브젝트" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Importert objekt" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Importert objekt" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geïmporteerd object" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geïmporteerd object" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଆମଦାନୀ ହୋଇଥିବା ଅବଜେକ୍ଟ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଆମଦାନୀ ହୋଇଥିବା ଅବଜେକ୍ଟ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Importowany obiekt" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Importowany obiekt" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Objeto importado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Objeto importado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Imported object" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Imported object" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Импортированный объект" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Импортированный объект" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İçeri aktarılan nesne" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İçeri aktarılan nesne" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Imported object" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Imported object" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đối tượng đã nhập" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đối tượng đã nhập" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "导入的对象" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "导入的对象" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "匯入物件" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "匯入物件" } } } }, - "Relation.Origin.SharingExtension": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "ملحق المشاركة عبر الهاتف المحمول" + "Relation.Origin.SharingExtension" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "ملحق المشاركة عبر الهاتف المحمول" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пашырэнне для мабільнай прылады" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пашырэнне для мабільнай прылады" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Erweiterung für mobiles Teilen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Erweiterung für mobiles Teilen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Mobile sharing extension" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mobile sharing extension" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Extensión móvil para compartir" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Extensión móvil para compartir" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Mobile sharing extension" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Mobile sharing extension" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Mobiilijakolisäosa" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Mobiilijakolisäosa" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Extension de partage mobile" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Extension de partage mobile" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pengaya pembagian ponsel" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pengaya pembagian ponsel" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Estensione di condivisione mobile" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Estensione di condivisione mobile" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "モバイル共有拡張機能" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "モバイル共有拡張機能" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "모바일 공유 확장" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "모바일 공유 확장" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Utvidelse for mobildeling" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Utvidelse for mobildeling" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Mobiel delen extensie" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Mobiel delen extensie" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ମୋବାଇଲ୍ ସେୟାରିଂ ସମ୍ପ୍ରସାରଣ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ମୋବାଇଲ୍ ସେୟାରିଂ ସମ୍ପ୍ରସାରଣ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Rozszerzenie udostępniania mobilnego" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Rozszerzenie udostępniania mobilnego" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Extensão de compartilhamento móvel" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Extensão de compartilhamento móvel" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Mobile sharing extension" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Mobile sharing extension" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Расширение для мобильного телефона" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Расширение для мобильного телефона" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Mobil paylaşım uzantısı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Mobil paylaşım uzantısı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Mobile sharing extension" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Mobile sharing extension" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Từ ứng dụng mở rộng trên điện thoại" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Từ ứng dụng mở rộng trên điện thoại" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "手机共享扩展" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "手机共享扩展" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "手機共享擴充" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "手機共享擴充" } } } }, - "Relation.Origin.UseCase": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "حالة الاستخدام" + "Relation.Origin.UseCase" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "حالة الاستخدام" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выкарыстанне" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выкарыстанне" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Anwendungsfall" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Anwendungsfall" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Use case" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use case" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Caso de uso" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Caso de uso" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Use case" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Use case" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Käyttökohde" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Käyttökohde" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Cas d'usage" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Cas d'usage" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Penggunaan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Penggunaan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Caso d'uso" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Caso d'uso" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "活用例" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "活用例" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "활용 예시" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "활용 예시" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Eksempel" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Eksempel" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Gebruikerstoepassing" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Gebruikerstoepassing" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "କେସ୍ ବ୍ୟବହାର କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "କେସ୍ ବ୍ୟବହାର କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przypadek użycia" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Przypadek użycia" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Caso de uso" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Caso de uso" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Use case" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Use case" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вариант использования" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вариант использования" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Kullanım alanları" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Kullanım alanları" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Use case" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Use case" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Trường hợp sử dụng" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Trường hợp sử dụng" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "使用案例" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "使用案例" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "使用案例" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "使用案例" } } } }, - "Relation.Origin.WebClipper": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "أداة قص الويب" + "Relation.Origin.WebClipper" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "أداة قص الويب" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вэб кліпер" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вэб кліпер" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Web Clipper" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Web Clipper" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Web clipper" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Web clipper" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Recorte de web" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Recorte de web" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Web clipper" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Web clipper" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Netti nipsutin" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Netti nipsutin" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Web Clipper" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Web Clipper" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pemangkas web" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pemangkas web" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Clipper web" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Clipper web" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Web clipper" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Web clipper" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "웹 클리퍼" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "웹 클리퍼" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Webklipper" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Webklipper" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Webclipper" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Webclipper" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ୱେବ୍ କ୍ଲିପର" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ୱେବ୍ କ୍ଲିପର" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nożyczki do strzyżenia sieci" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nożyczki do strzyżenia sieci" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Web clipper" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Web clipper" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Web clipper" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Web clipper" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Клиппер" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Клиппер" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Web yakalayıcı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Web yakalayıcı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Web clipper" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Web clipper" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Web clipper" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Web clipper" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "网页剪藏器" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "网页剪藏器" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "網頁裁剪" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "網頁裁剪" } } } }, - "Relation.View.Create.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إنشاء خيار" + "Relation.View.Create.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إنشاء خيار" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Сварыць опцыю" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Сварыць опцыю" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Option erstellen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Option erstellen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Create option" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create option" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Crear opción " + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Crear opción " } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Create option" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Create option" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Luo valinta" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Luo valinta" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Créer une option" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Créer une option" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buat opsi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buat opsi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Crea opzione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Crea opzione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "オプションを作成" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "オプションを作成" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "옵션 생성" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "옵션 생성" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Opprett alternativ" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Opprett alternativ" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Maak optie" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Maak optie" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ତିଆରି କରନ୍ତୁ ବିକଳ୍ପ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ତିଆରି କରନ୍ତୁ ବିକଳ୍ପ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Utwórz opcję" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Utwórz opcję" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Criar opção" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Criar opção" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Criar opção" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Criar opção" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Создать параметр" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Создать параметр" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Seçenek oluştur" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Seçenek oluştur" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Create option" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Create option" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tạo lựa chọn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tạo lựa chọn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "创建选项" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "创建选项" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "建立選項" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "建立選項" } } } }, - "Relation.View.Edit.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تعديل الخيار" + "Relation.View.Edit.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تعديل الخيار" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Рэдагаваць опцыю" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Рэдагаваць опцыю" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Option bearbeiten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Option bearbeiten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Edit option" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit option" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Editar opción" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar opción" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Edit option" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit option" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Muokkaa valintaa" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Muokkaa valintaa" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Éditer l'option" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Éditer l'option" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sunting opsi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sunting opsi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Modifica opzione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Modifica opzione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "オプションを編集" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "オプションを編集" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "옵션 편집" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "옵션 편집" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Rediger valg" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Rediger valg" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bewerk optie" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bewerk optie" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ବିକଳ୍ପ ସମ୍ପାଦନ କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ବିକଳ୍ପ ସମ୍ପାଦନ କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Edytuj opcję" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Edytuj opcję" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Editar opção" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar opção" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Editar opção" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar opção" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Изменить вариант" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Изменить вариант" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Seçeneği düzenle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Seçeneği düzenle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Edit option" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit option" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Sửa tùy chọn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Sửa tùy chọn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "编辑选项" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "编辑选项" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "編輯選項" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "編輯選項" } } } }, - "Relation.View.Hint.Empty": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "empty" + "Relation.View.Hint.Empty" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "empty" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "пуста" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "пуста" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "leer" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "leer" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "empty" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "empty" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "vacío" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "vacío" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "empty" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "empty" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "tyhjä" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "tyhjä" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "vide" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "vide" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "kosong" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "kosong" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "vuoto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "vuoto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "未入力" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "未入力" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "비어 있음" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "비어 있음" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "tom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "tom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "leeg" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "leeg" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଖାଲି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଖାଲି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "pusty" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "pusty" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "vazio" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "vazio" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "vazio" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "vazio" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "пусто" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "пусто" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "boş" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "boş" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "пусто" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "пусто" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "trống" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "trống" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "空的" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "空的" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "空的" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "空的" } } } }, - "RelationAction.CallPhone": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Call phone numbler" + "RelationAction.CallPhone" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Call phone numbler" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пазваніць на нумар тэлефона" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пазваніць на нумар тэлефона" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Telefonnummer anrufen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Telefonnummer anrufen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Call phone numbler" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call phone numbler" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Llamar al número de teléfono" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Llamar al número de teléfono" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Call phone numbler" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Call phone numbler" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Call phone numbler" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Call phone numbler" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Appeler le numéro de téléphone" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Appeler le numéro de téléphone" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Panggil nomor telepon" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Panggil nomor telepon" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Chiama numero di telefono" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Chiama numero di telefono" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "電話番号に発信" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "電話番号に発信" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Call phone numbler" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Call phone numbler" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ring telefonnummer" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ring telefonnummer" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bel telefoonnummer" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bel telefoonnummer" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Call phone numbler" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Call phone numbler" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zadzwoń do telefonu odrętwiałego" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zadzwoń do telefonu odrętwiałego" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Ligar para número" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Ligar para número" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Call phone numbler" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Call phone numbler" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Позвонить в номер телефона" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Позвонить в номер телефона" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Telefon numarasını ara" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Telefon numarasını ara" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Номер телефону для дзвінка" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Номер телефону для дзвінка" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Gọi số điện thoại" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Gọi số điện thoại" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "呼叫电话号码" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "呼叫电话号码" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "撥打電話號碼" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "撥打電話號碼" } } } }, - "RelationAction.Copied": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Copied" + "RelationAction.Copied" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Copied" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Скапіравана" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Скапіравана" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Kopiert" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Kopiert" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Copied" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copied" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Copiado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Copiado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Copied" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Copied" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Kopioitu" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Kopioitu" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Copié" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Copié" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Disalin" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Disalin" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Copiato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Copiato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "コピーされました" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "コピーされました" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "복사됨" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "복사됨" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Kopiert" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Kopiert" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Gekopieerd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Gekopieerd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "କପି ହେଲା" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "କପି ହେଲା" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Skopiowano" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Skopiowano" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Copiado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Copiado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Copiado" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Copiado" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Скопировано" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Скопировано" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Kopyalandı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Kopyalandı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Скопійовано" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Скопійовано" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đã sao chép" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đã sao chép" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "已复制" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "已复制" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "已複製" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "已複製" } } } }, - "RelationAction.CopyEmail": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "نسخ البريد الإلكتروني" + "RelationAction.CopyEmail" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "نسخ البريد الإلكتروني" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Капіяваць эл. пошту" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Капіяваць эл. пошту" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "E-Mail kopieren" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "E-Mail kopieren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Copy email" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy email" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Copiar correo electrónico" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Copiar correo electrónico" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Copy email" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy email" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Copy email" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy email" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Copier l'email" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Copier l'email" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Salin email" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Salin email" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Copia email" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Copia email" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メールアドレスをコピー" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メールアドレスをコピー" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Copy email" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy email" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Kopier e-post" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Kopier e-post" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Kopieer e-mailadres" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kopieer e-mailadres" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Copy email" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy email" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Kopiowanie wiadomości e-mail" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kopiowanie wiadomości e-mail" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Copiar e-mail" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Copiar e-mail" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Copy email" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy email" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Скопировать адрес электронной почты" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Скопировать адрес электронной почты" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "E-postayı kopyala" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "E-postayı kopyala" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Скопіювати ел. пошту" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Скопіювати ел. пошту" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chép email" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chép email" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "拷贝电子邮件" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "拷贝电子邮件" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "複製 email" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "複製 email" } } } }, - "RelationAction.CopyPhone": { - "comment": "Relation Actions", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "نسخ رقم الهاتف" + "RelationAction.CopyPhone" : { + "comment" : "Relation Actions", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "نسخ رقم الهاتف" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Капіяваць нумар тэлефона" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Капіяваць нумар тэлефона" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Copy phone numbler" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy phone numbler" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Copy phone number" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy phone number" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Copiar número de teléfono" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Copiar número de teléfono" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Copy phone number" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy phone number" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Copy phone numbler" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy phone numbler" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Copy phone numbler" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy phone numbler" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Salin nomor telepon" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Salin nomor telepon" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Copia numero di telefono" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Copia numero di telefono" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "電話番号をコピー" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "電話番号をコピー" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Copy phone numbler" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy phone numbler" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Kopier telefonnummer" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Kopier telefonnummer" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Telefoonnummer kopiëren" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Telefoonnummer kopiëren" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Copy phone number" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy phone number" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Copy phone numbler" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy phone numbler" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Copiar número de telefone" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Copiar número de telefone" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Copy phone numbler" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy phone numbler" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Copy phone numbler" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy phone numbler" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Telefon numarasını kopyala" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Telefon numarasını kopyala" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Скопіювати номер телефону" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Скопіювати номер телефону" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chép số điện thoại" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chép số điện thoại" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "拷贝电话号码" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "拷贝电话号码" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "複製電話號碼" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "複製電話號碼" } } } }, - "RelationAction.OpenLink": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "فتح الرابط" + "RelationAction.OpenLink" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "فتح الرابط" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Адкрыць спасылку" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Адкрыць спасылку" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Link öffnen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Link öffnen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Open link" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Open link" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Abrir enlace" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Abrir enlace" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Open link" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Open link" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Open link" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Open link" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ouvrir le lien" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ouvrir le lien" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buka tautan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buka tautan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Apri collegamento" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Apri collegamento" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リンクを開く" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リンクを開く" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Open link" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Open link" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Åpne lenke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Åpne lenke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Open link" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Open link" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Open link" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Open link" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Otwórz odnośnik w" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Otwórz odnośnik w" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Abrir link" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Abrir link" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Open link" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Open link" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Открыть ссылку" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Открыть ссылку" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bağlantıyı aç" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bağlantıyı aç" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Відкрити посилання" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Відкрити посилання" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Mở link" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Mở link" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "打开链接" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "打开链接" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "開啟連結" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "開啟連結" } } } }, - "RelationAction.ReloadContent": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إعادة تحميل محتوى الكائن" + "RelationAction.ReloadContent" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إعادة تحميل محتوى الكائن" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Перазагрузіць змесціва аб'екта" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Перазагрузіць змесціва аб'екта" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Objektinhalt neu laden" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Objektinhalt neu laden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Reload object content" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reload object content" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Recargar contenido del objeto" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Recargar contenido del objeto" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Reload object content" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Reload object content" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Reload object content" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Reload object content" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Recharger le contenu de l'objet" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Recharger le contenu de l'objet" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Muat ulang konten objek" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Muat ulang konten objek" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ricarica contenuto dell'oggetto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ricarica contenuto dell'oggetto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "オブジェクト内容を再読み込み" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "オブジェクト内容を再読み込み" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Reload object content" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Reload object content" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Last objektinnhold på nytt" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Last objektinnhold på nytt" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Objectinhoud opnieuw laden" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Objectinhoud opnieuw laden" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Reload object content" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Reload object content" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ponowne załadowanie zawartości obiektu" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ponowne załadowanie zawartości obiektu" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Recarregar conteúdo do objeto" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Recarregar conteúdo do objeto" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Reload object content" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Reload object content" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Перезагрузить содержимое объекта" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Перезагрузить содержимое объекта" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Nesne içeriğini yeniden yükle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nesne içeriğini yeniden yükle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Перезавантажити вміст об'єкта" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Перезавантажити вміст об'єкта" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tải lại nội dung đối tượng" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tải lại nội dung đối tượng" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "重新加载对象内容" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "重新加载对象内容" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "重新載入物件內容" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "重新載入物件內容" } } } }, - "RelationAction.ReloadingContent": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Reloading content" + "RelationAction.ReloadingContent" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Reloading content" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Перазагрузка змесціва" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Перазагрузка змесціва" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Inhalt wird neu geladen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Inhalt wird neu geladen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Reloading content" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reloading content" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Recargando contenido" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Recargando contenido" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Reloading content" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Reloading content" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Reloading content" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Reloading content" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Recharger le contenu" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Recharger le contenu" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Memuat kembali konten" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Memuat kembali konten" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ricaricamento contenuto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ricaricamento contenuto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "内容を読み込み中" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "内容を読み込み中" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Reloading content" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Reloading content" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Oppdaterer innhold" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Oppdaterer innhold" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Inhoud wordt herladen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Inhoud wordt herladen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Reloading content" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Reloading content" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przeładowywanie zawartości" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Przeładowywanie zawartości" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Recarregando conteúdo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Recarregando conteúdo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Reloading content" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Reloading content" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Перезагрузка содержимого" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Перезагрузка содержимого" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İçerik yeniden yükleniyor" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İçerik yeniden yükleniyor" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Перезавантаження вмісту" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Перезавантаження вмісту" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đang tải lại nội dung" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đang tải lại nội dung" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "重新加载内容" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "重新加载内容" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "重新載入內容" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "重新載入內容" } } } }, - "RelationAction.SendEmail": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إرسال بريد إلكتروني" + "RelationAction.SendEmail" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إرسال بريد إلكتروني" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Адаслаць ліст" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Адаслаць ліст" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "E-Mail senden" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "E-Mail senden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Send email" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send email" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Enviar correo electrónico" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Enviar correo electrónico" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Send email" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Send email" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Send email" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Send email" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Envoyer un e-mail" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Envoyer un e-mail" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kirim email" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kirim email" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Invia email" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Invia email" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メールを送信" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メールを送信" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Send email" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Send email" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Send e-post" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Send e-post" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verstuur e-mail" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verstuur e-mail" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Send email" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Send email" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wyślij email" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wyślij email" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Enviar email" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Enviar email" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Send email" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Send email" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Отправить электронное письмо" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Отправить электронное письмо" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "E-posta gönder" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "E-posta gönder" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Надіслати ел. пошту" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Надіслати ел. пошту" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Gửi email" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Gửi email" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "发送电子邮件" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "发送电子邮件" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "傳送 email" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "傳送 email" } } } }, - "RequestToJoinNotification.GoToSpace": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Go to Space" + "RequestToJoinNotification.GoToSpace" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Go to Space" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Перайсці ў Прастору" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Перайсці ў Прастору" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Zu Space wechseln" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Zu Space wechseln" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Go to Space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Go to Space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ir al espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ir al espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Go to Space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Go to Space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Go to Space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Go to Space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Aller à l'espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Aller à l'espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kunjungi Ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kunjungi Ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Vai allo Spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Vai allo Spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースに移動" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペースに移動" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "스페이스로 이동" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "스페이스로 이동" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Gå til rom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Gå til rom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ga naar ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ga naar ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Go to Space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Go to Space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Idź w kosmos" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Idź w kosmos" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Ir para Espaço" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Ir para Espaço" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Go to Space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Go to Space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Перейти в пространство" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Перейти в пространство" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alana git" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alana git" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Go to Space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Go to Space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Go to Space" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Go to Space" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "转到空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "转到空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "前往空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "前往空間" } } } }, - "RequestToJoinNotification.Text": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "**%@** requested to join the **%@** space." + "RequestToJoinNotification.Text" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** requested to join the **%@** space." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "**%@** запытаў(-ла) доступ да прасторы **%@**." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** запытаў(-ла) доступ да прасторы **%@**." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "**%@** fragt Zugang zum Space **%@** an." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** fragt Zugang zum Space **%@** an." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "**%@** requested to join the **%@** space." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "**%@** requested to join the **%@** space." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "**%@** solicita acceder al espacio **%@**." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** solicita acceder al espacio **%@**." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "**%@** requested to join the **%@** space." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** requested to join the **%@** space." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "**%@** requested to join the **%@** space." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** requested to join the **%@** space." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "**%@** a demandé à rejoindre l'espace **%@**." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** a demandé à rejoindre l'espace **%@**." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "**%@** meminta bergabung ke ruang **%@**." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** meminta bergabung ke ruang **%@**." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "**%@** ha richiesto di unirsi allo spazio **%@**." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** ha richiesto di unirsi allo spazio **%@**." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "**%@**さんからスペース**%@**への参加リクエストが届きました。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@**さんからスペース**%@**への参加リクエストが届きました。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "**%@**가 **%@** 스페이스에 참여하기를 요청했습니다." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@**가 **%@** 스페이스에 참여하기를 요청했습니다." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "**%@** requested to join the **%@** space." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** requested to join the **%@** space." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "**%@** heeft verzocht om aan de ruimte **%@** deel te nemen." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** heeft verzocht om aan de ruimte **%@** deel te nemen." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "**%@** requested to join the **%@** space." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** requested to join the **%@** space." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "**%@** poprosił o dołączenie do przestrzeni **%@**." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** poprosił o dołączenie do przestrzeni **%@**." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "**%@ pediu para entrar no espaço de %@." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@ pediu para entrar no espaço de %@." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "**%@** requested to join the **%@** space." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** requested to join the **%@** space." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "**%@** сделал запрос на присоединение к пространству **%@**" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** сделал запрос на присоединение к пространству **%@**" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "**%@**, **%@** alanına katılmak istiyor." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@**, **%@** alanına katılmak istiyor." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "**%@** requested to join the **%@** space." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** requested to join the **%@** space." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "**%@** requested to join the **%@** space." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** requested to join the **%@** space." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "**%@** 请求加入 **%@** 空间。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** 请求加入 **%@** 空间。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "**%@** 請求加入 **%@** 空間。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** 請求加入 **%@** 空間。" } } } }, - "RequestToJoinNotification.ViewRequest": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "عرض الطلب" + "RequestToJoinNotification.ViewRequest" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "عرض الطلب" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Паглядзець запыт" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Паглядзець запыт" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Anfrage ansehen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Anfrage ansehen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "View request" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "View request" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ver solicitud" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ver solicitud" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "View request" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "View request" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "View request" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "View request" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Afficher la demande" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Afficher la demande" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Lihat permintaan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Lihat permintaan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Visualizza richiesta" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Visualizza richiesta" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リクエストを確認" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リクエストを確認" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "요청 보기" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "요청 보기" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Vis forespørsel" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Vis forespørsel" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bekijk verzoek" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bekijk verzoek" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "View request" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "View request" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wyświetl zapytanie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wyświetl zapytanie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Ver solicitação" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Ver solicitação" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "View request" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "View request" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Посмотреть запрос" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Посмотреть запрос" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İsteği görüntüle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İsteği görüntüle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "View request" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "View request" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "View request" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "View request" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "查看请求" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "查看请求" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "查看請求" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "查看請求" } } } }, - "RequestToLeaveNotification.Text": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "**%@** wants to leave the **%@** space." + "RequestToLeaveNotification.Text" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** wants to leave the **%@** space." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "**%@** хоча пакінуць прастору **%@**." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** хоча пакінуць прастору **%@**." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "**%@** möchte den Space **%@** verlassen." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** möchte den Space **%@** verlassen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "**%@** wants to leave the **%@** space." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "**%@** wants to leave the **%@** space." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "**%@** quiere abandonar el espacio **%@**." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** quiere abandonar el espacio **%@**." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "**%@** wants to leave the **%@** space." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** wants to leave the **%@** space." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "**%@** wants to leave the **%@** space." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** wants to leave the **%@** space." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "**%@** veut quitter l'espace **%@**." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** veut quitter l'espace **%@**." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "**%@** ingin meninggalkan ruang **%@**." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** ingin meninggalkan ruang **%@**." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "**%@** vuole lasciare lo spazio **%@**." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** vuole lasciare lo spazio **%@**." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "**%@**さんからスペース**%@**への退出リクエストが届きました。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@**さんからスペース**%@**への退出リクエストが届きました。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "**%@** wants to leave the **%@** space." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** wants to leave the **%@** space." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "**%@** wants to leave the **%@** space." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** wants to leave the **%@** space." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "**%@** wil de ruimte **%@** verlaten." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** wil de ruimte **%@** verlaten." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "**%@** wants to leave the **%@** space." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** wants to leave the **%@** space." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "**%@** chce opuścić przestrzeń **%@**." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** chce opuścić przestrzeń **%@**." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "**%@** quer sair do espaço **%@." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** quer sair do espaço **%@." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "**%@** wants to leave the **%@** space." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** wants to leave the **%@** space." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "**%@** хочет покинуть пространство **%@**." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** хочет покинуть пространство **%@**." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "**%@**, **%@** alanından ayrılmak istiyor." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@**, **%@** alanından ayrılmak istiyor." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "**%@** wants to leave the **%@** space." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** wants to leave the **%@** space." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "**%@** wants to leave the **%@** space." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** wants to leave the **%@** space." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "**%@** 想要离开 **%@** 空间。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** 想要离开 **%@** 空间。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "**%@** 想要離開 **%@** 空間。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "**%@** 想要離開 **%@** 空間。" } } } }, - "Set.Bookmark.Create.Placeholder": { - "comment": "MARK: - Set.Bookmarks", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لصق الرابط" + "Set.Bookmark.Create.Placeholder" : { + "comment" : "MARK: - Set.Bookmarks", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لصق الرابط" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Уставіць спасылку" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Уставіць спасылку" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Link einfügen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Link einfügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Paste link" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Paste link" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Pegar enlace" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Pegar enlace" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Paste link" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Paste link" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Paste link" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Paste link" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Coller le lien" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Coller le lien" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tempelkan tautan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tempelkan tautan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Incolla link" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Incolla link" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リンクを貼り付け" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リンクを貼り付け" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "링크 붙여넣기" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "링크 붙여넣기" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Lim inn lenke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Lim inn lenke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Plak koppeling" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Plak koppeling" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Paste link" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Paste link" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wkleić link" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wkleić link" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Colar link" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Colar link" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Paste link" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Paste link" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вставить ссылку" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вставить ссылку" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bağlantıyı yapıştır" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bağlantıyı yapıştır" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Вставити посилання" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Вставити посилання" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Dán link" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Dán link" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "粘贴链接" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "粘贴链接" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "貼上連結" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "貼上連結" } } } }, - "Set.Bookmark.Error.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Oops - something went wrong. Please try again" + "Set.Bookmark.Error.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Oops - something went wrong. Please try again" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ой - нешта пайшло не так. Калі ласка паспрабуйце зноў" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ой - нешта пайшло не так. Калі ласка паспрабуйце зноў" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Hoppla! Irgendetwas ist schiefgelaufen. Bitte versuchen sie es nochmal." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Hoppla! Irgendetwas ist schiefgelaufen. Bitte versuchen sie es nochmal." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Oops - something went wrong. Please try again" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Oops - something went wrong. Please try again" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Huy, algo salió mal. Inténtalo de nuevo." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Huy, algo salió mal. Inténtalo de nuevo." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Oops - something went wrong. Please try again" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Oops - something went wrong. Please try again" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Oops - something went wrong. Please try again" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Oops - something went wrong. Please try again" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Oups, une erreur s’est produite. Veuillez réessayer." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Oups, une erreur s’est produite. Veuillez réessayer." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ups - terjadi kesalahan. Silakan coba lagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ups - terjadi kesalahan. Silakan coba lagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Oops - qualcosa è andato storto. Riprova" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Oops - qualcosa è andato storto. Riprova" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "申し訳ありません。エラーが発生しました。もう一度お試しください。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "申し訳ありません。エラーが発生しました。もう一度お試しください。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "이런 문제가 발생했습니다. 다시 시도해 주세요." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "이런 문제가 발생했습니다. 다시 시도해 주세요." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Oops - noe gikk galt. Vennligst prøv igjen" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Oops - noe gikk galt. Vennligst prøv igjen" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Oeps - er is iets misgegaan. Probeer het nogmaals." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Oeps - er is iets misgegaan. Probeer het nogmaals." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Oops - something went wrong. Please try again" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Oops - something went wrong. Please try again" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ups - wystąpił problem. Spróbuj ponownie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ups - wystąpił problem. Spróbuj ponownie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Opa! Algo deu errado. Por favor, tente novamente." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Opa! Algo deu errado. Por favor, tente novamente." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Oops! Ocorreu um erro. Tente novamente!" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Oops! Ocorreu um erro. Tente novamente!" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ой, что-то пошло не так. Повторите попытку." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ой, что-то пошло не так. Повторите попытку." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Hay aksi bir şeyler ters gitti! Lütfen yeniden dene." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Hay aksi bir şeyler ters gitti! Lütfen yeniden dene." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Oops - something went wrong. Please try again" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Oops - something went wrong. Please try again" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Oops - something went wrong. Please try again" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Oops - something went wrong. Please try again" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "噢不 - 出现了一些问题。请重试" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "噢不 - 出现了一些问题。请重试" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "哎呀,出了點問題。請再試一次。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "哎呀,出了點問題。請再試一次。" } } } }, - "Set.FeaturedRelations.Query": { - "comment": "MARK: - Sets: Featured relations", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تحديد استعلام" + "Set.FeaturedRelations.Query" : { + "comment" : "MARK: - Sets: Featured relations", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تحديد استعلام" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выберыце запыт" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выберыце запыт" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Abfrage auswählen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Abfrage auswählen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Select query" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select query" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Seleccionar consulta" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Seleccionar consulta" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Select query" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Select query" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Valitse kysely" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Valitse kysely" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Sélectionner une requête" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sélectionner une requête" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pilih kueri" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pilih kueri" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Seleziona query" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Seleziona query" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "条件を指定" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "条件を指定" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Select query" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Select query" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Velg spørring" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Velg spørring" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Selecteer zoekopdracht" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Selecteer zoekopdracht" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Select query" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Select query" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Kwerenda wybierająca" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kwerenda wybierająca" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Selecione a consulta" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Selecione a consulta" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Selecionar consulta" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Selecionar consulta" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Выберите запрос" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Выберите запрос" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sorgu seç" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sorgu seç" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Виберіть запит" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Виберіть запит" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chọn truy vấn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chọn truy vấn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "选择查询" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "选择查询" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "指定查詢" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "指定查詢" } } } }, - "Set.FeaturedRelations.Relation": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Property:" + "Set.FeaturedRelations.Relation" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Property:" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Eigenschaft:" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenschaft:" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Property:" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Property:" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Propiedad:" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Propiedad:" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Property:" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Property:" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Property:" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Properti:" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Properti:" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Property:" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プロパティ:" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プロパティ:" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Property:" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Property:" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Eigenschap:" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenschap:" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Property:" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Property:" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Property:" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Property:" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Property:" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Özellik:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Özellik:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Property:" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Property:" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "属性:" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "属性:" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Property:" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Property:" } } } }, - "Set.FeaturedRelations.RelationsList": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "Set.FeaturedRelations.RelationsList" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Eigenschaften:" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenschaften:" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Properties:" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Properties:" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Propiedades:" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Propiedades:" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Properti:" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Properti:" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プロパティ:" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プロパティ:" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Eigenschappen:" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenschappen:" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Özellikler:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Özellikler:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "属性:" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "属性:" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Properties:" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Properties:" } } } }, - "Set.FeaturedRelations.Type": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Type:" + "Set.FeaturedRelations.Type" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Type:" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Тып:" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Тып:" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Typ:" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Typ:" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Type:" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Type:" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tipo:" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo:" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Type:" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Type:" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Type:" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Type:" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Type :" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Type :" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tipe:" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipe:" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Tipo:" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo:" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "タイプ:" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "タイプ:" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Type:" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Type:" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Type:" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Type:" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Type:" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Type:" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Type:" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Type:" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Typy:" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Typy:" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tipo:" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo:" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Type:" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Type:" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Тип:" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Тип:" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Tür:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tür:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Тип:" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Тип:" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Loại:" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Loại:" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "类型:" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "类型:" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "類型:" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "類型:" } } } }, - "Set.SourceType.Cancel.Toast.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لا يمكن تغيير هذا الاستعلام إلا على سطح المكتب" + "Set.SourceType.Cancel.Toast.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لا يمكن تغيير هذا الاستعلام إلا على سطح المكتب" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Гэты запыт можна змяніць толькі на камп'ютары" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Гэты запыт можна змяніць толькі на камп'ютары" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Diese Abfrage kann nur auf dem Desktop geändert werden" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Diese Abfrage kann nur auf dem Desktop geändert werden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This query can be changed on desktop only" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This query can be changed on desktop only" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Esta consulta solo puede cambiarse en la versión de escritorio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Esta consulta solo puede cambiarse en la versión de escritorio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "This query can be changed on desktop only" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "This query can be changed on desktop only" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Tämä kysely voidaan vaihtaa vain tietokoneella" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tämä kysely voidaan vaihtaa vain tietokoneella" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Cette requête peut être modifiée uniquement sur le bureau" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Cette requête peut être modifiée uniquement sur le bureau" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kueri ini bisa berubah hanya pada tampilan komputer" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kueri ini bisa berubah hanya pada tampilan komputer" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Questa query può essere modificata solo su desktop" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Questa query può essere modificata solo su desktop" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "このクエリはデスクトップ版でのみ変更できます" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "このクエリはデスクトップ版でのみ変更できます" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "This query can be changed on desktop only" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "This query can be changed on desktop only" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Denne spørringen kan bare endres i skrivebordsappen" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Denne spørringen kan bare endres i skrivebordsappen" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deze zoekopdracht kan alleen op desktop worden gewijzigd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deze zoekopdracht kan alleen op desktop worden gewijzigd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "This query can be changed on desktop only" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "This query can be changed on desktop only" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "To zapytanie można zmienić tylko na komputerze" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "To zapytanie można zmienić tylko na komputerze" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Esta consulta só pode ser alterada na versão desktop" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Esta consulta só pode ser alterada na versão desktop" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Esta consulta só pode ser alterada no desktop" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Esta consulta só pode ser alterada no desktop" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Этот запрос может быть изменен только на компьютере" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Этот запрос может быть изменен только на компьютере" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu sorgu sadece masaüstünde değiştirilebilir" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu sorgu sadece masaüstünde değiştirilebilir" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Цей запит може бути змінений лише на комп'ютері" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Цей запит може бути змінений лише на комп'ютері" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "This query can be changed on desktop only" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "This query can be changed on desktop only" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "只能在桌面端更改此查询" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "只能在桌面端更改此查询" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "此查詢只能在電腦端更改" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "此查詢只能在電腦端更改" } } } }, - "Set.SourceType.SelectQuery": { - "comment": "MARK: - Set source type", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تحديد استعلام" + "Set.SourceType.SelectQuery" : { + "comment" : "MARK: - Set source type", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تحديد استعلام" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выберыце запыт" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выберыце запыт" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Abfrage auswählen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Abfrage auswählen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Select query" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select query" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Seleccionar consulta" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Seleccionar consulta" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Select query" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Select query" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Valitse kysely" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Valitse kysely" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Sélectionner une requête" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sélectionner une requête" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pilih kueri" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pilih kueri" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Seleziona query" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Seleziona query" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "条件を指定" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "条件を指定" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Select query" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Select query" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Velg spørring" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Velg spørring" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Selecteer zoekopdracht" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Selecteer zoekopdracht" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Select query" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Select query" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Kwerenda wybierająca" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kwerenda wybierająca" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Selecione a consulta" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Selecione a consulta" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Selecionar consulta" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Selecionar consulta" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Выберите запрос" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Выберите запрос" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sorgu seç" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sorgu seç" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Виберіть запит" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Виберіть запит" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chọn truy vấn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chọn truy vấn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "选择查询" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "选择查询" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "指定查詢" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "指定查詢" } } } }, - "Set.TypeRelation.ContextMenu.ChangeQuery": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تغيير الاستعلام" + "Set.TypeRelation.ContextMenu.ChangeQuery" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تغيير الاستعلام" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Змяніць запыт" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Змяніць запыт" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Abfrage ändern" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Abfrage ändern" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Change query" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Change query" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cambiar consulta" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cambiar consulta" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Change query" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Change query" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Vaihda kysely" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Vaihda kysely" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Modifier la requête" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Modifier la requête" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ubah kueri" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ubah kueri" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Cambia query" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Cambia query" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "クエリを変更" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "クエリを変更" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Change query" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Change query" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Endre spørring" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Endre spørring" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verander zoekopdracht" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verander zoekopdracht" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Change query" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Change query" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zmień zapytanie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zmień zapytanie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Mudar consulta" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Mudar consulta" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Change query" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Change query" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Изменить запрос" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Изменить запрос" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sorguyu değiştir" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sorguyu değiştir" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Змінити запит" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Змінити запит" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Change query" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Change query" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "更改查询" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "更改查询" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "更改查詢" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "更改查詢" } } } }, - "Set.TypeRelation.ContextMenu.TurnIntoCollection": { - "comment": "MARK: - Set: Type context menu", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تحويل الاستعلام إلى مجموعة" + "Set.TypeRelation.ContextMenu.TurnIntoCollection" : { + "comment" : "MARK: - Set: Type context menu", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تحويل الاستعلام إلى مجموعة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Abfrage in Sammlung umwandeln" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Abfrage in Sammlung umwandeln" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Turn Query into Collection" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Turn Query into Collection" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Convertir consulta en colección" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Convertir consulta en colección" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ubah Kueri menjadi Koleksi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ubah Kueri menjadi Koleksi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "クエリをコレクションに変換" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "クエリをコレクションに変換" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Zet opdracht om naar collectie" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zet opdracht om naar collectie" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Transformar Consulta em Coleção" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Transformar Consulta em Coleção" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Конвертировать Запрос в Коллекцию" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Конвертировать Запрос в Коллекцию" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sorguyu Koleksiyona dönüştür" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sorguyu Koleksiyona dönüştür" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "查询转换为集锦" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "查询转换为集锦" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Turn Query into Collection" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Turn Query into Collection" } } } }, - "Set.View.Empty.Subtitle": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "Set.View.Empty.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Añade una consulta para obtener una lista actualizada de objetos con un tipo o propiedad en común" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Añade una consulta para obtener una lista actualizada de objetos con un tipo o propiedad en común" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Menambahkan daftar pencarian untuk menghimpun Objek dengan Tipe dan Atribut yang sama dalam mode langsung" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Menambahkan daftar pencarian untuk menghimpun Objek dengan Tipe dan Atribut yang sama dalam mode langsung" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "条件を指定して、同じタイプやプロパティを持つオブジェクトをまとめましょう。変更は自動的に反映されます。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "条件を指定して、同じタイプやプロパティを持つオブジェクトをまとめましょう。変更は自動的に反映されます。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voeg zoekopdracht toe om objecten te verzamelen met gelijke types en eigenschappen in een live omgeving" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voeg zoekopdracht toe om objecten te verzamelen met gelijke types en eigenschappen in een live omgeving" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Canlı modda eşit tür ve özelliklere sahip nesneleri toplamak için arama sorgusu ekleyin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Canlı modda eşit tür ve özelliklere sahip nesneleri toplamak için arama sorgusu ekleyin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "添加搜索查询来实时聚合符合相应类型和属性的对象" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "添加搜索查询来实时聚合符合相应类型和属性的对象" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Add search query to aggregate objects with equal types and properties in a live mode" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Add search query to aggregate objects with equal types and properties in a live mode" } } } }, - "Set.View.Empty.Title": { - "comment": "MARK: - Sets: empty view", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "لم يتم تحديد استعلام" + "Set.View.Empty.Title" : { + "comment" : "MARK: - Sets: empty view", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "لم يتم تحديد استعلام" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Запыт не выбраны" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Запыт не выбраны" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Keine Abfrage ausgewählt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Keine Abfrage ausgewählt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No query selected" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No query selected" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ninguna consulta seleccionada" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ninguna consulta seleccionada" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No query selected" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No query selected" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Ei kyselyä valittuna" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ei kyselyä valittuna" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Aucune requête sélectionnée" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Aucune requête sélectionnée" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak ada queri terpilih" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak ada queri terpilih" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nessuna query selezionata" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nessuna query selezionata" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "条件が指定されていません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "条件が指定されていません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "No query selected" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "No query selected" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ingen spørring valgt" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ingen spørring valgt" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geen zoekopdracht geselecteerd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geen zoekopdracht geselecteerd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "No query selected" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "No query selected" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie wybrano zapytania" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie wybrano zapytania" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Nenhuma consulta selecionada" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Nenhuma consulta selecionada" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "No query selected" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "No query selected" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Не выбрано ни одного запроса" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Не выбрано ни одного запроса" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sorgu seçilmedi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sorgu seçilmedi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Жодного запиту не вибрано" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Жодного запиту не вибрано" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chưa có truy vấn được chọn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chưa có truy vấn được chọn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "未选择查询" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "未选择查询" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "未指定查詢" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "未指定查詢" } } } }, - "Set.View.Kanban.Column.Paging.Title.ShowMore": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Show more objects" + "Set.View.Kanban.Column.Paging.Title.ShowMore" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Show more objects" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Паказаць больш аб'ектаў" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Паказаць больш аб'ектаў" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Mehr Objekte anzeigen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Mehr Objekte anzeigen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Show more objects" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show more objects" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Mostrar más objetos" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Mostrar más objetos" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Show more objects" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Show more objects" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Show more objects" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Show more objects" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Afficher plus d'objets" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Afficher plus d'objets" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Perlihatkan lebih banyak objek" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Perlihatkan lebih banyak objek" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Mostra più oggetti" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Mostra più oggetti" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "さらにオブジェクトを表示" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "さらにオブジェクトを表示" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Show more objects" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Show more objects" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Vis flere objekter" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Vis flere objekter" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Toon meer objecten" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Toon meer objecten" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Show more objects" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Show more objects" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Pokaż więcej obiektów" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Pokaż więcej obiektów" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Mostrar mais objetos" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Mostrar mais objetos" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Show more objects" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Show more objects" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Показать больше объектов" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Показать больше объектов" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Daha fazla nesne göster" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Daha fazla nesne göster" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Показати більше об'єктів" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Показати більше об'єктів" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Show more objects" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Show more objects" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "显示更多对象" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "显示更多对象" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "顯示更多物件" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "顯示更多物件" } } } }, - "Set.View.Kanban.Column.Settings.Color.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Column color" + "Set.View.Kanban.Column.Settings.Color.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Column color" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Колер слупка" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Колер слупка" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Spaltenfarbe" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Spaltenfarbe" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Column color" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Column color" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Color de columna" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Color de columna" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Column color" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Column color" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Column color" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Column color" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Couleur de la colonne" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Couleur de la colonne" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Warna kolom" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Warna kolom" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Colore della colonna" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Colore della colonna" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "列の色" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "列の色" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Column color" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Column color" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Kolonnefarge" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Kolonnefarge" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Kleur kolom" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kleur kolom" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Column color" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Column color" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Kolor kolumny" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kolor kolumny" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Cor da coluna" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Cor da coluna" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Column color" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Column color" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Цвет столбца" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Цвет столбца" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sütun rengi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sütun rengi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Колір стовпця" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Колір стовпця" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Màu cột" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Màu cột" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "颜色列表" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "颜色列表" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "欄位顏色" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "欄位顏色" } } } }, - "Set.View.Kanban.Column.Settings.Hide.Column.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Hide column" + "Set.View.Kanban.Column.Settings.Hide.Column.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Hide column" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Схаваць слупок" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Схаваць слупок" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Spalte ausblenden" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Spalte ausblenden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Hide column" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hide column" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ocultar columna" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ocultar columna" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Hide column" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Hide column" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Piilota sarake" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Piilota sarake" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Masquer la colonne" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Masquer la colonne" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sembunyikan kolom" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sembunyikan kolom" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nascondi colonna" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nascondi colonna" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "列を非表示" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "列を非表示" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Hide column" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Hide column" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Skjul kolonne" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Skjul kolonne" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verberg kolom" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verberg kolom" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Hide column" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Hide column" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ukryj kolumnę" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ukryj kolumnę" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Ocultar coluna" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Ocultar coluna" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Hide column" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Hide column" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Скрыть столбец" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Скрыть столбец" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sütunu gizle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sütunu gizle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Приховати стовпець" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Приховати стовпець" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Ẩn cột" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ẩn cột" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "隐藏列表" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "隐藏列表" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "隱藏欄" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "隱藏欄" } } } }, - "Set.View.Kanban.Column.Title.Checked": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "%@ is checked" + "Set.View.Kanban.Column.Title.Checked" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is checked" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "%@ пастаўлены сцяжок" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ пастаўлены сцяжок" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "%@ ist ausgewählt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ ist ausgewählt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ is checked" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ is checked" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "%@ está marcado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ está marcado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "%@ is checked" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is checked" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "%@ is checked" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is checked" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "%@ est coché" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ est coché" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "%@ telah diperiksa" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ telah diperiksa" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "%@ è spuntato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ è spuntato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "%@はチェック済み" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "%@はチェック済み" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "%@ is checked" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is checked" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "%@ is checked" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is checked" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "%@ is geselecteerd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is geselecteerd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "%@ is checked" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is checked" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "%@ jest zaznaczony" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ jest zaznaczony" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "%@ está marcado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ está marcado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "%@ is checked" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is checked" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "%@ отмечено" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ отмечено" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@ kontrol edildi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ kontrol edildi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "%@ позначено" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ позначено" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "%@ đã tick" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ đã tick" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "%@ 已选中" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 已选中" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "%@ 已勾選" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 已勾選" } } } }, - "Set.View.Kanban.Column.Title.Uncategorized": { - "comment": "MARK: - Sets: Kanban", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Uncategorized" + "Set.View.Kanban.Column.Title.Uncategorized" : { + "comment" : "MARK: - Sets: Kanban", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Uncategorized" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Без катэгорыі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Без катэгорыі" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nicht kategorisiert" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nicht kategorisiert" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Uncategorized" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Uncategorized" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Sin categoría" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Sin categoría" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Uncategorized" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Uncategorized" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Uncategorized" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Uncategorized" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Non catégorisé" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Non catégorisé" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak dikategorikan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak dikategorikan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Senza categoria" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Senza categoria" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "未分類" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "未分類" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Uncategorized" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Uncategorized" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ukategorisert" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ukategorisert" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Niet gecategoriseerd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Niet gecategoriseerd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Uncategorized" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Uncategorized" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Bez kategorii" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bez kategorii" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Sem classificação" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Sem classificação" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Uncategorized" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Uncategorized" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Без категории" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Без категории" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Kategorilenmemiş" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Kategorilenmemiş" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Без категорії" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Без категорії" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chưa được phân loại" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chưa được phân loại" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "未分类" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "未分类" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "未分類" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "未分類" } } } }, - "Set.View.Kanban.Column.Title.Unchecked": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "%@ is unchecked" + "Set.View.Kanban.Column.Title.Unchecked" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is unchecked" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "%@ зняты сцяжок" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ зняты сцяжок" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "%@ ist nicht ausgewählt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ ist nicht ausgewählt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ is unchecked" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ is unchecked" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "%@ no está marcado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ no está marcado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "%@ is unchecked" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is unchecked" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "%@ is unchecked" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is unchecked" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "%@ est décoché" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ est décoché" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "%@ belum dicentang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ belum dicentang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "%@ non è spuntato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ non è spuntato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "%@は未チェック" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "%@は未チェック" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "%@ is unchecked" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is unchecked" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "%@ is unchecked" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is unchecked" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "%@ is niet geselecteerd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is niet geselecteerd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "%@ is unchecked" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is unchecked" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "%@ nie jest zaznaczony" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ nie jest zaznaczony" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "%@ está desmarcado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ está desmarcado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "%@ is unchecked" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ is unchecked" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "%@ не отмечено" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ не отмечено" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@ işaretli değil" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ işaretli değil" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "%@ не позначено" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ не позначено" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "%@ chưa tick" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ chưa tick" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "%@ 未选中" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 未选中" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "%@ 未勾選" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 未勾選" } } } }, - "Set.View.Settings.CardSize.Large.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "كبير" + "Set.View.Settings.CardSize.Large.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "كبير" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вялікі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вялікі" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Groß" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Groß" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Large" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Large" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Grande" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Grande" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Large" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Large" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Large" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Large" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Large" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Large" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Besar" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Besar" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Grande" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Grande" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "大" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "大" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Large" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Large" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Stor" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Stor" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Groot" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Groot" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Large" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Large" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Duży" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Duży" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Grande" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Grande" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Large" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Large" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Большой" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Большой" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Büyük" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Büyük" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Великий" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Великий" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Lớn" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Lớn" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "大" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "大" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "大" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "大" } } } }, - "Set.View.Settings.CardSize.Small.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "صغير" + "Set.View.Settings.CardSize.Small.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "صغير" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Маленькі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Маленькі" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Klein" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Klein" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Small" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Small" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Pequeño" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Pequeño" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Small" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Small" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Pieni" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Pieni" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Petit" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Petit" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kecil" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kecil" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Piccolo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Piccolo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "小" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "小" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "작음" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "작음" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Liten" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Liten" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Klein" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Klein" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଛୋଟ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଛୋଟ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Mały" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Mały" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Pequeno" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Pequeno" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Pequeno" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Pequeno" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Маленький" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Маленький" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Küçük" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Küçük" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Малий" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Малий" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Nhỏ" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Nhỏ" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "小" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "小" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "小" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "小" } } } }, - "Set.View.Settings.CardSize.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "حجم البطاقة" + "Set.View.Settings.CardSize.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "حجم البطاقة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Памеры карткі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Памеры карткі" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Kartengröße" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Kartengröße" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Card size" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Card size" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tamaño de tarjeta" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tamaño de tarjeta" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Card size" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Card size" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Card size" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Card size" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Taille de la carte" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Taille de la carte" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ukuran kartu" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ukuran kartu" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Dimensione della Card" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Dimensione della Card" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "カードサイズ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "カードサイズ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Card size" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Card size" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Størrelse på kort" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Størrelse på kort" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Kaartgrootte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kaartgrootte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Card size" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Card size" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Rozmiar karty" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Rozmiar karty" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tamanho do cartão" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tamanho do cartão" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Card size" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Card size" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Размер карточки" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Размер карточки" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Kart boyutu" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Kart boyutu" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Розмір картки" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Розмір картки" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Kích thước thẻ" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Kích thước thẻ" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "卡片尺寸" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "卡片尺寸" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "卡片大小" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "卡片大小" } } } }, - "Set.View.Settings.GroupBackgroundColors.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Color columns" + "Set.View.Settings.GroupBackgroundColors.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Color columns" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Каляровыя слупкі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Каляровыя слупкі" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Farbspalten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Farbspalten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Color columns" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Color columns" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Colorear columnas" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Colorear columnas" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Color columns" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Color columns" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Color columns" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Color columns" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Colonnes de couleur" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Colonnes de couleur" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Warna kolom" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Warna kolom" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Colore colonne" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Colore colonne" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "列の背景色" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "列の背景色" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Color columns" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Color columns" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Fargelegg kolonner" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Fargelegg kolonner" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Kleur kolommen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kleur kolommen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Color columns" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Color columns" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Kolorowe kolumny" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kolorowe kolumny" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Colunas de cor" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Colunas de cor" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Color columns" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Color columns" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Цветные столбцы" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Цветные столбцы" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sütunları renklendir" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sütunları renklendir" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Колір стовпців" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Колір стовпців" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tô màu cột" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tô màu cột" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "颜色列表" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "颜色列表" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "顏色欄" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "顏色欄" } } } }, - "Set.View.Settings.GroupBy.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Group by" + "Set.View.Settings.GroupBy.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Group by" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Згрупаваць па" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Згрупаваць па" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Gruppieren nach" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Gruppieren nach" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Group by" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Group by" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Agrupar por" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Agrupar por" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Group by" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Group by" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Group by" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Group by" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Grouper par" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Grouper par" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kelompokkan berdasarkan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kelompokkan berdasarkan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Raggruppa per" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Raggruppa per" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "グループ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "グループ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Group by" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Group by" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Gruppér etter" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Gruppér etter" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Groepeer op" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Groepeer op" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Group by" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Group by" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Grupuj według" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Grupuj według" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Agrupar por" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Agrupar por" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Group by" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Group by" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Группировать по" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Группировать по" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Grupla" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Grupla" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Згрупувати за" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Згрупувати за" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Nhóm theo" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Nhóm theo" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "分组" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "分组" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "群組" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "群組" } } } }, - "Set.View.Settings.ImageFit.Title": { - "comment": "MARK: - Sets: View Settings", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "احتواء الصورة" + "Set.View.Settings.ImageFit.Title" : { + "comment" : "MARK: - Sets: View Settings", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "احتواء الصورة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Запоўніць відарыс" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Запоўніць відарыс" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Bild einpassen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Bild einpassen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Fit image" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Fit image" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ajustar imagen" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ajustar imagen" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Fit image" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Fit image" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Fit image" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Fit image" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ajuster l'image" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ajuster l'image" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Paskan gambar" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Paskan gambar" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Adatta immagine" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Adatta immagine" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "画像を合わせる" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "画像を合わせる" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Fit image" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Fit image" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Tilpass bilde" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Tilpass bilde" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Maak afbeelding passend" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Maak afbeelding passend" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Fit image" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Fit image" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dopasuj zdjęcie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dopasuj zdjęcie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Ajustar imagem" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Ajustar imagem" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Fit image" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Fit image" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Подогнать изображение" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Подогнать изображение" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Resmi sığdır" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Resmi sığdır" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Підігнати зображення" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Підігнати зображення" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Fit image" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Fit image" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "图像自适应" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "图像自适应" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "符合圖像" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "符合圖像" } } } }, - "Set.View.Settings.ImagePreview.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "معاينة الصورة" + "Set.View.Settings.ImagePreview.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "معاينة الصورة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Перадагляд відарыса" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Перадагляд відарыса" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Bildvorschau" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Bildvorschau" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Image preview" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Image preview" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Vista de imagen" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Vista de imagen" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Image preview" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Image preview" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Image preview" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Image preview" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Aperçu de l'image" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Aperçu de l'image" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pratinjau gambar" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pratinjau gambar" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Anteprima immagine" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Anteprima immagine" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "画像プレビュー" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "画像プレビュー" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Image preview" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Image preview" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Forhåndsvisning av bilde" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Forhåndsvisning av bilde" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Afbeeldingsvoorbeeld" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Afbeeldingsvoorbeeld" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Image preview" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Image preview" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Podgląd obrazu" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Podgląd obrazu" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Pré-visualização da imagem" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Pré-visualização da imagem" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Image preview" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Image preview" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Предпросмотр изображения" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Предпросмотр изображения" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Resim önizlemesi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Resim önizlemesi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Попередній перегляд зображення" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Попередній перегляд зображення" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Xem trước ảnh" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Xem trước ảnh" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "图像预览" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "图像预览" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "圖片預覽" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "圖片預覽" } } } }, - "Set.View.Settings.NoFilters.Placeholder": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "No filters" + "Set.View.Settings.NoFilters.Placeholder" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "No filters" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Без фільтраў" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Без фільтраў" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Keine Filter" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Keine Filter" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No filters" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No filters" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Sin filtros" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Sin filtros" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No filters" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No filters" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "No filters" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "No filters" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Aucun filtre" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Aucun filtre" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak ada saringan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak ada saringan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nessun filtro" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nessun filtro" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "フィルターがありません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "フィルターがありません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "No filters" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "No filters" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ingen filtre" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ingen filtre" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geen filters" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geen filters" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "No filters" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "No filters" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Brak filtrów" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Brak filtrów" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Sem filtros" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Sem filtros" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "No filters" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "No filters" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Нет фильтров" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Нет фильтров" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Filtre yok" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Filtre yok" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Без фільтрів" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Без фільтрів" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "No filters" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "No filters" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "没有筛选" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "没有筛选" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "沒有篩選" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "沒有篩選" } } } }, - "Set.View.Settings.NoRelations.Placeholder": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "No properties" + "Set.View.Settings.NoRelations.Placeholder" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "No properties" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Keine Eigenschaften" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Keine Eigenschaften" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No properties" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No properties" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Sin propiedades" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Sin propiedades" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No properties" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "No properties" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "No properties" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak ada properti" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak ada properti" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "No properties" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プロパティがありません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プロパティがありません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "No properties" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "No properties" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geen eigenschappen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geen eigenschappen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "No properties" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "No properties" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "No properties" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "No properties" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "No properties" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Hiçbir özellik yok" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Hiçbir özellik yok" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "No properties" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "No properties" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "没有属性" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "没有属性" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "No properties" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "No properties" } } } }, - "Set.View.Settings.NoSorts.Placeholder": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "No sorts" + "Set.View.Settings.NoSorts.Placeholder" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "No sorts" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Няма сартаванняў" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Няма сартаванняў" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Keine Sortierung" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Keine Sortierung" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No sorts" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No sorts" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Sin orden" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Sin orden" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No sorts" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No sorts" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "No sorts" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "No sorts" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Pas de tri" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Pas de tri" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak ada urutan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak ada urutan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nessun ordinamento" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nessun ordinamento" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "並び替えがありません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "並び替えがありません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "No sorts" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "No sorts" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ingen sorteringer" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ingen sorteringer" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geen sortering" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geen sortering" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "No sorts" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "No sorts" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Brak sortowania" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Brak sortowania" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Sem ordenação" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Sem ordenação" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "No sorts" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "No sorts" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Нет сортировок" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Нет сортировок" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sıralama yok" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sıralama yok" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Без сортування" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Без сортування" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "No sorts" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "No sorts" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "没有排序" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "没有排序" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "沒有排序" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "沒有排序" } } } }, - "Set.View.Settings.Objects.Applied.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "%d applied" + "Set.View.Settings.Objects.Applied.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "%d applied" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "%d прыменена" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "%d прыменена" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "%d angewendet" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "%d angewendet" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%d applied" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d applied" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "%d aplicado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "%d aplicado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "%d applied" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "%d applied" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "%d applied" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "%d applied" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "%d appliqué" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "%d appliqué" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "%d direrapkan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "%d direrapkan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "%d applicato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "%d applicato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "%d個が適用済み" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "%d個が適用済み" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "%d applied" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "%d applied" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "%d applied" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "%d applied" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "%d toegepast" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "%d toegepast" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "%d applied" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "%d applied" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "%d stosowane" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "%d stosowane" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "%d aplicado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "%d aplicado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "%d applied" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "%d applied" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "%d применено" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "%d применено" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%d uygulandı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%d uygulandı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "%d застосовано" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "%d застосовано" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đã áp dụng %d" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đã áp dụng %d" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "%d 已应用" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "%d 已应用" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "%d 已套用" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "%d 已套用" } } } }, - "Set.View.UnsupportedAlert": { - "comment": "MARK: - Sets: unsupported View", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "View is unsupported on mobile" + "Set.View.UnsupportedAlert" : { + "comment" : "MARK: - Sets: unsupported View", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "View is unsupported on mobile" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выгляд не падтрымліваецца на мабільных прыладах" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выгляд не падтрымліваецца на мабільных прыладах" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ansicht wird auf Mobilgeräten nicht unterstützt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ansicht wird auf Mobilgeräten nicht unterstützt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "View is unsupported on mobile" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "View is unsupported on mobile" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Esta vista no es compatible con la versión móvil" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Esta vista no es compatible con la versión móvil" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "View is unsupported on mobile" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "View is unsupported on mobile" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "View is unsupported on mobile" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "View is unsupported on mobile" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "La vue n'est pas prise en charge sur mobile" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "La vue n'est pas prise en charge sur mobile" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tampilan ini belum didukung di perangkat mobile" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tampilan ini belum didukung di perangkat mobile" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "La vista non è supportata sul cellulare" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "La vista non è supportata sul cellulare" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "モバイル版ではビューに対応していません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "モバイル版ではビューに対応していません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "View is unsupported on mobile" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "View is unsupported on mobile" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "View is unsupported on mobile" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "View is unsupported on mobile" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Weergave wordt niet ondersteund op mobiel" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Weergave wordt niet ondersteund op mobiel" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "View is unsupported on mobile" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "View is unsupported on mobile" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "View is unsupported on mobile" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "View is unsupported on mobile" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "A exibição não é suportada no celular" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "A exibição não é suportada no celular" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "A exibição não é suportada em dispositivos móveis" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "A exibição não é suportada em dispositivos móveis" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Просмотр не поддерживается на мобильном телефоне" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Просмотр не поддерживается на мобильном телефоне" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Görünüm mobil cihazlarda desteklenmiyor" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Görünüm mobil cihazlarda desteklenmiyor" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "View is unsupported on mobile" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "View is unsupported on mobile" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "View is unsupported on mobile" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "View is unsupported on mobile" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "此视图不支持在移动端显示" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "此视图不支持在移动端显示" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "移動裝置上不支援檢視" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "移動裝置上不支援檢視" } } } }, - "Shared": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "مشترك" + "Shared" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "مشترك" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Абагуленае" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Абагуленае" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Geteilt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Geteilt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Shared" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Compartido" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartido" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Shared" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Shared" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Shared" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Shared" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Partagé" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Partagé" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Berbagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Berbagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Condiviso" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Condiviso" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "共有済み" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "共有済み" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Shared" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Shared" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Delt" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Delt" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Gedeeld" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Gedeeld" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ସେୟାର କରାଯାଇଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ସେୟାର କରାଯାଇଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Udostępnione" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Udostępnione" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Compartilhado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartilhado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Shared" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Shared" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Общие" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Общие" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Paylaşılan" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Paylaşılan" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Спільні" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Спільні" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Shared" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Shared" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "共享" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "共享" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "分享" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "分享" } } } }, - "Sharing.AddTo": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Add to" - } - }, - "be": { - "stringUnit": { - "state": "new", - "value": "Дадаць у" - } - }, - "de": { - "stringUnit": { - "state": "new", - "value": "Hinzufügen zu" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Add to" - } - }, - "es": { - "stringUnit": { - "state": "new", - "value": "Añadir a" - } - }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Add to" - } - }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Add to" - } - }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ajouter à" - } - }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tambah ke " - } - }, - "it": { - "stringUnit": { - "state": "new", - "value": "Aggiungi a" - } - }, - "ja": { - "stringUnit": { - "state": "new", - "value": "追加" - } - }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Add to" - } - }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Legg til i" - } - }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voeg toe aan" - } - }, - "or": { - "stringUnit": { - "state": "new", - "value": "Add to" - } - }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dodaj do" - } - }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Adicionar à" - } - }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Add to" - } - }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Добавить" - } - }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Olarak ekle" - } - }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Додати до" - } - }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Thêm vào" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "添加到" - } - }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "添加到" - } - } - } - }, - "Sharing.Any.Block": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Blocks" - } - }, - "be": { - "stringUnit": { - "state": "new", - "value": "Блокі" - } - }, - "de": { - "stringUnit": { - "state": "new", - "value": "Blöcke" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Blocks" - } - }, - "es": { - "stringUnit": { - "state": "new", - "value": "Bloques" - } - }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Blocks" - } - }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Blocks" - } - }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Blocs" - } - }, - "id": { - "stringUnit": { - "state": "new", - "value": "Blok" - } - }, - "it": { - "stringUnit": { - "state": "new", - "value": "Blocchi" - } - }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ブロック" - } - }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Blocks" - } - }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Blokker" - } - }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Blokken" - } - }, - "or": { - "stringUnit": { - "state": "new", - "value": "Blocks" - } - }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Bloki" - } - }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Blocos" - } - }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Blocks" - } - }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Блоки" - } - }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bloklar" - } - }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Blocks" - } - }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Blocks" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "区块" - } - }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "區塊" - } - } - } - }, - "Sharing.File.Block": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "File Block" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - }, - "two": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - }, - "zero": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - } - } - } - }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d файлавыя блокі" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d файлавых блокаў" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Файлавы блок" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d файлавых блокаў" - } - } - } - } - }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Dateiblock" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Dateiblöcke" - } - } - } - } - }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "File Block" - } - }, - "other": { - "stringUnit": { - "state": "translated", - "value": "%d File Blocks" - } - } - } - } - }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bloque de archivo" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d bloques de archivo" - } - } - } - } - }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "File Block" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - } - } - } - }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "File Block" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - } - } - } - }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bloc de fichier" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Blocs de fichiers" - } - } - } - } - }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d Blok Berkas" - } - } - } - } - }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Blocco File" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Blocchi File " - } - } - } - } - }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d個のファイルブロック" - } - } - } - } - }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d 파일 블록" - } - } - } - } - }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Fil-blokk" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d fil-blokker" - } - } - } - } - }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bestand blok" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Bestand blokken" - } - } - } - } - }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "File Block" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - } - } - } - }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d bloki plików" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d bloki plików" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Blok plików" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d bloki plików" - } - } - } - } - }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bloco de Arquivo" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Blocos de Arquivos" - } - } - } - } - }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "File Block" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - } - } - } - }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d файловых блока" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d файловых блоков" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Файловый блок" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d файловых блоков" - } - } - } - } - }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Dosya Bloğu" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Dosya Blokları" - } - } - } - } - }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "File Block" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - } - } - } - }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Blocks" - } - } - } - } - }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d 文件块" - } - } - } - } - }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d 文件區塊" - } - } - } - } - } - } - }, - "Sharing.File.NewObject": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "File Object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - }, - "two": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - }, - "zero": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - } - } - } - }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d Файлавыя аб'екты" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d Файлавых аб'ектаў" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Файлавы аб'ект" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Файлавых аб'ектаў" - } - } - } - } - }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Dateiobjekt" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Dateiobjekte" - } - } - } - } - }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "File Object" - } - }, - "other": { - "stringUnit": { - "state": "translated", - "value": "%d File Objects" - } - } - } - } - }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Objeto de archivo" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d objetos de archivo" - } - } - } - } - }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "File Object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - } - } - } - }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "File Object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - } - } - } - }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Objet de fichier" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d objets de fichiers" - } - } - } - } - }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d Objek Berkas" - } - } - } - } - }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Oggetto File" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Oggetti File" - } - } - } - } - }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d個のファイルオブジェクト" - } - } - } - } - }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - } - } - } - }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Fil-objekt" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d filobjekter" - } - } - } - } - }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bestand object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Bestand objecten" - } - } - } - } - }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "File Object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - } - } - } - }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d File Objects (Obiekty plików)" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d File Objects (Obiekty plików)" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Obiekt plikowy" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Objects (Obiekty plików)" - } - } - } - } - }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Objeto de Arquivo" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Objetos de Arquivo" - } - } - } - } - }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "File Object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - } - } - } - }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d файловых объекта" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d файловых объектов" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Файловый объект" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d файловых объектов " - } - } - } - } - }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Dosya Nesnesi" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Dosya Nesneleri" - } - } - } - } - }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "File Object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - } - } - } - }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d File Objects" - } - } - } - } - }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d 文件对象" - } - } - } - } - }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d 個檔案物件" - } - } - } - } - } - } - }, - "Sharing.InputPlaceholder": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Add a comment..." - } - } - } - }, - "Sharing.LinkTo": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "رابط إلى" - } - }, - "be": { - "stringUnit": { - "state": "new", - "value": "Спасылка на" - } - }, - "de": { - "stringUnit": { - "state": "new", - "value": "Link zu" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Link to" - } - }, - "es": { - "stringUnit": { - "state": "new", - "value": "Conectar a" - } - }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Link to" - } - }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Link to" - } - }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Lien vers" - } - }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tautkan ke" - } - }, - "it": { - "stringUnit": { - "state": "new", - "value": "Collega a" - } - }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リンク" - } - }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Link to" - } - }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Koble til" - } - }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Link naar" - } - }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଲିଙ୍କ୍ କରନ୍ତୁ" - } - }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Łącze do" - } - }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Vincular a" - } - }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Link to" - } - }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Связать с" - } - }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şuna bağla" - } - }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Зв'язати з" - } - }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Liên kết đến" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "链接到" - } - }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "連結到" - } - } - } - }, - "Sharing.Navigation.LeftButton.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إلغاء" - } - }, - "be": { - "stringUnit": { - "state": "new", - "value": "Скасаваць" - } - }, - "de": { - "stringUnit": { - "state": "new", - "value": "Abbrechen" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Cancel" - } - }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cancelar" - } - }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Cancel" - } - }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Peruuta" - } - }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Annuler" - } - }, - "id": { - "stringUnit": { - "state": "new", - "value": "Batal" - } - }, - "it": { - "stringUnit": { - "state": "new", - "value": "Annulla" - } - }, - "ja": { - "stringUnit": { - "state": "new", - "value": "キャンセル" - } - }, - "ko": { - "stringUnit": { - "state": "new", - "value": "취소" - } - }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Avbryt" - } - }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Annuleren" - } - }, - "or": { - "stringUnit": { - "state": "new", - "value": "ବାତିଲ କରନ୍ତୁ " - } - }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Anuluj" - } - }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Cancelar" - } - }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Cancelar" - } - }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Отмена" - } - }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İptal" - } - }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Скасувати" - } - }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Huỷ" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "取消" - } - }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "取消" - } - } - } - }, - "Sharing.Navigation.RightButton.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تم" - } - }, - "be": { - "stringUnit": { - "state": "new", - "value": "Гатова" - } - }, - "de": { - "stringUnit": { - "state": "new", - "value": "Fertig" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Done" - } - }, - "es": { - "stringUnit": { - "state": "new", - "value": "Listo" - } - }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Done" - } - }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Valmis" - } - }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Terminé" - } - }, - "id": { - "stringUnit": { - "state": "new", - "value": "Selesai" - } - }, - "it": { - "stringUnit": { - "state": "new", - "value": "Fatto" - } - }, - "ja": { - "stringUnit": { - "state": "new", - "value": "完了" - } - }, - "ko": { - "stringUnit": { - "state": "new", - "value": "완료" - } - }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ferdig" - } - }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Gereed" - } - }, - "or": { - "stringUnit": { - "state": "new", - "value": "ହେଲା" - } - }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Gotowe" - } - }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Concluído" - } - }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Concluído" - } - }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Готово" - } - }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bitti" - } - }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Готово" - } - }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Xong" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "完成" - } - }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "完成" - } - } - } - }, - "Sharing.Navigation.title": { - "comment": "MARK: - Sharing", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إضافة إلى Anytype" - } - }, - "be": { - "stringUnit": { - "state": "new", - "value": "Дадаць у Anytype" - } - }, - "de": { - "stringUnit": { - "state": "new", - "value": "Zu Anytype hinzufügen" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Add to Anytype" - } - }, - "es": { - "stringUnit": { - "state": "new", - "value": "Añadir a Anytype" - } - }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Add to Anytype" - } - }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Add to Anytype" - } - }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ajouter à Anytype" - } - }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tambah ke Anytype" - } - }, - "it": { - "stringUnit": { - "state": "new", - "value": "Aggiungi a Anytype" - } - }, - "ja": { - "stringUnit": { - "state": "new", - "value": "Anytypeに追加" - } - }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Add to Anytype" - } - }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Legg til Anytype" - } - }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voeg toe aan Anytype" - } - }, - "or": { - "stringUnit": { - "state": "new", - "value": "Add to Anytype" - } - }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dodaj do dowolnego typu" - } - }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Adicionar ao Anytype" - } - }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Add to Anytype" - } - }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Добавить в Anytype" - } - }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Anytype'a ekle" - } - }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Додати до Anytype" - } - }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Add to Anytype" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "添加至 Anytype" - } - }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "添加到 Anytype" - } - } - } - }, - "Sharing.ObjectList.title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Select destination" - } - } - } - }, - "Sharing.SaveAs": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "SAVE AS" - } - }, - "be": { - "stringUnit": { - "state": "new", - "value": "ЗАХАВАЦЬ ЯК" - } - }, - "de": { - "stringUnit": { - "state": "new", - "value": "SPEICHERN ALS" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "SAVE AS" - } - }, - "es": { - "stringUnit": { - "state": "new", - "value": "GUARDAR COMO" - } - }, - "fa": { - "stringUnit": { - "state": "new", - "value": "SAVE AS" - } - }, - "fi": { - "stringUnit": { - "state": "new", - "value": "SAVE AS" - } - }, - "fr": { - "stringUnit": { - "state": "new", - "value": "ENREGISTRER SOUS" - } - }, - "id": { - "stringUnit": { - "state": "new", - "value": "SIMPAN SEBAGAI" - } - }, - "it": { - "stringUnit": { - "state": "new", - "value": "SALVA COME" - } - }, - "ja": { - "stringUnit": { - "state": "new", - "value": "別名で保存" - } - }, - "ko": { - "stringUnit": { - "state": "new", - "value": "SAVE AS" - } - }, - "nb": { - "stringUnit": { - "state": "new", - "value": "LAGRE SOM" - } - }, - "nl": { - "stringUnit": { - "state": "new", - "value": "OPSLAAN ALS" - } - }, - "or": { - "stringUnit": { - "state": "new", - "value": "SAVE AS" - } - }, - "pl": { - "stringUnit": { - "state": "new", - "value": "ZAPISZ JAKO" - } - }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "SALVAR COMO" - } - }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "SAVE AS" - } - }, - "ru": { - "stringUnit": { - "state": "new", - "value": "СОХРАНИТЬ КАК" - } - }, - "tr": { - "stringUnit": { - "state": "new", - "value": "FARKLI KAYDET" - } - }, - "uk": { - "stringUnit": { - "state": "new", - "value": "ЗБЕРЕГТИ ЯК" - } - }, - "vi": { - "stringUnit": { - "state": "new", - "value": "SAVE AS" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "保存为" - } - }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "另存新檔" - } - } - } - }, - "Sharing.SelectSpace": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "المساحة" - } - }, - "be": { - "stringUnit": { - "state": "new", - "value": "Прастора" - } - }, - "de": { - "stringUnit": { - "state": "new", - "value": "Space" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Space" - } - }, - "es": { - "stringUnit": { - "state": "new", - "value": "Espacio" - } - }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Space" - } - }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Space" - } - }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Espace" - } - }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ruang" - } - }, - "it": { - "stringUnit": { - "state": "new", - "value": "Spazio" - } - }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース" - } - }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Space" - } - }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Rom" - } - }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ruimte" - } - }, - "or": { - "stringUnit": { - "state": "new", - "value": "Space" - } - }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przestrzeń" - } - }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Espaço" - } - }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Space" - } - }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Пространство" - } - }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alan" - } - }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Простір" - } - }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Space" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "空间" - } - }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "空間" - } - } - } - }, - "Sharing.SendToChat": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Send to chat" - } - } - } - }, - "Sharing.Text.NoteObject": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Note object" - } - }, - "be": { - "stringUnit": { - "state": "new", - "value": "Аб'ект нататка" - } - }, - "de": { - "stringUnit": { - "state": "new", - "value": "Notiz-Objekt" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Note object" - } - }, - "es": { - "stringUnit": { - "state": "new", - "value": "Objeto de nota" - } - }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Note object" - } - }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Note object" - } - }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Objet Note" - } - }, - "id": { - "stringUnit": { - "state": "new", - "value": "Catatan objek" - } - }, - "it": { - "stringUnit": { - "state": "new", - "value": "Oggetto nota" - } - }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ノートオブジェクト" - } - }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Note object" - } - }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Notatobjekt" - } - }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Noteer object" - } - }, - "or": { - "stringUnit": { - "state": "new", - "value": "Note object" - } - }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Obiekt notatki" - } - }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Objeto nota" - } - }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Note object" - } - }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Объект заметка" - } - }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Not nesnesi" - } - }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Об'єкт нотатки" - } - }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Note object" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "笔记对象" - } - }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "筆記物件" + "Sharing.InputPlaceholder" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add a comment..." } } } }, - "Sharing.Text.TextBlock": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Blocks" + "Sharing.Navigation.title" : { + "comment" : "MARK: - Sharing", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إضافة إلى Anytype" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Блокі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Дадаць у Anytype" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Blöcke" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Zu Anytype hinzufügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Blocks" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add to Anytype" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Bloques" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Añadir a Anytype" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Blocks" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to Anytype" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Blocks" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to Anytype" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Blocs" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ajouter à Anytype" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Blok" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tambah ke Anytype" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Blocchi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Aggiungi a Anytype" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ブロック" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytypeに追加" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Blocks" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to Anytype" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Blokker" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Legg til Anytype" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Blokken" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voeg toe aan Anytype" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Blocks" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to Anytype" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Bloki" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dodaj do dowolnego typu" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Blocos" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Adicionar ao Anytype" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Blocks" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to Anytype" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Блоки" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Добавить в Anytype" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bloklar" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Anytype'a ekle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Blocks" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Додати до Anytype" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Blocks" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add to Anytype" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "区块" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "添加至 Anytype" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "區塊" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "添加到 Anytype" } } } }, - "Sharing.Tip.Button.title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Show share menu" - } - }, - "be": { - "stringUnit": { - "state": "new", - "value": "Паказаць меню абагульвання" - } - }, - "de": { - "stringUnit": { - "state": "new", - "value": "Freigabemenü anzeigen" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Show share menu" - } - }, - "es": { - "stringUnit": { - "state": "new", - "value": "Mostrar menú de compartir" - } - }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Show share menu" - } - }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Show share menu" - } - }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Afficher le menu de partage" - } - }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tampilan menu berbagi" - } - }, - "it": { - "stringUnit": { - "state": "new", - "value": "Mostra menu di condivisione" - } - }, - "ja": { - "stringUnit": { - "state": "new", - "value": "共有メニューを表示" - } - }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Show share menu" - } - }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Vis delingsmeny" - } - }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Toon deel menu" - } - }, - "or": { - "stringUnit": { - "state": "new", - "value": "Show share menu" - } - }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Pokaż menu udostępniania" - } - }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Mostrar menu de compartilhamento" - } - }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Show share menu" - } - }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Показать меню для обмена" - } - }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Paylaşım menüsünü göster" - } - }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Show share menu" - } - }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Show share menu" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "显示分享菜单" - } - }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "顯示分享選單" + "Sharing.ObjectList.title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select destination" } } } }, - "Sharing.Tip.Steps.1": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Tap the iOS sharing button" - } - }, - "be": { - "stringUnit": { - "state": "new", - "value": "Націсніце кнопку абагульвання iOS" - } - }, - "de": { - "stringUnit": { - "state": "new", - "value": "Tippen Sie auf den iOS-Sharing-Button" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Tap the iOS sharing button" - } - }, - "es": { - "stringUnit": { - "state": "new", - "value": "Toca el botón de compartir en iOS" - } - }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Tap the iOS sharing button" - } - }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Tap the iOS sharing button" - } - }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Appuyez sur le bouton de partage iOS" - } - }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ketuk tombol berbagi iOS" - } - }, - "it": { - "stringUnit": { - "state": "new", - "value": "Tocca il pulsante di condivisione iOS" - } - }, - "ja": { - "stringUnit": { - "state": "new", - "value": "iOS共有ボタンをタップ" - } - }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Tap the iOS sharing button" - } - }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Trykk på knappen for deling i iOS" - } - }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Tik op de iOS deel knop" - } - }, - "or": { - "stringUnit": { - "state": "new", - "value": "Tap the iOS sharing button" - } - }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Stuknij przycisk udostępniania w systemie iOS" - } - }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Toque no botão de compartilhamento do iOS" - } - }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Tap the iOS sharing button" - } - }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Нажмите на кнопку обмена iOS" - } - }, - "tr": { - "stringUnit": { - "state": "new", - "value": "iOS paylaşım düğmesine dokunun" - } - }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Tap the iOS sharing button" - } - }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tap the iOS sharing button" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "单击 iOS 共享按钮" - } - }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "點擊 iOS 分享按鈕" + "Sharing.SendToChat" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Send to chat" } } } }, - "Sharing.Tip.Steps.2": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Scroll past the app and tap More" + "Sharing.Tip.Button.title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Show share menu" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пракруціце міма праграмы і націсніце «Яшчэ»." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Паказаць меню абагульвання" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Scrolle über die App hinaus und tippe auf Mehr" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Freigabemenü anzeigen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Scroll past the app and tap More" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show share menu" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Desplaza las opciones y toca Más" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Mostrar menú de compartir" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Scroll past the app and tap More" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Show share menu" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Scroll past the app and tap More" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Show share menu" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Défiler au-delà de l'application et appuyez sur Plus" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Afficher le menu de partage" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Gulir melewati aplikasi dan ketuk Lainnya" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tampilan menu berbagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Scorri oltre l'app e tocca Altro" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Mostra menu di condivisione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "アプリをスクロールして、その他をタップ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "共有メニューを表示" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Scroll past the app and tap More" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Show share menu" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Bla forbi appen og trykk mer" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Vis delingsmeny" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Scroll voorbij de app en tik op Meer" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Toon deel menu" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Scroll past the app and tap More" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Show share menu" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przewiń obok aplikacji i kliknij Więcej" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Pokaż menu udostępniania" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Role a tela para além do aplicativo e toque em Mais" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Mostrar menu de compartilhamento" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Scroll past the app and tap More" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Show share menu" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Прокрутите приложение и нажмите ещё" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Показать меню для обмена" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Uygulamayı kaydırın ve Daha Fazla'ya dokunun" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Paylaşım menüsünü göster" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Scroll past the app and tap More" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Show share menu" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Scroll past the app and tap More" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Show share menu" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "滚动过该应用并点击“更多”" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "显示分享菜单" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "滾動應用程式並點擊更多" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "顯示分享選單" } } } }, - "Sharing.Tip.Steps.3": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Tap Edit to find “Anytype” and tap" + "Sharing.Tip.Steps.1" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Націсніце «Рэдагаваць», каб знайсці «Anytype», і націсніце" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Націсніце кнопку абагульвання iOS" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Tippe auf Bearbeiten, um \"Anytype\" zu finden und darauf zu tippen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Tippen Sie auf den iOS-Sharing-Button" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Tap Edit to find “Anytype” and tap" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tap the iOS sharing button" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Toca Editar para buscar «Anytype» y toca" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Toca el botón de compartir en iOS" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Tap Edit to find “Anytype” and tap" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Tap Edit to find “Anytype” and tap" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Appuyez sur Modifier pour trouver « Anytype » et appuyez" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Appuyez sur le bouton de partage iOS" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ketuk Sunting untuk menemukan “Anytype” dan ketuk" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ketuk tombol berbagi iOS" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Tocca Modifica per trovare “Anytype” e tocca" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Tocca il pulsante di condivisione iOS" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "編集をタップして、Anytypeを見つけ追加してください" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "iOS共有ボタンをタップ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Tap Edit to find “Anytype” and tap" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Trykk på Rediger for å finne \"Anytype\" og trykk på" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Trykk på knappen for deling i iOS" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Tik op Bewerken om \"Anytype\" te vinden en tik op" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Tik op de iOS deel knop" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Tap Edit to find “Anytype” and tap" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Stuknij Edytuj, aby znaleźć \"Anytype\" i stuknij" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Stuknij przycisk udostępniania w systemie iOS" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Toque em Editar, encontre \"Anytype\" e toque" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Toque no botão de compartilhamento do iOS" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Tap Edit to find “Anytype” and tap" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Нажмите Отредактировать, чтобы найти «Anytype» и нажмите" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Нажмите на кнопку обмена iOS" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "\"Anytype\"ı bulmak için Düzenle'ye dokunun" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "iOS paylaşım düğmesine dokunun" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Tap Edit to find “Anytype” and tap" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tap Edit to find “Anytype” and tap" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the iOS sharing button" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "单击编辑来查找“Anytype”,然后点击" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "单击 iOS 共享按钮" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "點擊編輯找到 \"Anytype\",然後點擊" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "點擊 iOS 分享按鈕" } } } }, - "Sharing.Tip.Title": { - "comment": "MARK: - Sharing tips", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Share Extension" + "Sharing.Tip.Steps.2" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Абагуліць пашырэнне" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пракруціце міма праграмы і націсніце «Яшчэ»." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Erweiterung teilen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Scrolle über die App hinaus und tippe auf Mehr" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Share Extension" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Scroll past the app and tap More" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Extensión para compartir" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Desplaza las opciones y toca Más" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Share Extension" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Share Extension" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Extension de partage" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Défiler au-delà de l'application et appuyez sur Plus" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bagikan Ekstensi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Gulir melewati aplikasi dan ketuk Lainnya" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Condividi Estensione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Scorri oltre l'app e tocca Altro" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "共有拡張機能" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "アプリをスクロールして、その他をタップ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Share Extension" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Delingsutvidelse" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Bla forbi appen og trykk mer" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deel extensie" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll voorbij de app en tik op Meer" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Share Extension" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Rozszerzenie udostępniania" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Przewiń obok aplikacji i kliknij Więcej" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Compartilhar extensão" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Role a tela para além do aplicativo e toque em Mais" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Share Extension" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Расширение для общего доступа" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Прокрутите приложение и нажмите ещё" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Uzantıyı Paylaş" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Uygulamayı kaydırın ve Daha Fazla'ya dokunun" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Share Extension" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Share Extension" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Scroll past the app and tap More" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "分享扩展" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "滚动过该应用并点击“更多”" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "共享延伸模組" - } - } - } - }, - "Sharing.Title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Select Space" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "滾動應用程式並點擊更多" } } } }, - "Sharing.URL.Block": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Link Block" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - }, - "two": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - }, - "zero": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - } - } + "Sharing.Tip.Steps.3" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap Edit to find “Anytype” and tap" } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "Сувязь %d блокаў" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "Сувязь %d блокаў" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Сувязь блока" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Сувязь %d блокаў" - } - } - } + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Націсніце «Рэдагаваць», каб знайсці «Anytype», і націсніце" } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Block verlinken" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Blöcke verlinken" - } - } - } + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Tippe auf Bearbeiten, um \"Anytype\" zu finden und darauf zu tippen" } }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "Link Block" - } - }, - "other": { - "stringUnit": { - "state": "translated", - "value": "Link %d Blocks" - } - } - } + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tap Edit to find “Anytype” and tap" } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Enlace a bloque" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Enlace a %d bloques" - } - } - } + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Toca Editar para buscar «Anytype» y toca" } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Link Block" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - } - } + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap Edit to find “Anytype” and tap" } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Link Block" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - } - } + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap Edit to find “Anytype” and tap" } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Lier le bloc" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Lier %d blocs" - } - } - } + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Appuyez sur Modifier pour trouver « Anytype » et appuyez" } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "Tautkan %d Blok" - } - } - } + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ketuk Sunting untuk menemukan “Anytype” dan ketuk" } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Blocco Collegamento" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Collega %d Blocchi" - } - } - } + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Tocca Modifica per trovare “Anytype” e tocca" } - }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d個のリンクブロック" - } - } - } + }, + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "編集をタップして、Anytypeを見つけ追加してください" } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - } - } + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap Edit to find “Anytype” and tap" } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Lenke blokk" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Lenke %d blokker" - } - } - } + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Trykk på Rediger for å finne \"Anytype\" og trykk på" } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Link blok" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Link %d blokken" - } - } - } + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Tik op Bewerken om \"Anytype\" te vinden en tik op" } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Link Block" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - } - } + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap Edit to find “Anytype” and tap" } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "Bloki %d linków" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "Bloki %d linków" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Blok z odnośnikiem" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Bloki %d linków" - } - } - } + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Stuknij Edytuj, aby znaleźć \"Anytype\" i stuknij" } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bloco de Link" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Vincular %d Blocos" - } - } - } + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Toque em Editar, encontre \"Anytype\" e toque" } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Link Block" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - } - } + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap Edit to find “Anytype” and tap" } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "Связать %d блока" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "Связать %d блоков" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Связать блок" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Связать %d блоков" - } - } - } + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Нажмите Отредактировать, чтобы найти «Anytype» и нажмите" } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bağlantı Bloğu" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Bağlantı %d Blokları" - } - } - } + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "\"Anytype\"ı bulmak için Düzenle'ye dokunun" } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Link Block" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - } - } + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap Edit to find “Anytype” and tap" } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "Link %d Blocks" - } - } - } + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap Edit to find “Anytype” and tap" } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "链接 %d 块" - } - } - } + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "单击编辑来查找“Anytype”,然后点击" } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "關聯 %d 個區塊" - } - } - } + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "點擊編輯找到 \"Anytype\",然後點擊" } } } }, - "Sharing.URL.NewObject": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Bookmark Object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - }, - "two": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - }, - "zero": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - } - } + "Sharing.Tip.Title" : { + "comment" : "MARK: - Sharing tips", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Share Extension" } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d Закладкі аб'екта" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d Закладак аб'екта" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Закладка аб'екта" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Закладак аб'екта" - } - } - } + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Абагуліць пашырэнне" } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Lesezeichen-Objekt" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Lesezeichen-Objekte" - } - } - } + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Erweiterung teilen" } }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "Bookmark Object" - } - }, - "other": { - "stringUnit": { - "state": "translated", - "value": "%d Bookmark Objects" - } - } - } + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share Extension" } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Objeto marcador" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d objetos marcador" - } - } - } + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Extensión para compartir" } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bookmark Object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - } - } + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Share Extension" } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bookmark Object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - } - } + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Share Extension" } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Objet de marque-page" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Objets de marque-pages" - } - } - } + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Extension de partage" } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d Objek Markah" - } - } - } + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bagikan Ekstensi" } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Oggetto Segnalibro" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Oggetti Segnalibro" - } - } - } + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Condividi Estensione" } }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d個のブックマークオブジェクト" - } - } - } + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "共有拡張機能" } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d 북마크" - } - } - } + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Share Extension" } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bokmerkeobjekt" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d bokmerkeobjekter" - } - } - } + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Delingsutvidelse" } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bladwijzer object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Bladwijzer objecten" - } - } - } + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deel extensie" } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bookmark Object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - } - } + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Share Extension" } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d Obiekty zakładek" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d Obiekty zakładek" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Obiekt zakładki" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Obiekty zakładek" - } - } - } + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Rozszerzenie udostępniania" } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Objeto Marcador" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Objetos Marcadores" - } - } - } + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartilhar extensão" } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bookmark Object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - } - } + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Share Extension" } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "Добавить %d объекта в закладки " - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "Добавить %d объектов в закладки" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Добавить объект в закладки" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "Добавить %d объектов в закладки" - } - } - } + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Расширение для общего доступа" } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Yer İşareti Nesnesi" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Yer İşareti Nesneleri" - } - } - } + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Uzantıyı Paylaş" } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - }, - "one": { - "stringUnit": { - "state": "new", - "value": "Bookmark Object" - } - }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - } - } + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Share Extension" } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d Bookmark Objects" - } - } - } + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Share Extension" } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d 书签对象" - } - } - } + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "分享扩展" } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d 書籤物件" - } - } - } + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "共享延伸模組" + } + } + } + }, + "Sharing.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select Space" } } } }, - "SlashMenu.DotsDivider": { - "comment": "MARK: Slash Menu", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "فاصل نقطي" + "SlashMenu.DotsDivider" : { + "comment" : "MARK: Slash Menu", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "فاصل نقطي" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Раздзяляльнік з кропак" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Раздзяляльнік з кропак" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Gepunktete Trennlinie" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Gepunktete Trennlinie" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Dots divider" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Dots divider" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Puntos divisorios" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Puntos divisorios" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Dots divider" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Dots divider" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Pilkullinen jakaja" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Pilkullinen jakaja" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Points de séparation" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Points de séparation" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Titik pemisah" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Titik pemisah" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Divisore a puntini" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Divisore a puntini" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "区切り点" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "区切り点" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Dots divider" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Dots divider" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Prikkelinje" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Prikkelinje" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Gestippelde scheidingslijn" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Gestippelde scheidingslijn" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Dots divider" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Dots divider" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dzielnik kropek" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dzielnik kropek" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Divisor pontilhado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Divisor pontilhado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Dots divider" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Dots divider" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Точечный разделитель" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Точечный разделитель" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Nokta ayırıcı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nokta ayırıcı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Точковий розділювач" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Точковий розділювач" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Ba chấm phân cách" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ba chấm phân cách" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "圆点分隔线" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "圆点分隔线" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "圓點分隔線" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "圓點分隔線" } } } }, - "SlashMenu.LineDivider": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "فاصل خطي" + "SlashMenu.LineDivider" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "فاصل خطي" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Лінейны раздзяляльнік" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Лінейны раздзяляльнік" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Trennlinie" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Trennlinie" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Line divider" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Line divider" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Línea divisoria" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Línea divisoria" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Line divider" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Line divider" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Viivajakaja" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Viivajakaja" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ligne de séparation" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ligne de séparation" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Garis pemisah" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Garis pemisah" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Linea divisoria" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Linea divisoria" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "区切り線" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "区切り線" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Line divider" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Line divider" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Linjeskiller" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Linjeskiller" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Scheidingslijn" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Scheidingslijn" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Line divider" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Line divider" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Rozdzielacz linii" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Rozdzielacz linii" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Divisor de linha" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Divisor de linha" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Line divider" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Line divider" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Линейный разделитель" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Линейный разделитель" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Çizgi ayırıcı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Çizgi ayırıcı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Лінійний розділювач" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Лінійний розділювач" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Gạch ngang phân cách" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Gạch ngang phân cách" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "分割线" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "分割线" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "分隔線" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "分隔線" } } } }, - "SlashMenu.Table": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "جدول" + "SlashMenu.Table" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "جدول" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Табліца" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Табліца" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Tabelle" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Tabelle" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Table" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Table" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tabla" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tabla" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Table" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Table" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Taulukko" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Taulukko" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Tableau" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tableau" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tabel" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tabel" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Tabella" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Tabella" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "テーブル" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "テーブル" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Table" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Table" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Tabell" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Tabell" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Tabel" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Tabel" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Table" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Table" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Tabela" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Tabela" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tabela" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tabela" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Table" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Table" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Таблица" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Таблица" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Tablo" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tablo" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Таблиця" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Таблиця" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bảng" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bảng" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "表格" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "表格" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "表格" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "表格" } } } }, - "SlashMenu.TableOfContents": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "جدول المحتويات" + "SlashMenu.TableOfContents" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "جدول المحتويات" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Змест" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Змест" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Inhaltsverzeichnis" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Inhaltsverzeichnis" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Table of contents" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Table of contents" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Índice" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Índice" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Table of contents" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Table of contents" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Sisällysluettelo" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Sisällysluettelo" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Table des matières" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Table des matières" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Daftar isi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Daftar isi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sommario" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sommario" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "目次" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "目次" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Table of contents" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Table of contents" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Innholdsfortegnelse" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Innholdsfortegnelse" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Inhoudsopgave" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Inhoudsopgave" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Table of contents" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Table of contents" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Spis treści" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Spis treści" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tabela de conteúdos" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tabela de conteúdos" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Table of contents" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Table of contents" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Содержание" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Содержание" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İçindekiler" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İçindekiler" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Зміст" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Зміст" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Mục lục" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Mục lục" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "目录" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "目录" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "目錄" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "目錄" } } } }, - "Space.Invite.EditorAccess.Subtitle": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "People with link can edit and write in chat" + "Space.Invite.EditorAccess.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "People with link can edit and write in chat" } } } }, - "Space.Invite.EditorAccess.Title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Editor access" + "Space.Invite.EditorAccess.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor access" } } } }, - "Space.Invite.LinkDisabled.Subtitle": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Only already invited members have access" + "Space.Invite.LinkDisabled.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Only already invited members have access" } } } }, - "Space.Invite.LinkDisabled.Title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Link disabled" + "Space.Invite.LinkDisabled.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Link disabled" } } } }, - "Space.Invite.RequestAccess.Subtitle": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Owner must approve each join request" + "Space.Invite.RequestAccess.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Owner must approve each join request" } } } }, - "Space.Invite.RequestAccess.Title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Request access" + "Space.Invite.RequestAccess.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request access" } } } }, - "Space.Invite.ViewerAccess.Subtitle": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "People with link can view and read chat" + "Space.Invite.ViewerAccess.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "People with link can view and read chat" } } } }, - "Space.Invite.ViewerAccess.Title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Viewer access" + "Space.Invite.ViewerAccess.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer access" } } } }, - "Space.MembersCount": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d members" + "Space.MembersCount" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d members" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "%d member" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d member" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d members" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } }, - "two": { - "stringUnit": { - "state": "new", - "value": "%d members" + "two" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } }, - "zero": { - "stringUnit": { - "state": "new", - "value": "%d members" + "zero" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } } } } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d удзельнікі" + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "%d удзельнікі" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d удзельнікаў" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "%d удзельнікаў" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "%d удзельнік" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d удзельнік" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d удзельнікаў" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d удзельнікаў" } } } } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d Mitglied" + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d Mitglied" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Mitglieder" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d Mitglieder" } } } } }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "%d member" + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d member" } }, - "other": { - "stringUnit": { - "state": "translated", - "value": "%d members" + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d members" } } } } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d miembro" + "es" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d miembro" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d miembros" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d miembros" } } } } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d member" + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d member" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d members" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } } } } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d member" + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d member" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d members" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } } } } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d membre" + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d membre" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d membres" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d membres" } } } } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d anggota" + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d anggota" } } } } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d membro" + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d membro" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d membri" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d membri" } } } } }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d名のメンバー" + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d名のメンバー" } } } } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d members" + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } } } } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d medlem" + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d medlem" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d medlemmer" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d medlemmer" } } } } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d lid" + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d lid" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d leden" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d leden" } } } } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d member" + "or" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d member" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d members" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } } } } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d członków" + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "%d członków" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d członków" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "%d członków" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "%d użytkownik" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d użytkownik" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d członków" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d członków" } } } } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d membro" + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d membro" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d membros" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d membros" } } } } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d member" + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d member" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d members" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } } } } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d участника" + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "%d участника" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d участников" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "%d участников" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "%d участник" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d участник" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d участников" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d участников" } } } } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d üye" + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d üye" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d üye" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d üye" } } } } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d members" + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d members" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "%d member" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d member" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d members" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } } } } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d members" + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d members" } } } } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d 个成员" + "zh-Hans" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d 个成员" } } } } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d 位成員" + "zh-Hant" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d 位成員" } } } @@ -51922,9753 +48689,9604 @@ } } }, - "Space.Notifications.Settings.State.All": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "All activity" + "Space.Notifications.Settings.State.All" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "All activity" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Alle Aktivitäten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Alle Aktivitäten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "All activity" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "All activity" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Toda la actividad" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Toda la actividad" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "All activity" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "All activity" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "All activity" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Semua aktivitas" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Semua aktivitas" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Tutte le attività" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Tutte le attività" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "すべての通知" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "すべての通知" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "All activity" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "All activity" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "All activity" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "All activity" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "All activity" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "All activity" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "All activity" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "All activity" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Tüm etkinlikler" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tüm etkinlikler" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "All activity" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "All activity" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "All activity" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "All activity" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "All activity" } } } }, - "Space.Notifications.Settings.State.Disabled": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "Space.Notifications.Settings.State.Disabled" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Benachrichtigungen deaktivieren" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Benachrichtigungen deaktivieren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Disable notifications" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Disable notifications" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Desactivar las notificaciones" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Desactivar las notificaciones" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Nonaktifkan notifikasi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Nonaktifkan notifikasi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Disattiva le notifiche" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Disattiva le notifiche" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "通知が無効" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "通知が無効" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bildirimleri devre dışı bırak" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bildirimleri devre dışı bırak" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Disable notifications" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Disable notifications" } } } }, - "Space.Notifications.Settings.State.Mentions": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "Space.Notifications.Settings.State.Mentions" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nur Erwähnungen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nur Erwähnungen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Mentions only" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Mentions only" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Solo menciones" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Solo menciones" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hanya sebutan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hanya sebutan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Solo menzioni" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Solo menzioni" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メンションのみ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メンションのみ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sadece bahsetmeler" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sadece bahsetmeler" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Mentions only" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Mentions only" } } } }, - "Space.Status.Error": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "خطأ" + "Space.Status.Error" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "خطأ" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Памылка" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Памылка" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Fehler" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Fehler" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Error" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Error" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Error" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Error" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Error" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Error" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Virhe" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Virhe" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Erreur" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Erreur" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Galat" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Galat" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Errore" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Errore" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "エラー" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "エラー" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "오류" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "오류" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Feil" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Feil" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Foutmelding" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Foutmelding" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Error" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Error" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Błąd" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Błąd" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Erro" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Erro" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Error" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Error" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ошибка" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ошибка" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Hata" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Hata" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Error" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Error" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Error" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Error" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "错误" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "错误" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "錯誤" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "錯誤" } } } }, - "Space.Status.Loading": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Loading" + "Space.Status.Loading" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Loading" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Загрузка" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Загрузка" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Wird geladen " + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Wird geladen " } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Loading" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Loading" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cargando" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cargando" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Loading" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Loading" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Loading" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Loading" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Chargement" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Chargement" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Memuat" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Memuat" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Caricamento" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Caricamento" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "同期中" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "同期中" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Loading" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Loading" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Laster" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Laster" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Aan het laden" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Aan het laden" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Loading" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Loading" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ładowanie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ładowanie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Carregando" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Carregando" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Loading" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Loading" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Загрузка" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Загрузка" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yükleniyor" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yükleniyor" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Loading" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Loading" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Loading" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Loading" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "加载" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "加载" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "載入中" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "載入中" } } } }, - "Space.Status.Missing": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Missing" + "Space.Status.Missing" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Missing" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Адсутнічае" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Адсутнічае" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Fehlend" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Fehlend" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Missing" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Missing" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ausente" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ausente" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Missing" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Missing" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Missing" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Missing" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Manquant" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Manquant" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hilang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hilang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Mancante" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Mancante" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "不明" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "不明" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Missing" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Missing" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Mangler" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Mangler" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ontbrekend" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ontbrekend" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Missing" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Missing" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Brakujący" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Brakujący" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Faltando" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Faltando" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Missing" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Missing" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Отсутствует " + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Отсутствует " } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Eksik" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Eksik" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Missing" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Missing" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Missing" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Missing" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "缺失" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "缺失" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "遺失" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "遺失" } } } }, - "Space.Status.Ok": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "موافق" + "Space.Status.Ok" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "موافق" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ok" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ok" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "OK" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "OK" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Ok" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ok" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ok" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ok" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Ok" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Ok" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Ok" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ok" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ok" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ok" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Oke" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Oke" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Ok" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Ok" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "はい" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "はい" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Ok" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Ok" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ok" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ok" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ok" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ok" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଠିକ୍‌ ଅଛି" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଠିକ୍‌ ଅଛି" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ok" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ok" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Ok" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Ok" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Ok" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Ok" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ок" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ок" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Tamam" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tamam" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Гаразд" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Гаразд" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "OK" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "OK" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "好的" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "好的" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "好的" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "好的" } } } }, - "Space.Status.RemoteDeleted": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Remote Deleted" + "Space.Status.RemoteDeleted" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote Deleted" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Дыстанцыйнае выдаленне" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Дыстанцыйнае выдаленне" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Aus der Ferne gelöscht" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Aus der Ferne gelöscht" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Remote Deleted" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remote Deleted" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Remoto eliminado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Remoto eliminado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Remote Deleted" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote Deleted" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Remote Deleted" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote Deleted" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Supprimé à distance " + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Supprimé à distance " } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Remot Dihapus" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Remot Dihapus" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Eliminato da remoto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Eliminato da remoto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "削除済み" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "削除済み" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Remote Deleted" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote Deleted" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Fjernslettet" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Fjernslettet" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Op afstand verwijderd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Op afstand verwijderd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Remote Deleted" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote Deleted" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zdalne usunięte" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zdalne usunięte" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Controle Deletado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Controle Deletado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Remote Deleted" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote Deleted" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удаленно удалено" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удаленно удалено" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Uzaktan Silindi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Uzaktan Silindi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Remote Deleted" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote Deleted" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Remote Deleted" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote Deleted" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "远程已删除" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "远程已删除" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "遠端已刪除" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "遠端已刪除" } } } }, - "Space.Status.RemoteWaitingDeletion": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Waiting Deletion" + "Space.Status.RemoteWaitingDeletion" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Waiting Deletion" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Чаканне выдалення" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Чаканне выдалення" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Warte auf Löschen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Warte auf Löschen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Waiting Deletion" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Waiting Deletion" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Esperando eliminación" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Esperando eliminación" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Waiting Deletion" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Waiting Deletion" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Waiting Deletion" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Waiting Deletion" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "En attente de suppression" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "En attente de suppression" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Menunggu Penghapusan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Menunggu Penghapusan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "In attesa di eliminazione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "In attesa di eliminazione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "削除待ち" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "削除待ち" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Waiting Deletion" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Waiting Deletion" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Venter sletting" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Venter sletting" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Aan het wachten op verwijdering" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Aan het wachten op verwijdering" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Waiting Deletion" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Waiting Deletion" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Oczekiwanie na usunięcie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Oczekiwanie na usunięcie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Aguardando Exclusão" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Aguardando Exclusão" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Waiting Deletion" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Waiting Deletion" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ожидание удаления" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ожидание удаления" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bekleyen Silme" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bekleyen Silme" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Waiting Deletion" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Waiting Deletion" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Waiting Deletion" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Waiting Deletion" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "正等待删除" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "正等待删除" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "等待刪除" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "等待刪除" } } } }, - "Space.Status.SpaceActive": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "نشط" + "Space.Status.SpaceActive" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "نشط" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Актыўны" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Актыўны" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Aktiv" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Aktiv" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Active" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Active" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Activo" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Activo" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Active" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Active" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Active" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Active" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Actif" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Actif" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Aktif" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Aktif" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Attivo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Attivo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "有効" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "有効" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Active" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Active" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Aktiv" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Aktiv" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Actief" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Actief" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Active" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Active" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Aktywny" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Aktywny" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Ativo\n" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Ativo\n" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Active" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Active" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Активно" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Активно" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Etkin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Etkin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Active" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Active" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Active" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Active" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "生效" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "生效" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "使用中" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "使用中" } } } }, - "Space.Status.SpaceDeleted": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "محذوف" + "Space.Status.SpaceDeleted" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "محذوف" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выдалена" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выдалена" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Gelöscht" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Gelöscht" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Deleted" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Deleted" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Eliminado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Eliminado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Deleted" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Poistettu" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Poistettu" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Supprimé" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Supprimé" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Terhapus" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Terhapus" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Eliminato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Eliminato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "削除済み" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "削除済み" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Deleted" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Slettet" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Slettet" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verwijderd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwijderd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Deleted" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Usunięto" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Usunięto" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Apagado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Apagado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Deleted" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Deleted" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удалено" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удалено" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Silindi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Silindi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Видалено" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Видалено" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đã xoá" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đã xoá" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "已删除" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "已删除" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "已刪除" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "已刪除" } } } }, - "Space.Status.SpaceJoining": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "جارٍ الانضمام" + "Space.Status.SpaceJoining" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "جارٍ الانضمام" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Далучаецца" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Далучаецца" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Beitreten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Beitreten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Joining" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Joining" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Accediendo" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Accediendo" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Joining" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Joining" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Connexion" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Connexion" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bergabung" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bergabung" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Accesso in corso" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Accesso in corso" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "参加中" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "参加中" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Joining" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Kobler til" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Kobler til" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deelnemen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deelnemen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Joining" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przyłączenie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Przyłączenie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Entrando" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Entrando" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Joining" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Присоединяется" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Присоединяется" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Katılınıyor" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Katılınıyor" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Joining" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Joining" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Joining" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "正在加入" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "正在加入" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "正在加入" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "正在加入" } } } }, - "Space.Status.SpaceRemoving": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Removing" + "Space.Status.SpaceRemoving" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Removing" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ідзе выдаленне" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ідзе выдаленне" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Entfernen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Entfernen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Removing" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Removing" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Eliminando" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Eliminando" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Removing" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Removing" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Removing" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Removing" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Suppression" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Suppression" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Menghapus" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Menghapus" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Rimozione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Rimozione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "削除中" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "削除中" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Removing" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Removing" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Fjerner" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Fjerner" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Aan het verwijderen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Aan het verwijderen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Removing" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Removing" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Usuwanie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Usuwanie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Removendo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Removendo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Removing" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Removing" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удаление" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удаление" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Kaldırılıyor" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Kaldırılıyor" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Removing" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Removing" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Removing" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Removing" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "删除中" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "删除中" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "移除中" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "移除中" } } } }, - "Space.Status.Unknown": { - "comment": "MARK: - Space", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "غير معروف" + "Space.Status.Unknown" : { + "comment" : "MARK: - Space", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "غير معروف" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Невядомы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Невядомы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Unbekannt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Unbekannt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Unknown" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Unknown" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Desconocido" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Desconocido" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Unknown" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Unknown" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Tuntematon" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tuntematon" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Inconnu" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Inconnu" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak diketahui" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak diketahui" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sconosciuto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sconosciuto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "不明" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "不明" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Unknown" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Unknown" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ukjent" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ukjent" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Onbekend" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Onbekend" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Unknown" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Unknown" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nieznany" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nieznany" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Desconhecido" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Desconhecido" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Unknown" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Unknown" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Неизвестно" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Неизвестно" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bilinmeyen" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bilinmeyen" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Невідомо" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Невідомо" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không rõ" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không rõ" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "未知" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "未知" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "未知" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "未知" } } } }, - "SpaceCreate.Chat.Title": { - "comment": "MARK: - Space Create", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "SpaceCreate.Chat.Title" : { + "comment" : "MARK: - Space Create", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Chat erstellen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat erstellen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Create a chat" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create a chat" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Crear un chat" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Crear un chat" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buat obrolan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buat obrolan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Crea una chat" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Crea una chat" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "チャットを作成" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "チャットを作成" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Maak een chat" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Maak een chat" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sohbet oluştur" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sohbet oluştur" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "创建聊天" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "创建聊天" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Create a chat" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a chat" } } } }, - "SpaceCreate.Space.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إنشاء مساحة" + "SpaceCreate.Space.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إنشاء مساحة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Create a space" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a space" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Erstelle einen Bereich" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Erstelle einen Bereich" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Create a space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create a space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Crear un espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Crear un espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Create a space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Create a space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Créer un espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Créer un espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buat ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buat ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Crea uno spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Crea uno spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースを作成" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペースを作成" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Create a space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Create a space" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a space" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Maak een ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Maak een ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Create a space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Create a space" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a space" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Criar espaço" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Criar espaço" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Create a space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Создать пространство" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Создать пространство" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bir alan oluştur" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bir alan oluştur" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Create a space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Create a space" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a space" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "创建空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "创建空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Create a space" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a space" } } } }, - "SpaceCreate.Stream.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "SpaceCreate.Stream.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Stream erstellen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream erstellen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Create a stream" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create a stream" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Crear una transmisión" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Crear una transmisión" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Créer un stream" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Créer un stream" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buat siaran" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buat siaran" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Crea una stream" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Crea una stream" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ストリームを作成" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ストリームを作成" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Maak een stream" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Maak een stream" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yayın oluştur" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yayın oluştur" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Create a stream" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "创建直播流" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "创建直播流" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Create a stream" - } - } - } - }, - "SpaceInvite.Alert.subtitle": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "If you switch link type, your existing link will be deactivated." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Create a stream" } } } }, - "SpaceInvite.Alert.title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "The current link will stop working" + "SpaceInvite.Alert.subtitle" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "If you switch link type, your existing link will be deactivated." } } } }, - "SpaceManager.CancelRequest": { - "comment": "MARK: - Space manager", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Cancel Join Request" - } - }, - "be": { - "stringUnit": { - "state": "new", - "value": "Адмяніць запыт на далучэнне" - } - }, - "de": { - "stringUnit": { - "state": "new", - "value": "Beitrittsanfrage zurückziehen" - } - }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Cancel Join Request" - } - }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cancelar solicitud de acceso" - } - }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Cancel Join Request" - } - }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Cancel Join Request" - } - }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Annuler la demande d'adhésion" - } - }, - "id": { - "stringUnit": { - "state": "new", - "value": "Batalkan Permintaan Bergabung" - } - }, - "it": { - "stringUnit": { - "state": "new", - "value": "Annulla Richiesta Di Partecipazione" - } - }, - "ja": { - "stringUnit": { - "state": "new", - "value": "参加リクエストをキャンセル" - } - }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Cancel Join Request" - } - }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Avbryt forespørsel" - } - }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Annuleer deelnameverzoek" - } - }, - "or": { - "stringUnit": { - "state": "new", - "value": "Cancel Join Request" - } - }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Anuluj prośbę o dołączenie" - } - }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Cancelar solicitação de adesão" - } - }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Cancel Join Request" - } - }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Отклонить запрос о присоединении" - } - }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Katılma Talebini İptal Et" - } - }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Cancel Join Request" - } - }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Cancel Join Request" - } - }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "取消加入请求" - } - }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "取消加入請求" + "SpaceInvite.Alert.title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The current link will stop working" } } } }, - "SpaceManager.CancelRequestAlert.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "You will have to send request access again" + "SpaceManager.CancelRequest" : { + "comment" : "MARK: - Space manager", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Cancel Join Request" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вам трэба будзе паўторна адправіць запыт на доступ" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Адмяніць запыт на далучэнне" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Du musst die Zugangsanfrage erneut senden" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Beitrittsanfrage zurückziehen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You will have to send request access again" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel Join Request" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tienes que volver a solicitar acceso." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cancelar solicitud de acceso" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You will have to send request access again" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Cancel Join Request" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You will have to send request access again" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Cancel Join Request" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous devrez envoyer à nouveau la demande d'accès" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Annuler la demande d'adhésion" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kamu akan perlu mengirimkan permintaan bergabung lagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Batalkan Permintaan Bergabung" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Dovrai inviare nuovamente la richiesta di accesso" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Annulla Richiesta Di Partecipazione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "もう一度参加リクエストを送信してください" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "参加リクエストをキャンセル" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You will have to send request access again" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Cancel Join Request" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You will have to send request access again" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Avbryt forespørsel" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je zult het toegangsverzoek opnieuw moeten sturen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Annuleer deelnameverzoek" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You will have to send request access again" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Cancel Join Request" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Konieczne będzie ponowne wysłanie prośby o dostęp" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Anuluj prośbę o dołączenie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você terá que enviar o acesso da solicitação novamente" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Cancelar solicitação de adesão" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You will have to send request access again" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Cancel Join Request" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вам нужно будет снова отправить запрос доступа" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Отклонить запрос о присоединении" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Erişim talebini tekrar göndermeniz gerekecek" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Katılma Talebini İptal Et" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You will have to send request access again" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Cancel Join Request" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "You will have to send request access again" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Cancel Join Request" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您将需要再次发送访问请求" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "取消加入请求" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您將需要再次發送存取請求" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "取消加入請求" } } } }, - "SpaceManager.CancelRequestAlert.Toast": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "The request was canceled." + "SpaceManager.CancelRequestAlert.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "You will have to send request access again" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Запыт быў адменены." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вам трэба будзе паўторна адправіць запыт на доступ" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Die Anfrage wurde storniert." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Du musst die Zugangsanfrage erneut senden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The request was canceled." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You will have to send request access again" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "La solicitud se ha cancelado." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tienes que volver a solicitar acceso." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "The request was canceled." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You will have to send request access again" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "The request was canceled." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You will have to send request access again" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "La demande a été annulée." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous devrez envoyer à nouveau la demande d'accès" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Permintaanmu telah dibatalkan." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kamu akan perlu mengirimkan permintaan bergabung lagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "La richiesta è stata annullata." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Dovrai inviare nuovamente la richiesta di accesso" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リクエストがキャンセルされました。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "もう一度参加リクエストを送信してください" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "The request was canceled." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You will have to send request access again" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Forespørselen ble avbrutt." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You will have to send request access again" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Het verzoek werd geannuleerd." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je zult het toegangsverzoek opnieuw moeten sturen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "The request was canceled." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You will have to send request access again" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Prośba została anulowana." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Konieczne będzie ponowne wysłanie prośby o dostęp" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "A solicitação foi cancelada." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você terá que enviar o acesso da solicitação novamente" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "The request was canceled." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You will have to send request access again" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Запрос был отменен." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вам нужно будет снова отправить запрос доступа" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Talep iptal edildi." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Erişim talebini tekrar göndermeniz gerekecek" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "The request was canceled." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You will have to send request access again" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "The request was canceled." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "You will have to send request access again" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "请求已取消。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您将需要再次发送访问请求" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "請求已取消。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您將需要再次發送存取請求" } } } }, - "SpaceManager.DoNotCancel": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Do Not Cancel" + "SpaceManager.CancelRequestAlert.Toast" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "The request was canceled." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Не адмяняць" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Запыт быў адменены." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nicht abbrechen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Die Anfrage wurde storniert." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Do Not Cancel" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The request was canceled." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No cancelar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "La solicitud se ha cancelado." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Do Not Cancel" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "The request was canceled." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Do Not Cancel" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "The request was canceled." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ne pas annuler" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "La demande a été annulée." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Jangan Batalkan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Permintaanmu telah dibatalkan." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Non annullare" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "La richiesta è stata annullata." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "キャンセルしない" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リクエストがキャンセルされました。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Do Not Cancel" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "The request was canceled." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ikke avbryt" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Forespørselen ble avbrutt." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Annuleer niet" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Het verzoek werd geannuleerd." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Do Not Cancel" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "The request was canceled." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Nie anuluj" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Prośba została anulowana." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Não cancelar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "A solicitação foi cancelada." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Do Not Cancel" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "The request was canceled." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Не отменять" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Запрос был отменен." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İptal Etmekten Vazgeç" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Talep iptal edildi." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Do Not Cancel" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "The request was canceled." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Do Not Cancel" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "The request was canceled." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "不要取消" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "请求已取消。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "不要取消" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "請求已取消。" } } } }, - "Spaces.Accessibility.Personal": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Entry Space" + "SpaceManager.DoNotCancel" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Do Not Cancel" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ваша Прастора" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Не адмяняць" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Eingangsspace" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nicht abbrechen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Entry Space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Do Not Cancel" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Espacio inicial" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No cancelar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Entry Space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Do Not Cancel" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Default Space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Do Not Cancel" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Espace par défaut" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ne pas annuler" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ruang Bawaan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Jangan Batalkan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Spazio Predefinito" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Non annullare" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "マイスペース" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "キャンセルしない" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Default Space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Do Not Cancel" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Standard rom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ikke avbryt" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Standaard ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Annuleer niet" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Default Space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Do Not Cancel" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przestrzeń domyślna" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nie anuluj" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Default Space" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Não cancelar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Default Space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Do Not Cancel" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Пространство по умолчанию" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Не отменять" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Giriş Alanı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İptal Etmekten Vazgeç" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Default Space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Do Not Cancel" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Default Space" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Do Not Cancel" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "默认空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "不要取消" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "初始空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "不要取消" } } } }, - "Spaces.Accessibility.Private": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Private Space" + "Spaces.Accessibility.Personal" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Entry Space" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Прыватная Прастора" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ваша Прастора" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Privater Space" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Eingangsspace" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Private Space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Entry Space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Espacio privado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Espacio inicial" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Private Space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Entry Space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Private Space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Default Space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Espace Privé" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Espace par défaut" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ruang Pribadi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruang Bawaan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Spazio privato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Spazio Predefinito" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "非公開スペース" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "マイスペース" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Private Space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Default Space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Privat rom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Standard rom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Persoonlijke ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Standaard ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Private Space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Default Space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przestrzeń prywatna" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Przestrzeń domyślna" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Espaço Privado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Default Space" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Espaço privado" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Default Space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Личное Пространство" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Пространство по умолчанию" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Özel Alan" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Giriş Alanı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Private Space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Default Space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Private Space" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Default Space" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "私人空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "默认空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "私人空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "初始空間" } } } }, - "Spaces.Accessibility.Shared": { - "comment": "MARK: - Spaces", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Shared Space" + "Spaces.Accessibility.Private" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Private Space" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Агульная Прастора" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Прыватная Прастора" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Geteilter Space" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Privater Space" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Shared Space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Private Space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Espacio compartido" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Espacio privado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Shared Space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Private Space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Shared Space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Private Space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Espace partagé" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Espace Privé" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ruang Terbagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruang Pribadi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Spazio condiviso" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Spazio privato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "共有スペース" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "非公開スペース" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Shared Space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Private Space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Delt rom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Privat rom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Gedeelde ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Persoonlijke ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Shared Space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Private Space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wspólna przestrzeń" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Przestrzeń prywatna" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Espaço Compartilhado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Espaço Privado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Espaço partilhado" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Espaço privado" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Общее пространство" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Личное Пространство" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Ortak Alan" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Özel Alan" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Shared Space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Private Space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Shared Space" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Private Space" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "共享空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "私人空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "共享空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "私人空間" } } } }, - "Spaces.Info.Network": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الشبكة:" + "Spaces.Accessibility.Shared" : { + "comment" : "MARK: - Spaces", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Shared Space" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Сетка:" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Агульная Прастора" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Netzwerk:" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Geteilter Space" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Network:" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Shared Space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Red:" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Espacio compartido" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Network:" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Shared Space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Network:" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Shared Space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Réseau :" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Espace partagé" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Jaringan:" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruang Terbagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Rete:" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Spazio condiviso" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ネットワーク:" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "共有スペース" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Network:" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Shared Space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Nettverk:" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Delt rom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Netwerk:" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Gedeelde ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Network:" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Shared Space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Sieć:" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wspólna przestrzeń" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Rede:" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Espaço Compartilhado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Network:" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Espaço partilhado" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Сеть:" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Общее пространство" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Ağ:" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ortak Alan" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Network:" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Shared Space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Network:" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Shared Space" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "网络:" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "共享空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "網路:" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "共享空間" } } } }, - "Spaces.Search.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Search spaces" + "Spaces.Info.Network" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الشبكة:" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пошук прастор" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Сетка:" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Spaces suchen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Netzwerk:" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Search spaces" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network:" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Buscar espacios" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Red:" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Search spaces" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Network:" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Search spaces" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Network:" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Rechercher des espaces" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Réseau :" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Cari ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Jaringan:" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Cerca spazi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Rete:" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースを検索" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ネットワーク:" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Search spaces" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Network:" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Søk etter rom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Nettverk:" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Zoek ruimten" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Netwerk:" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Search spaces" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Network:" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Szukaj spacji" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Sieć:" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Pesquisar Espaços" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Rede:" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Search spaces" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Network:" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Поиск пространств" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Сеть:" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alanlarda Ara" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ağ:" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Пошук просторів" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Network:" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Search spaces" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Network:" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "搜索空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "网络:" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "搜尋空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "網路:" } } } }, - "Spaces.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "المساحات" + "Spaces.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "المساحات" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Прасторы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Прасторы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Spaces" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Spaces" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Spaces" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Spaces" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Espacios" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Espacios" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Spaces" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Spaces" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Spaces" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Spaces" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Espaces" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Espaces" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Spazi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Spazi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Spaces" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Spaces" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Rom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Rom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ruimtes" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruimtes" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Spaces" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Spaces" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Spacje" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Spacje" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Espaços" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Espaços" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Spaces" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Spaces" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Пространства" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Пространства" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alanlar" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alanlar" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Spaces" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Spaces" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Spaces" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Spaces" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "空間" } } } }, - "Spaces.UxType.Chat.ChangeDescription": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Group chat with shared data. Best for small groups or a single ongoing conversation." + "Spaces.UxType.Chat.ChangeDescription" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Group chat with shared data. Best for small groups or a single ongoing conversation." } } } }, - "Spaces.UxType.Chat.Description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "Spaces.UxType.Chat.Description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Für Echtzeit-Unterhaltungen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Für Echtzeit-Unterhaltungen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Group chat with content organization" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Group chat with content organization" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Para conversaciones en tiempo real" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Para conversaciones en tiempo real" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Pour les conversations en temps réel" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Pour les conversations en temps réel" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Untuk percakapan langsung" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Untuk percakapan langsung" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Per conversazioni in tempo reale" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Per conversazioni in tempo reale" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "チームでの会話や共同作業に" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "チームでの会話や共同作業に" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voor real-time gesprekken" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voor real-time gesprekken" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Gerçek zamanlı görüşmeler için" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Gerçek zamanlı görüşmeler için" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "实时对话" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "实时对话" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "For real-time conversations" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "For real-time conversations" } } } }, - "Spaces.UxType.Chat.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الدردشة" + "Spaces.UxType.Chat.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الدردشة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Чат" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Чат" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Chat" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Chat" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Chat" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Chat" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Chat" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Chat" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Messagerie" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Messagerie" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Obrolan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Obrolan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Chat" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "チャット" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "チャット" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "채팅" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "채팅" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Chat" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Chat" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Chat" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Chat" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Chat" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Chat" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Чат" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Чат" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sohbet" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sohbet" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Chat" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chat" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "聊天" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "聊天" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Chat" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Chat" } } } }, - "Spaces.UxType.Space.ChangeDescription": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "Hub for advanced data management. Multi-chats by topic coming soon. Ideal for larger teams." + "Spaces.UxType.Space.ChangeDescription" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hub for advanced data management. Multi-chats by topic coming soon. Ideal for larger teams." } } } }, - "Spaces.UxType.Space.Description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "Spaces.UxType.Space.Description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Für organisierte Inhalte und Daten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Für organisierte Inhalte und Daten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Hub for advanced data management" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Hub for advanced data management" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Para contenido y datos organizados" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Para contenido y datos organizados" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Pour un contenu et des données organisés" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Pour un contenu et des données organisés" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Untuk konten dan data yang tertata" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Untuk konten dan data yang tertata" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Per contenuti e dati organizzati" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Per contenuti e dati organizzati" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "プロジェクトや知識の管理に" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "プロジェクトや知識の管理に" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voor georganiseerde inhoud en gegevens" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voor georganiseerde inhoud en gegevens" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Düzenli içerik ve veriler için" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Düzenli içerik ve veriler için" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "用于有组织的内容与数据" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "用于有组织的内容与数据" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "For organized content and data" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "For organized content and data" } } } }, - "Spaces.UxType.Space.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "المساحة" + "Spaces.UxType.Space.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "المساحة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Прастора" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Прастора" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Space" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Space" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Rom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Rom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przestrzeń" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Przestrzeń" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Espaço" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Espaço" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Пространство" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Пространство" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alan" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alan" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Простір" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Простір" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Space" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Space" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "空間" } } } }, - "Spaces.UxType.Stream.Description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "Spaces.UxType.Stream.Description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "For broadcasting your vibe" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "For broadcasting your vibe" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Para difundir tus novedades" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Para difundir tus novedades" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Pour diffuser votre vibe" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Pour diffuser votre vibe" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Untuk menyiarkan semangat Anda" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Untuk menyiarkan semangat Anda" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Per trasmettere il tuo vibe" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Per trasmettere il tuo vibe" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "雰囲気を共有しましょう" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "雰囲気を共有しましょう" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voor het uitzenden van jouw vibe" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voor het uitzenden van jouw vibe" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Hislerinizi yayınlamak için" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Hislerinizi yayınlamak için" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "用于直播您的内容" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "用于直播您的内容" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "For broadcasting your vibe" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "For broadcasting your vibe" } } } }, - "Spaces.UxType.Stream.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Stream" + "Spaces.UxType.Stream.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Stream" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Stream" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Stream" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stream" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Transmisión" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Transmisión" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Stream" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Stream" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Stream" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Siaran" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Siaran" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Stream" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ストリーム" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ストリーム" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Stream" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Stream" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Stream" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Stream" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Stream" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Stream" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Stream" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Stream" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yayın" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yayın" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Stream" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Stream" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "流媒体" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "流媒体" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Stream" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Stream" } } } }, - "SpaceSettings.DeleteAlert.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "This space will be deleted irrevocably. You can’t undo this action." + "SpaceSettings.DeleteAlert.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "This space will be deleted irrevocably. You can’t undo this action." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Гэтыя прасторы будуць выдалены беззваротна. Вы не зможаце адмяніць гэта дзеянне." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Гэтыя прасторы будуць выдалены беззваротна. Вы не зможаце адмяніць гэта дзеянне." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Dieser Space wird unwiderruflich gelöscht. Diese Aktion kann nicht rückgängig gemacht werden." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Dieser Space wird unwiderruflich gelöscht. Diese Aktion kann nicht rückgängig gemacht werden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This space will be deleted irrevocably. You can’t undo this action." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This space will be deleted irrevocably. You can’t undo this action." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Este espacio se eliminará de forma definitiva. No se puede deshacer esta acción." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Este espacio se eliminará de forma definitiva. No se puede deshacer esta acción." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "This space will be deleted irrevocably. You can’t undo this action." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "This space will be deleted irrevocably. You can’t undo this action." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "This space will be deleted irrevocably. You can’t undo this action." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "This space will be deleted irrevocably. You can’t undo this action." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Cet espace sera supprimé définitivement. Vous ne pouvez pas annuler cette action." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Cet espace sera supprimé définitivement. Vous ne pouvez pas annuler cette action." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ruang ini akan dihapus secara permanen. Kamu tidak bisa membatalkan tindakan ini." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruang ini akan dihapus secara permanen. Kamu tidak bisa membatalkan tindakan ini." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Questo spazio verrà eliminato irrevocabilmente. Non è possibile annullare questa azione." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Questo spazio verrà eliminato irrevocabilmente. Non è possibile annullare questa azione." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "このスペースは完全に削除されます。この操作は取り消せません。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "このスペースは完全に削除されます。この操作は取り消せません。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "This space will be deleted irrevocably. You can’t undo this action." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "This space will be deleted irrevocably. You can’t undo this action." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Dette rommet vil bli slettet ugjenkallelig. Du kan ikke angre denne handlingen." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Dette rommet vil bli slettet ugjenkallelig. Du kan ikke angre denne handlingen." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deze ruimte zal onherroepelijk worden verwijderd. Je kunt deze actie niet ongedaan maken." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deze ruimte zal onherroepelijk worden verwijderd. Je kunt deze actie niet ongedaan maken." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "This space will be deleted irrevocably. You can’t undo this action." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "This space will be deleted irrevocably. You can’t undo this action." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "To miejsce zostanie usunięte nieodwołalnie. Tej czynności nie można cofnąć." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "To miejsce zostanie usunięte nieodwołalnie. Tej czynności nie można cofnąć." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Este espaço será excluído irrevogavelmente. Você não pode desfazer esta ação." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Este espaço será excluído irrevogavelmente. Você não pode desfazer esta ação." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Estes objetos serão excluídos irrevogavelmente. Você não pode desfazer esta ação." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Estes objetos serão excluídos irrevogavelmente. Você não pode desfazer esta ação." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Это пространство будет удалено безвозвратно. Вы не сможете отменить это действие." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Это пространство будет удалено безвозвратно. Вы не сможете отменить это действие." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu alan geri alınamaz şekilde silinecektir. Bu işlemi geri alamazsınız." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu alan geri alınamaz şekilde silinecektir. Bu işlemi geri alamazsınız." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Цей простір буде видалено безповоротно. Ви не можете скасувати цю дію." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Цей простір буде видалено безповоротно. Ви не можете скасувати цю дію." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không gian này sẽ bị xoá mà không hoàn lại được. Bạn không thể hoàn tác thao tác này." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không gian này sẽ bị xoá mà không hoàn lại được. Bạn không thể hoàn tác thao tác này." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "此空间将被不可撤销地删除。您无法撤消此操作。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "此空间将被不可撤销地删除。您无法撤消此操作。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "此空間將被永久刪除,您無法撤銷此操作!" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "此空間將被永久刪除,您無法撤銷此操作!" } } } }, - "SpaceSettings.DeleteAlert.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Delete ‘%@’ space" + "SpaceSettings.DeleteAlert.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete ‘%@’ space" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выдаліць прастору ‘%@’" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выдаліць прастору ‘%@’" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Space '%@' löschen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Space '%@' löschen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Delete ‘%@’ space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete ‘%@’ space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Eliminar el espacio «%@»" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Eliminar el espacio «%@»" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Delete ‘%@’ space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete ‘%@’ space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Delete ‘%@’ space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete ‘%@’ space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Supprimer l'espace '%@'" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Supprimer l'espace '%@'" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hapus '%@' ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hapus '%@' ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Elimina spazio ‘%@’ " + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Elimina spazio ‘%@’ " } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース「%@」を削除" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース「%@」を削除" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Delete ‘%@’ space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete ‘%@’ space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Delete ‘%@’ space" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete ‘%@’ space" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verwijder '%@' ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwijder '%@' ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Delete ‘%@’ space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete ‘%@’ space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Usuń spację '%@'" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Usuń spację '%@'" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Excluir o espaço ‘%@’" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Excluir o espaço ‘%@’" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Delete ‘%@’ space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete ‘%@’ space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удалить пространство \"%@\"" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удалить пространство \"%@\"" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@ alanını sil" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ alanını sil" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Видалити ‘%@’ простір" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Видалити ‘%@’ простір" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Delete ‘%@’ space" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete ‘%@’ space" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "删除 “%@” 空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "删除 “%@” 空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "刪除 \"%@\" 空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "刪除 \"%@\" 空間" } } } }, - "SpaceSettings.DeleteButton": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "حذف المساحة" + "SpaceSettings.DeleteButton" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "حذف المساحة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выдаліць прастору" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выдаліць прастору" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Space löschen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Space löschen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Delete space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Eliminar espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Eliminar espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Delete space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Delete space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Supprimer l'espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Supprimer l'espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hapus ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hapus ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Elimina spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Elimina spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースを削除" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペースを削除" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Delete space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Slett rom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Slett rom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verwijder ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwijder ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Delete space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Usuwanie spacji" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Usuwanie spacji" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Excluir Espaço" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Excluir Espaço" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Delete space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удалить пространство" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удалить пространство" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alanı sil" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alanı sil" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Видалити простір " + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Видалити простір " } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Xoá không gian" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Xoá không gian" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "删除空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "删除空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "刪除空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "刪除空間" } } } }, - "SpaceSettings.Info": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Space information" + "SpaceSettings.Info" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Space information" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Space information" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Space information" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Space information" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Información del espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Información del espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Space information" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Space information" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Informations sur l'espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Informations sur l'espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Informasi ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Informasi ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Informazioni sullo spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Informazioni sullo spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース情報" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース情報" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Space information" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Space information" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ruimte-informatie" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruimte-informatie" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Space information" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Space information" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Space information" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Space information" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Информация о пространстве" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Информация о пространстве" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alan bilgisi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alan bilgisi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Space information" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Space information" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "空间信息" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "空间信息" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Space information" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Space information" } } } }, - "SpaceSettings.LeaveAlert.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "%@ space will be removed from your devices and you will no longer have access to it" + "SpaceSettings.LeaveAlert.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ space will be removed from your devices and you will no longer have access to it" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Прастора %@ будзе выдалена з вашых прылад, і ў вас больш не будзе доступу да яго" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Прастора %@ будзе выдалена з вашых прылад, і ў вас больш не будзе доступу да яго" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "%@ Space wird von deinen Geräten entfernt und du hast dann keinen Zugriff mehr darauf" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Space wird von deinen Geräten entfernt und du hast dann keinen Zugriff mehr darauf" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ space will be removed from your devices and you will no longer have access to it" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ space will be removed from your devices and you will no longer have access to it" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "El espacio %@ se eliminará de tus dispositivos y perderás el acceso a él." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "El espacio %@ se eliminará de tus dispositivos y perderás el acceso a él." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "%@ space will be removed from your devices and you will no longer have access to it" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ space will be removed from your devices and you will no longer have access to it" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "%@ space will be removed from your devices and you will no longer have access to it" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ space will be removed from your devices and you will no longer have access to it" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "L'espace %@ sera supprimé de votre appareil et vous ne pourrez plus y avoir accès" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "L'espace %@ sera supprimé de votre appareil et vous ne pourrez plus y avoir accès" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ruang %@ akan dihapus dari perangkat-perangkatmu dan kamu tidak akan bisa mengaksesnya lagi." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruang %@ akan dihapus dari perangkat-perangkatmu dan kamu tidak akan bisa mengaksesnya lagi." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Lo spazio %@ verrà rimosso dai tuoi dispositivi e non avrai più accesso ad esso" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Lo spazio %@ verrà rimosso dai tuoi dispositivi e non avrai più accesso ad esso" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース「%@」はお使いのデバイスから削除され、アクセスできなくなります。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース「%@」はお使いのデバイスから削除され、アクセスできなくなります。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "%@ space will be removed from your devices and you will no longer have access to it" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ space will be removed from your devices and you will no longer have access to it" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "%@ space will be removed from your devices and you will no longer have access to it" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ space will be removed from your devices and you will no longer have access to it" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "%@ ruimte zal worden verwijderd van jouw apparaten en je hebt er dan geen toegang meer toe" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ ruimte zal worden verwijderd van jouw apparaten en je hebt er dan geen toegang meer toe" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "%@ space will be removed from your devices and you will no longer have access to it" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ space will be removed from your devices and you will no longer have access to it" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "%@ miejsce zostanie usunięte z Twoich urządzeń i nie będziesz już mieć do niego dostępu." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ miejsce zostanie usunięte z Twoich urządzeń i nie będziesz już mieć do niego dostępu." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "%@ espaço será removido de seus dispositivos e você não terá mais acesso a ele" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ espaço será removido de seus dispositivos e você não terá mais acesso a ele" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "%@ espaço será removido dos seus dispositivos e você não terá mais acesso a ele" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ espaço será removido dos seus dispositivos e você não terá mais acesso a ele" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "%@ пространство будет удалено с ваших устройств и у вас больше не будет к ним доступа " + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ пространство будет удалено с ваших устройств и у вас больше не будет к ним доступа " } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@ alanı cihazlarınızdan kaldırılacak ve artık buna erişiminiz olmayacak" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ alanı cihazlarınızdan kaldırılacak ve artık buna erişiminiz olmayacak" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "%@ space will be removed from your devices and you will no longer have access to it" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ space will be removed from your devices and you will no longer have access to it" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không gian %@ sẽ bị xoá khỏi các thiết bị của bạn và bạn sẽ không còn truy cập được nó" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không gian %@ sẽ bị xoá khỏi các thiết bị của bạn và bạn sẽ không còn truy cập được nó" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "%@ 空间将被从您的设备中删除,您将无法再访问它" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 空间将被从您的设备中删除,您将无法再访问它" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "%@ 空間將從您的裝置中刪除,您將無法再存取它" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 空間將從您的裝置中刪除,您將無法再存取它" } } } }, - "SpaceSettings.LeaveAlert.Toast": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "You left the %@." + "SpaceSettings.LeaveAlert.Toast" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "You left the %@." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вы пакінулі %@." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы пакінулі %@." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Du hast die %@ verlassen." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Du hast die %@ verlassen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You left the %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You left the %@." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Has abandonado %@." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Has abandonado %@." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You left the %@." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You left the %@." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You left the %@." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You left the %@." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous avez quitté le %@." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous avez quitté le %@." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kamu keluar dari %@." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kamu keluar dari %@." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Hai lasciato %@." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Hai lasciato %@." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "%@を退出しました。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "%@を退出しました。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You left the %@." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You left the %@." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You left the %@." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You left the %@." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je hebt de %@ verlaten." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je hebt de %@ verlaten." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You left the %@." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You left the %@." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Opuściłeś %@." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Opuściłeś %@." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você deixou o %@." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você deixou o %@." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You left the %@." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You left the %@." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы покинули %@." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы покинули %@." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@'den ayrıldınız." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@'den ayrıldınız." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You left the %@." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You left the %@." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "You left the %@." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "You left the %@." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "你离开了 %@。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "你离开了 %@。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您離開了 %@。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您離開了 %@。" } } } }, - "SpaceSettings.LeaveButton": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Leave" + "SpaceSettings.LeaveButton" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пакінуць" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пакінуць" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Verlassen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Verlassen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Leave" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leave" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Abandonar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Abandonar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Leave" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Leave" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Quitter" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Quitter" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Keluar" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Keluar" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Lascia" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Lascia" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "退出" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "退出" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Leave" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Forlat" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Forlat" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verlaat" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verlaat" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Leave" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Pozostaw" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Pozostaw" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Sair" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Sair" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Leave" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Покинуть" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Покинуть" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Ayrıl" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ayrıl" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Leave" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Rời khỏi" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Rời khỏi" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "离开" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "离开" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "離開" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "離開" } } } }, - "SpaceSettings.NetworkId": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "معرف الشبكة" + "SpaceSettings.NetworkId" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "معرف الشبكة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ідэнтыфікатар сеткі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ідэнтыфікатар сеткі" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Netzwerk-ID" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Netzwerk-ID" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Network ID" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Network ID" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "ID de la red" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "ID de la red" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Network ID" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Network ID" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Network ID" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Network ID" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "ID réseau" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "ID réseau" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "ID Jaringan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "ID Jaringan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "ID della rete" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "ID della rete" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ネットワークID" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ネットワークID" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Network ID" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Network ID" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Nettverks-ID" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Nettverks-ID" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Netwerk ID" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Netwerk ID" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Network ID" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Network ID" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Identyfikator sieci" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Identyfikator sieci" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "ID da rede" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "ID da rede" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Network ID" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Network ID" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "ID сети" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "ID сети" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Ağ Kimliği" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ağ Kimliği" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Ідентифікатор мережі" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Ідентифікатор мережі" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "ID Mạng" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "ID Mạng" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "网络 ID" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "网络 ID" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "網路 ID" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "網路 ID" } } } }, - "SpaceSettings.RemoteStorage": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "التخزين عن بعد" + "SpaceSettings.RemoteStorage" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "التخزين عن بعد" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Аддаленае сховішча" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Аддаленае сховішча" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Externer Speicher" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Externer Speicher" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Remote storage" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remote storage" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Almacenamiento remoto" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Almacenamiento remoto" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Remote storage" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote storage" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Remote storage" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote storage" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Stockage à distance" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Stockage à distance" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Penyimpanan jarak jauh" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Penyimpanan jarak jauh" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Archiviazione remota" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Archiviazione remota" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リモートストレージ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リモートストレージ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Remote storage" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote storage" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Fjernlagring" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Fjernlagring" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Externe opslag" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Externe opslag" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Remote storage" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote storage" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Magazyn zdalny" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Magazyn zdalny" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Armazenamento remoto" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Armazenamento remoto" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Remote storage" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Remote storage" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удалённое хранилище" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удалённое хранилище" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Uzak depolama" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Uzak depolama" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Віддалене сховище" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Віддалене сховище" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bộ nhớ ngoài" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bộ nhớ ngoài" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "远程存储" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "远程存储" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "遠端儲存空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "遠端儲存空間" } } } }, - "SpaceSettings.Share": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "مشاركة" + "SpaceSettings.Share" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "مشاركة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Абагуліць" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Абагуліць" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Teilen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Teilen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Share" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Compartir" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartir" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Share" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Share" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Share" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Share" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Partager" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Partager" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bagikan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bagikan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Condividi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Condividi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "共有" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "共有" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Share" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Share" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Del" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Del" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deel" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deel" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Share" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Share" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Udostępnij" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Udostępnij" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Compartilhar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartilhar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Share" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Share" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Поделиться" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Поделиться" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Paylaş" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Paylaş" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Share" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Share" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chia sẻ" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chia sẻ" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "分享" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "分享" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "分享" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "分享" } } } }, - "SpaceSettings.Title": { - "comment": "MARK: - Space Settings", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إعدادات المساحة" + "SpaceSettings.Title" : { + "comment" : "MARK: - Space Settings", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إعدادات المساحة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Налады прасторы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Налады прасторы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Space-Einstellungen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Space-Einstellungen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Space settings" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Space settings" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ajustes del espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ajustes del espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Space settings" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Space settings" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Space settings" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Space settings" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Paramètres de l'espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Paramètres de l'espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Setelan ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Setelan ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Impostazioni dello Spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Impostazioni dello Spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース設定" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース設定" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Space settings" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Space settings" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Rominnstillinger" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Rominnstillinger" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ruimte instellingen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruimte instellingen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Space settings" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Space settings" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ustawienia przestrzeni" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ustawienia przestrzeni" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Configurações do espaço" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Configurações do espaço" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Space settings" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Space settings" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Настройки пространства" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Настройки пространства" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alan ayarları" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alan ayarları" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Параметри простору" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Параметри простору" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Cài đặt không gian" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Cài đặt không gian" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "空间设置" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "空间设置" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "空間設置" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "空間設置" } } } }, - "SpaceShare.AccessChanged": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Access rights have been changed." + "SpaceShare.AccessChanged" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Access rights have been changed." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Правы доступу былі змененыя." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Правы доступу былі змененыя." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Zugriffsrechte wurden geändert." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Zugriffsrechte wurden geändert." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Access rights have been changed." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Access rights have been changed." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Se han cambiado los derechos de acceso." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Se han cambiado los derechos de acceso." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Access rights have been changed." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Access rights have been changed." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Access rights have been changed." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Access rights have been changed." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Les droits d'accès ont été modifiés." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Les droits d'accès ont été modifiés." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hak akses telah diubah." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hak akses telah diubah." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "I diritti di accesso sono stati modificati." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "I diritti di accesso sono stati modificati." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "アクセス権が変更されました。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "アクセス権が変更されました。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Access rights have been changed." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Access rights have been changed." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Access rights have been changed." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Access rights have been changed." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "De toegangsrechten zijn gewijzigd." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "De toegangsrechten zijn gewijzigd." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Access rights have been changed." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Access rights have been changed." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zmieniono prawa dostępu." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zmieniono prawa dostępu." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Os direitos de acesso foram alterados." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Os direitos de acesso foram alterados." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Access rights have been changed." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Access rights have been changed." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Права доступа были изменены." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Права доступа были изменены." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Erişim hakları değiştirildi." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Erişim hakları değiştirildi." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Access rights have been changed." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Access rights have been changed." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Access rights have been changed." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Access rights have been changed." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "访问权限现已更改。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "访问权限现已更改。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "存取權限已變更" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "存取權限已變更" } } } }, - "SpaceShare.Action.Approve": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "موافقة" + "SpaceShare.Action.Approve" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "موافقة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Зацвердзіць" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Зацвердзіць" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Genehmigen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Genehmigen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Approve" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Approve" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Aprobar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Aprobar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Approve" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Approve" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Approve" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Approve" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Approuver" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Approuver" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Terima" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Terima" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Approva" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Approva" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "承認" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "承認" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Approve" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Approve" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Godkjenn" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Godkjenn" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Goedkeuren" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Goedkeuren" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Approve" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Approve" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zatwierdź" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zatwierdź" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Aprovar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Aprovar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Approve" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Approve" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Подтвердить" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Подтвердить" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Onayla" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Onayla" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Approve" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Approve" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Phê duyệt" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Phê duyệt" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "接受" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "接受" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "批准" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "批准" } } } }, - "SpaceShare.Action.ViewRequest": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "عرض الطلب" + "SpaceShare.Action.ViewRequest" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "عرض الطلب" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Паглядзець запыт" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Паглядзець запыт" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Anfrage ansehen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Anfrage ansehen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "View request" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "View request" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ver solicitud" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ver solicitud" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "View request" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "View request" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "View request" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "View request" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Afficher la demande" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Afficher la demande" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Lihat permintaan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Lihat permintaan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Visualizza richiesta" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Visualizza richiesta" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リクエストを確認" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リクエストを確認" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "요청 보기" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "요청 보기" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Vis forespørsel" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Vis forespørsel" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bekijk verzoek" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bekijk verzoek" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "View request" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "View request" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wyświetl zapytanie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wyświetl zapytanie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Ver solicitação" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Ver solicitação" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "View request" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "View request" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Посмотреть запрос" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Посмотреть запрос" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İsteği görüntüle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İsteği görüntüle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "View request" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "View request" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "View request" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "View request" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "查看请求" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "查看请求" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "查看請求" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "查看請求" } } } }, - "SpaceShare.AlreadyJoin.OpenSpace": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "فتح المساحة" + "SpaceShare.AlreadyJoin.OpenSpace" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "فتح المساحة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Адкрыць прастору" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Адкрыць прастору" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Öffne Space" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Öffne Space" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Open space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Open space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Abrir espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Abrir espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Open space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Open space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Open space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Open space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Espace ouvert" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Espace ouvert" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buka ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buka ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Apri spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Apri spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースを開く" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペースを開く" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "스페이스 열기" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "스페이스 열기" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Open space" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Open space" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Ruimte openen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruimte openen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Open space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Open space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Otwarta przestrzeń" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Otwarta przestrzeń" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Abrir espaço" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Abrir espaço" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Open space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Open space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Открыть пространство." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Открыть пространство." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alan açın" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alan açın" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Open space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Open space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Không gian mở" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Không gian mở" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "打开空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "打开空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "開放空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "開放空間" } } } }, - "SpaceShare.AlreadyJoin.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "أنت بالفعل عضو في هذه المساحة" + "SpaceShare.AlreadyJoin.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "أنت بالفعل عضو في هذه المساحة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вы ўжо з'яўляецеся ўдзельнікам гэтай прасторы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы ўжо з'яўляецеся ўдзельнікам гэтай прасторы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Du bist bereits Mitglied dieses Spaces." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Du bist bereits Mitglied dieses Spaces." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You are already a member of this space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You are already a member of this space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Ya eres miembro de este espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Ya eres miembro de este espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You are already a member of this space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You are already a member of this space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You are already a member of this space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You are already a member of this space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous êtes déjà membre de cet espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous êtes déjà membre de cet espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kamu sudah merupakan anggota ruang ini" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kamu sudah merupakan anggota ruang ini" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sei già membro di questo spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sei già membro di questo spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "あなたは既にこのスペースのメンバーです。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "あなたは既にこのスペースのメンバーです。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "당신은 이미 이 스페이스의 구성원입니다" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "당신은 이미 이 스페이스의 구성원입니다" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You are already a member of this space" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You are already a member of this space" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je bent al lid van deze ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je bent al lid van deze ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You are already a member of this space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You are already a member of this space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jesteś już członkiem tej przestrzeni" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jesteś już członkiem tej przestrzeni" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você já é membro deste espaço" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você já é membro deste espaço" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You are already a member of this space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You are already a member of this space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы уже являетесь членом этого пространства" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы уже являетесь членом этого пространства" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Zaten bu alanın bir üyesisiniz." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Zaten bu alanın bir üyesisiniz." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You are already a member of this space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You are already a member of this space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bạn đã là một thành viên của không gian này" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bạn đã là một thành viên của không gian này" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "你已经是这个空间的成员了" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "你已经是这个空间的成员了" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您已經是此空間的成員。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您已經是此空間的成員。" } } } }, - "SpaceShare.Approve.Toast": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "You approved %@'s request." + "SpaceShare.Approve.Toast" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "You approved %@'s request." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вы ўхвалілі запыт ад %@." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы ўхвалілі запыт ад %@." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Du hast die Anfrage von %@ genehmigt." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Du hast die Anfrage von %@ genehmigt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You approved %@'s request." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You approved %@'s request." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Has aprobado la solicitud de %@." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Has aprobado la solicitud de %@." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You approved %@'s request." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You approved %@'s request." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You approved %@'s request." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You approved %@'s request." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous avez approuvé la demande de %@" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous avez approuvé la demande de %@" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kamu menyetujui permintaan %@." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kamu menyetujui permintaan %@." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Hai approvato la richiesta di %@." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Hai approvato la richiesta di %@." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "%@さんのリクエストを承認しました。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "%@さんのリクエストを承認しました。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You approved %@'s request." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You approved %@'s request." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You approved %@'s request." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You approved %@'s request." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je hebt het verzoek van %@ goedgekeurd." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je hebt het verzoek van %@ goedgekeurd." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You approved %@'s request." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You approved %@'s request." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zatwierdziłeś prośbę %@." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zatwierdziłeś prośbę %@." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você aprovou o pedido de %@." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você aprovou o pedido de %@." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You approved %@'s request." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You approved %@'s request." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы приняли запрос от %@" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы приняли запрос от %@" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@'nin talebini onayladınız." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@'nin talebini onayladınız." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You approved %@'s request." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You approved %@'s request." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "You approved %@'s request." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "You approved %@'s request." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您批准了 %@ 的请求。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您批准了 %@ 的请求。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您批准了 %@ 的請求。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您批准了 %@ 的請求。" } } } }, - "SpaceShare.ChangePermissions": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "%@ access to the space would become %@." + "SpaceShare.ChangePermissions" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ access to the space would become %@." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "доступ да прасторы %@ стане %@." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "доступ да прасторы %@ стане %@." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "%@ Zugriffsberechtigung auf den Raum würde auf %@ geändert werden." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ Zugriffsberechtigung auf den Raum würde auf %@ geändert werden." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ access to the space would become %@." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ access to the space would become %@." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "%@ accederá al espacio como %@." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ accederá al espacio como %@." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "%@ access to the space would become %@." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ access to the space would become %@." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "%@ access to the space would become %@." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ access to the space would become %@." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "%@ l’accès à l’espace deviendrait %@." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ l’accès à l’espace deviendrait %@." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Akses %@ di ruang ini akan menjadi %@." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Akses %@ di ruang ini akan menjadi %@." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "L'accesso allo spazio di %@ diventerà %@." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "L'accesso allo spazio di %@ diventerà %@." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "%@さんのアクセス権が%@に変更されます" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "%@さんのアクセス権が%@に変更されます" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "%@ access to the space would become %@." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ access to the space would become %@." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "%@ access to the space would become %@." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ access to the space would become %@." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "%@ toegang tot de ruimte zou %@ worden." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ toegang tot de ruimte zou %@ worden." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "%@ access to the space would become %@." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ access to the space would become %@." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dostęp %@ do przestrzeni stanie się %@." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dostęp %@ do przestrzeni stanie się %@." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "%@ acesso ao espaço se tornaria %@." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ acesso ao espaço se tornaria %@." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "%@ access to the space would become %@." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ access to the space would become %@." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "доступ %@ к пространству станет %@." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "доступ %@ к пространству станет %@." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alana %@ erişimi %@ haline gelecektir." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alana %@ erişimi %@ haline gelecektir." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "%@ access to the space would become %@." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ access to the space would become %@." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Quyền truy cập %@ cho không gian sẽ thành %@." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Quyền truy cập %@ cho không gian sẽ thành %@." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "%@ 访问空间将变成 %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 访问空间将变成 %@" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "%@ 將成為 %@ 存取空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 將成為 %@ 存取空間" } } } }, - "SpaceShare.CopyInviteLink.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "SpaceShare.CopyInviteLink.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Einladungslink kopieren" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Einladungslink kopieren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Copy invite link" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Copy invite link" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Copiar enlace de invitación" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Copiar enlace de invitación" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Copier le lien d’invitation" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Copier le lien d’invitation" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Salin tautan undangan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Salin tautan undangan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Copia il link di invito" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Copia il link di invito" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "招待リンクをコピー" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "招待リンクをコピー" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Kopieer uitnodigingskoppeling" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kopieer uitnodigingskoppeling" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Davet bağlantısını kopyala" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Davet bağlantısını kopyala" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "复制邀请链接" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "复制邀请链接" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Copy invite link" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Copy invite link" } } } }, - "SpaceShare.DeleteSharingLink.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "SpaceShare.DeleteSharingLink.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Neue Mitglieder können dem Space nicht beitreten. Du kannst jederzeit einen neuen Link erstellen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Neue Mitglieder können dem Space nicht beitreten. Du kannst jederzeit einen neuen Link erstellen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "No podrán acceder nuevos miembros al espacio. Puedes generar un enlace nuevo en cualquier momento" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "No podrán acceder nuevos miembros al espacio. Puedes generar un enlace nuevo en cualquier momento" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Les nouveaux membres ne pourront pas rejoindre l'espace. Vous pouvez générer un nouveau lien à tout moment" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Les nouveaux membres ne pourront pas rejoindre l'espace. Vous pouvez générer un nouveau lien à tout moment" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Anggota baru tidak akan dapat bergabung ke ruang ini. Kamu bisa membuat tautan baru kapan saja" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Anggota baru tidak akan dapat bergabung ke ruang ini. Kamu bisa membuat tautan baru kapan saja" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "I nuovi membri non saranno in grado di unirsi allo spazio. È possibile generare un nuovo link in qualsiasi momento" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "I nuovi membri non saranno in grado di unirsi allo spazio. È possibile generare un nuovo link in qualsiasi momento" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "今後、新しいメンバーがこのスペースに参加できなくなります。新しい招待リンクはいつでも作成できます。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "今後、新しいメンバーがこのスペースに参加できなくなります。新しい招待リンクはいつでも作成できます。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Nieuwe leden zullen niet kunnen deelnemen aan de ruimte. Je kunt op elk gewenst moment een nieuwe link genereren" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nieuwe leden zullen niet kunnen deelnemen aan de ruimte. Je kunt op elk gewenst moment een nieuwe link genereren" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Novos membros não poderão entrar no espaço. Você pode gerar um novo link a qualquer momento" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Novos membros não poderão entrar no espaço. Você pode gerar um novo link a qualquer momento" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Новые участники не смогут присоединиться к пространству. Вы можете создать новую ссылку в любое время" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Новые участники не смогут присоединиться к пространству. Вы можете создать новую ссылку в любое время" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yeni üyeler alanınıza katılamayacaklar. İstediğiniz zaman yeni bir bağlantı oluşturabilirsiniz." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yeni üyeler alanınıza katılamayacaklar. İstediğiniz zaman yeni bir bağlantı oluşturabilirsiniz." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "新成员将无法加入空间。您可以随时生成一个新链接。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "新成员将无法加入空间。您可以随时生成一个新链接。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "New members won’t be able to join the space. You can generate a new link anytime" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "New members won’t be able to join the space. You can generate a new link anytime" } } } }, - "SpaceShare.DeleteSharingLink.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "حذف الرابط" + "SpaceShare.DeleteSharingLink.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "حذف الرابط" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выдаліць спасылку" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выдаліць спасылку" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Link löschen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Link löschen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Delete link" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete link" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Eliminar enlace" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Eliminar enlace" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Delete link" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete link" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Delete link" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete link" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Supprimer le lien" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Supprimer le lien" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hapus tautan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hapus tautan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Elimina link" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Elimina link" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リンクを削除" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リンクを削除" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Delete link" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete link" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Slett lenke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Slett lenke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verwijder link" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwijder link" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Delete link" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete link" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Usuń link" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Usuń link" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Excluir link" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Excluir link" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Delete link" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete link" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удалить ссылку" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удалить ссылку" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bağlantıyı sil" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bağlantıyı sil" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Delete link" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete link" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Xóa link" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Xóa link" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "删除链接" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "删除链接" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "刪除連結" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "刪除連結" } } } }, - "SpaceShare.HowToShare.Step1": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "1. يرجى تقديم الرابط للشخص الذي ترغب في التعاون معه." + "SpaceShare.HowToShare.Step1" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "1. يرجى تقديم الرابط للشخص الذي ترغب في التعاون معه." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Калі ласка, дайце спасылку чалавеку, з якім вы хацелі б супрацоўнічаць." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Калі ласка, дайце спасылку чалавеку, з якім вы хацелі б супрацоўнічаць." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Bitte gib den Link zu der Person an, mit der du zusammenarbeiten möchtest." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Bitte gib den Link zu der Person an, mit der du zusammenarbeiten möchtest." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Please provide the link to the person you'd like to collaborate with." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Please provide the link to the person you'd like to collaborate with." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Proporciona este enlace a la persona con la que te gustaría colaborar." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Proporciona este enlace a la persona con la que te gustaría colaborar." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Please provide the link to the person you'd like to collaborate with." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Please provide the link to the person you'd like to collaborate with." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Please provide the link to the person you'd like to collaborate with." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Please provide the link to the person you'd like to collaborate with." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "SVP fournir le lien à la personne avec qui vous souhaitez collaborer." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "SVP fournir le lien à la personne avec qui vous souhaitez collaborer." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Berikan tautan kepada orang yang ingin kamu ajak berkolaborasi." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Berikan tautan kepada orang yang ingin kamu ajak berkolaborasi." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Si prega di fornire il link alla persona con cui si desidera collaborare." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Si prega di fornire il link alla persona con cui si desidera collaborare." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "一緒に編集したい相手に招待リンクを伝えましょう。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "一緒に編集したい相手に招待リンクを伝えましょう。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Please provide the link to the person you'd like to collaborate with." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Please provide the link to the person you'd like to collaborate with." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Please provide the link to the person you'd like to collaborate with." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Please provide the link to the person you'd like to collaborate with." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geef de link aan de persoon met wie je wilt samenwerken." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geef de link aan de persoon met wie je wilt samenwerken." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Please provide the link to the person you'd like to collaborate with." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Please provide the link to the person you'd like to collaborate with." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Podaj link osobie, z którą chcesz współpracować." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Podaj link osobie, z którą chcesz współpracować." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Forneça o link para a pessoa com quem deseja colaborar." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Forneça o link para a pessoa com quem deseja colaborar." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Please provide the link to the person you'd like to collaborate with." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Please provide the link to the person you'd like to collaborate with." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Пожалуйста, предоставьте ссылку человеку, с которым хотите сотрудничать." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Пожалуйста, предоставьте ссылку человеку, с которым хотите сотрудничать." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Lütfen işbirliği yapmak istediğiniz kişinin bağlantısını sağlayın." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Lütfen işbirliği yapmak istediğiniz kişinin bağlantısını sağlayın." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Please provide the link to the person you'd like to collaborate with." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Please provide the link to the person you'd like to collaborate with." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Please provide the link to the person you'd like to collaborate with." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Please provide the link to the person you'd like to collaborate with." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "请向您与想要合作的人提供这个链接。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "请向您与想要合作的人提供这个链接。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "請提供此連結給您想要協作的人。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "請提供此連結給您想要協作的人。" } } } }, - "SpaceShare.HowToShare.Step2": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "بالنقر على الرابط، يطلب الشخص الانضمام إلى المساحة." + "SpaceShare.HowToShare.Step2" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "بالنقر على الرابط، يطلب الشخص الانضمام إلى المساحة." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Перайшоўшы па спасылцы, чалавек запытвае далучэнне да прасторы." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Перайшоўшы па спасылцы, чалавек запытвае далучэнне да прасторы." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Durch Klick auf den Link fragt eine Person den Zugang zu dem Space an. " + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Durch Klick auf den Link fragt eine Person den Zugang zu dem Space an. " } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "By clicking the link, a person requests to join the space." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "By clicking the link, a person requests to join the space." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Al hacer clic en el enlace, esa persona solicitará acceso al espacio." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Al hacer clic en el enlace, esa persona solicitará acceso al espacio." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "By clicking the link, a person requests to join the space." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "By clicking the link, a person requests to join the space." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "By clicking the link, a person requests to join the space." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "By clicking the link, a person requests to join the space." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "En cliquant le lien, une personne demande à joindre l'espace." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "En cliquant le lien, une personne demande à joindre l'espace." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Dengan mengeklik tautan, orang itu akan meminta bergabung ke dalam ruang." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Dengan mengeklik tautan, orang itu akan meminta bergabung ke dalam ruang." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Cliccando sul link, una persona richiede di unirsi allo spazio." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Cliccando sul link, una persona richiede di unirsi allo spazio." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リンクがクリックされると、あなたにスペースへの参加リクエストが送信されます。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リンクがクリックされると、あなたにスペースへの参加リクエストが送信されます。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "By clicking the link, a person requests to join the space." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "By clicking the link, a person requests to join the space." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "By clicking the link, a person requests to join the space." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "By clicking the link, a person requests to join the space." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Door op de link te klikken, vraagt een persoon toegang tot de ruimte aan." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Door op de link te klikken, vraagt een persoon toegang tot de ruimte aan." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "By clicking the link, a person requests to join the space." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "By clicking the link, a person requests to join the space." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Klikając na link, osoba prosi o dołączenie do przestrzeni." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Klikając na link, osoba prosi o dołączenie do przestrzeni." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Clicando no link, uma pessoa solicita para ingressar no espaço." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Clicando no link, uma pessoa solicita para ingressar no espaço." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "By clicking the link, a person requests to join the space." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "By clicking the link, a person requests to join the space." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Нажав на ссылку, человек запросит вступление в пространство." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Нажав на ссылку, человек запросит вступление в пространство." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bir kişi bağlantıya tıklayarak alana katılmayı talep eder." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bir kişi bağlantıya tıklayarak alana katılmayı talep eder." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "By clicking the link, a person requests to join the space." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "By clicking the link, a person requests to join the space." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "By clicking the link, a person requests to join the space." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "By clicking the link, a person requests to join the space." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "通过点击链接,将收到一个人加入空间的请求。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "通过点击链接,将收到一个人加入空间的请求。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "他人可以透過點擊連結請求加入空間。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "他人可以透過點擊連結請求加入空間。" } } } }, - "SpaceShare.HowToShare.Step3": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "بعد الموافقة على الطلب، يمكنك اختيار حقوق الوصول لذلك الشخص." + "SpaceShare.HowToShare.Step3" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "بعد الموافقة على الطلب، يمكنك اختيار حقوق الوصول لذلك الشخص." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пасля ўхвалення запыту вы можаце выбраць правы доступу для гэтага чалавека." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пасля ўхвалення запыту вы можаце выбраць правы доступу для гэтага чалавека." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Nach der Genehmigung der Anfrage kannst du die Zugriffsrechte für diese Person festlegen." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Nach der Genehmigung der Anfrage kannst du die Zugriffsrechte für diese Person festlegen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "After approving the request, you can choose the access rights for that person." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "After approving the request, you can choose the access rights for that person." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cuando apruebes su solicitud, podrás definir sus derechos de acceso." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cuando apruebes su solicitud, podrás definir sus derechos de acceso." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "After approving the request, you can choose the access rights for that person." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "After approving the request, you can choose the access rights for that person." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "After approving the request, you can choose the access rights for that person." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "After approving the request, you can choose the access rights for that person." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Après l'approbation de la demande, vous pouvez choisir les droits d'accès pour cette personne." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Après l'approbation de la demande, vous pouvez choisir les droits d'accès pour cette personne." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Setelah menyetujui permintaannya, kamu bisa memilih hak akses untuk orang tersebut." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Setelah menyetujui permintaannya, kamu bisa memilih hak akses untuk orang tersebut." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Dopo aver approvato la richiesta, puoi scegliere i diritti di accesso per quella persona." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Dopo aver approvato la richiesta, puoi scegliere i diritti di accesso per quella persona." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "参加リクエストが届いたら承認して、共有相手にアクセス権を設定しましょう。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "参加リクエストが届いたら承認して、共有相手にアクセス権を設定しましょう。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "After approving the request, you can choose the access rights for that person." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "After approving the request, you can choose the access rights for that person." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "After approving the request, you can choose the access rights for that person." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "After approving the request, you can choose the access rights for that person." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Na goedkeuring van het verzoek, kun je de toegangsrechten voor deze persoon kiezen." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Na goedkeuring van het verzoek, kun je de toegangsrechten voor deze persoon kiezen." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "After approving the request, you can choose the access rights for that person." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "After approving the request, you can choose the access rights for that person." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Po zatwierdzeniu wniosku możesz wybrać prawa dostępu dla tej osoby." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Po zatwierdzeniu wniosku możesz wybrać prawa dostępu dla tej osoby." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Após aprovar o pedido, você pode escolher os direitos de acesso para essa pessoa." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Após aprovar o pedido, você pode escolher os direitos de acesso para essa pessoa." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "After approving the request, you can choose the access rights for that person." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "After approving the request, you can choose the access rights for that person." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "После одобрения запроса Вы можете выбрать права доступа для этого человека." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "После одобрения запроса Вы можете выбрать права доступа для этого человека." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Talebi onayladıktan sonra söz konusu kişi için erişim haklarını seçebilirsiniz." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Talebi onayladıktan sonra söz konusu kişi için erişim haklarını seçebilirsiniz." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "After approving the request, you can choose the access rights for that person." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "After approving the request, you can choose the access rights for that person." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "After approving the request, you can choose the access rights for that person." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "After approving the request, you can choose the access rights for that person." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "批准请求后,您可以选择此人的访问权限。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "批准请求后,您可以选择此人的访问权限。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "批准請求後,您可以分配此人的存取權限。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "批准請求後,您可以分配此人的存取權限。" } } } }, - "SpaceShare.HowToShare.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "كيف تشارك مساحة؟" + "SpaceShare.HowToShare.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "كيف تشارك مساحة؟" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Як падзяліцца Прасторай?" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Як падзяліцца Прасторай?" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Wie teilt man einen Space?" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Wie teilt man einen Space?" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "How to share a space?" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "How to share a space?" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "¿Cómo compartir un espacio?" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "¿Cómo compartir un espacio?" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "How to share a space?" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "How to share a space?" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "How to share a space?" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "How to share a space?" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Comment partager un espace ?" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Comment partager un espace ?" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bagaimana caranya membagikan ruang?" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bagaimana caranya membagikan ruang?" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Come condividere uno spazio?" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Come condividere uno spazio?" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースの共有方法" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペースの共有方法" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "How to share a space?" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "How to share a space?" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Hvordan dele et rom?" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Hvordan dele et rom?" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Hoe deel je een ruimte?" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Hoe deel je een ruimte?" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "How to share a space?" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "How to share a space?" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Jak dzielić się przestrzenią?" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Jak dzielić się przestrzenią?" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Como compartilhar um espaço?" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Como compartilhar um espaço?" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "How to share a space?" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "How to share a space?" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Как поделиться пространством?" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Как поделиться пространством?" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bir alan nasıl paylaşılır?" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bir alan nasıl paylaşılır?" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "How to share a space?" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "How to share a space?" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "How to share a space?" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "How to share a space?" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "如何共享空间?" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "如何共享空间?" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "如何共享一個空間?" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "如何共享一個空間?" } } } }, - "SpaceShare.Invite.Description.part1": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "SpaceShare.Invite.Description.part1" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Share this invite link so that others can join your space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share this invite link so that others can join your space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Comparte este enlace de invitación con quien quieras que acceda a tu espacio." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Comparte este enlace de invitación con quien quieras que acceda a tu espacio." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bagikan tautan undangan ini agar orang lain dapat bergabung ke ruangmu" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bagikan tautan undangan ini agar orang lain dapat bergabung ke ruangmu" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Condividi questo link di invito in modo che gli altri possano unirsi al tuo spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Condividi questo link di invito in modo che gli altri possano unirsi al tuo spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "招待リンクを共有して、あなたのスペースに招待しましょう。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "招待リンクを共有して、あなたのスペースに招待しましょう。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Başkalarının alanınıza katılabilmesi için bu davet bağlantısını paylaşın" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Başkalarının alanınıza katılabilmesi için bu davet bağlantısını paylaşın" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Share this invite link so that others can join your space" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this invite link so that others can join your space" } } } }, - "SpaceShare.Invite.Description.part2": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "SpaceShare.Invite.Description.part2" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Once they click your link and request access, you can set their access rights." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cuando sigan el enlace y soliciten unirse, podrás definir sus derechos de acceso." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cuando sigan el enlace y soliciten unirse, podrás definir sus derechos de acceso." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ketika mereka mengeklik tautanmu dan meminta akses, kamu bisa mengatur hak akses mereka." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ketika mereka mengeklik tautanmu dan meminta akses, kamu bisa mengatur hak akses mereka." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Una volta che fanno clic sul link e richiedono l'accesso, è possibile impostare i loro diritti di accesso" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Una volta che fanno clic sul link e richiedono l'accesso, è possibile impostare i loro diritti di accesso" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リンクがクリックされると、あなたにスペースへの参加リクエストが送信されます。参加リクエストが届いたら承認して、共有相手にアクセス権を設定しましょう。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リンクがクリックされると、あなたにスペースへの参加リクエストが送信されます。参加リクエストが届いたら承認して、共有相手にアクセス権を設定しましょう。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bağlantınıza tıklayıp erişim talep ettiklerinde erişim haklarını ayarlayabilirsiniz." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bağlantınıza tıklayıp erişim talep ettiklerinde erişim haklarını ayarlayabilirsiniz." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Once they click your link and request access, you can set their access rights." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Once they click your link and request access, you can set their access rights." } } } }, - "SpaceShare.Invite.Empty": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إنشاء رابط دعوة لمشاركة المساحة وإضافة أعضاء جدد" + "SpaceShare.Invite.Empty" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إنشاء رابط دعوة لمشاركة المساحة وإضافة أعضاء جدد" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Стварыце запрашальную спасылку для сумеснага выкарыстання прасторы і дадання новых удзельнікаў" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Стварыце запрашальную спасылку для сумеснага выкарыстання прасторы і дадання новых удзельнікаў" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Erstelle einen Einladungslink, um neue Mitglieder hinzuzufügen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Erstelle einen Einladungslink, um neue Mitglieder hinzuzufügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Create invite link to share space and add new members" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Create invite link to share space and add new members" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Crea un enlace de invitación para compartir el espacio y añadir miembros" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Crea un enlace de invitación para compartir el espacio y añadir miembros" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Create invite link to share space and add new members" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Create invite link to share space and add new members" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Create invite link to share space and add new members" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Create invite link to share space and add new members" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Créer un lien d'invitation pour partager de l'espace et ajouter de nouveaux membres" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Créer un lien d'invitation pour partager de l'espace et ajouter de nouveaux membres" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buat tautan undangan untuk membagikan ruang dan menambah anggota baru" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buat tautan undangan untuk membagikan ruang dan menambah anggota baru" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Crea un link di invito per condividere lo spazio e aggiungere nuovi membri" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Crea un link di invito per condividere lo spazio e aggiungere nuovi membri" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "招待リンクを作成し、スペースに新しいメンバーを招待しましょう" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "招待リンクを作成し、スペースに新しいメンバーを招待しましょう" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Create invite link to share space and add new members" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Create invite link to share space and add new members" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Create invite link to share space and add new members" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Create invite link to share space and add new members" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Genereer uitnodigingslink om ruimte te delen en nieuwe leden toe te voegen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Genereer uitnodigingslink om ruimte te delen en nieuwe leden toe te voegen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Create invite link to share space and add new members" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Create invite link to share space and add new members" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Utwórz link z zaproszeniem, aby udostępnić przestrzeń i dodać nowych członków" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Utwórz link z zaproszeniem, aby udostępnić przestrzeń i dodać nowych członków" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Crie o link de convite para compartilhar o espaço e adicionar novos membros" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Crie o link de convite para compartilhar o espaço e adicionar novos membros" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Crie o link de convite para compartilhar o espaço e adicionar novos membros" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Crie o link de convite para compartilhar o espaço e adicionar novos membros" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Создать ссылку-приглашение для совместного использования и добавления новых участников" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Создать ссылку-приглашение для совместного использования и добавления новых участников" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alan paylaşmak ve yeni üyeler eklemek için davet bağlantısı oluşturun" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alan paylaşmak ve yeni üyeler eklemek için davet bağlantısı oluşturun" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Create invite link to share space and add new members" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Create invite link to share space and add new members" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Create invite link to share space and add new members" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Create invite link to share space and add new members" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "创建邀请链接以共享空间并添加新成员" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "创建邀请链接以共享空间并添加新成员" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "建立邀請連結以分享空間並新增成員" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "建立邀請連結以分享空間並新增成員" } } } }, - "SpaceShare.Invite.Generate": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إنشاء رابط دعوة" + "SpaceShare.Invite.Generate" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إنشاء رابط دعوة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Стварыць запрашальную спасылку" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Стварыць запрашальную спасылку" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Einladungslink generieren" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Einladungslink generieren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Generate invite link" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generate invite link" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Generar enlace de invitación" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Generar enlace de invitación" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Generate invite link" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate invite link" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Generate invite link" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate invite link" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Générer un lien d'invitation" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Générer un lien d'invitation" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buat tautan undangan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buat tautan undangan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Genera link di invito" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Genera link di invito" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "招待リンクを作成" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "招待リンクを作成" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Generate invite link" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate invite link" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Generer invitasjonslenke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Generer invitasjonslenke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Genereer uitnodigingslink" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Genereer uitnodigingslink" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Generate invite link" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate invite link" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wygeneruj link z zaproszeniem" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wygeneruj link z zaproszeniem" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Gerar link de convite" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Gerar link de convite" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Generate invite link" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate invite link" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Создать ссылку на приглашение" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Создать ссылку на приглашение" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Davet bağlantısı oluştur" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Davet bağlantısı oluştur" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Generate invite link" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate invite link" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tạo link mời" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tạo link mời" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "生成邀请链接" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "生成邀请链接" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "產生邀請連結" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "產生邀請連結" } } } }, - "SpaceShare.Invite.MaxLimit": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "SpaceShare.Invite.MaxLimit" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "many": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "one": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "two": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "two" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "zero": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "zero" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } } } } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "Вы дасягнулі ліміту ў %d удзельнікаў. Новыя ўдзельнікі не змогуць далучыцца." + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы дасягнулі ліміту ў %d удзельнікаў. Новыя ўдзельнікі не змогуць далучыцца." } }, - "many": { - "stringUnit": { - "state": "new", - "value": "Вы дасягнулі ліміту ў %d удзельнікаў. Новыя ўдзельнікі не змогуць далучыцца." + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы дасягнулі ліміту ў %d удзельнікаў. Новыя ўдзельнікі не змогуць далучыцца." } }, - "one": { - "stringUnit": { - "state": "new", - "value": "Вы дасягнулі ліміту %d удзельніка. Новыя ўдзельнікі не змогуць далучыцца." + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы дасягнулі ліміту %d удзельніка. Новыя ўдзельнікі не змогуць далучыцца." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Вы дасягнулі ліміту ў %d удзельнікаў. Новыя ўдзельнікі не змогуць далучыцца." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы дасягнулі ліміту ў %d удзельнікаў. Новыя ўдзельнікі не змогуць далучыцца." } } } } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Du hast das Limit von %d Mitgliedern erreicht. Neue Mitglieder können nicht mehr beitreten." + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Du hast das Limit von %d Mitgliedern erreicht. Neue Mitglieder können nicht mehr beitreten." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Du hast das Limit von %d Mitgliedern erreicht. Neue Mitglieder können nicht mehr beitreten." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Du hast das Limit von %d Mitgliedern erreicht. Neue Mitglieder können nicht mehr beitreten." } } } } }, - "en": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "translated", - "value": "You have reached the limit of %d members. New members will not be able to join." + "en" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "You have reached the limit of %d members. New members will not be able to join." } } } } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Has alcanzado el límite de %d miembros. No podrán acceder más miembros." + "es" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Has alcanzado el límite de %d miembros. No podrán acceder más miembros." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Has alcanzado el límite de %d miembros. No podrán acceder más miembros." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Has alcanzado el límite de %d miembros. No podrán acceder más miembros." } } } } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } } } } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } } } } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Vous avez atteint la limite de %d membres. Les nouveaux membres ne pourront pas vous rejoindre." + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous avez atteint la limite de %d membres. Les nouveaux membres ne pourront pas vous rejoindre." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Vous avez atteint la limite de %d membres. Les nouveaux membres ne pourront pas vous rejoindre." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous avez atteint la limite de %d membres. Les nouveaux membres ne pourront pas vous rejoindre." } } } } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "Kamu telah mencapai batas %d anggota. Anggota baru tidak akan dapat bergabung." + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Kamu telah mencapai batas %d anggota. Anggota baru tidak akan dapat bergabung." } } } } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Hai raggiunto il limite di %d membri. Nuovi membri non potranno unirsi." + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Hai raggiunto il limite di %d membri. Nuovi membri non potranno unirsi." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Hai raggiunto il limite di %d membri. Nuovi membri non potranno unirsi." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Hai raggiunto il limite di %d membri. Nuovi membri non potranno unirsi." } } } } }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "メンバー数が上限である%d名に達しました。新しいメンバーは参加できません。" + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "メンバー数が上限である%d名に達しました。新しいメンバーは参加できません。" } } } } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } } } } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } } } } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Je hebt de limiet van %d leden bereikt. Nieuwe leden zullen zich niet kunnen aanmelden." + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Je hebt de limiet van %d leden bereikt. Nieuwe leden zullen zich niet kunnen aanmelden." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Je hebt de limiet bereikt van %d leden bereikt. Nieuwe leden zullen zich niet kunnen aanmelden." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Je hebt de limiet bereikt van %d leden bereikt. Nieuwe leden zullen zich niet kunnen aanmelden." } } } } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "or" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } } } } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "Osiągnąłeś limit %d członków. Nowi członkowie nie będą mogli dołączyć." + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "Osiągnąłeś limit %d członków. Nowi członkowie nie będą mogli dołączyć." } }, - "many": { - "stringUnit": { - "state": "new", - "value": "Osiągnąłeś limit %d członków. Nowi członkowie nie będą mogli dołączyć." + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "Osiągnąłeś limit %d członków. Nowi członkowie nie będą mogli dołączyć." } }, - "one": { - "stringUnit": { - "state": "new", - "value": "Osiągnąłeś limit %d członków. Nowi członkowie nie będą mogli dołączyć." + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Osiągnąłeś limit %d członków. Nowi członkowie nie będą mogli dołączyć." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Osiągnąłeś limit %d członków. Nowi członkowie nie będą mogli dołączyć." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Osiągnąłeś limit %d członków. Nowi członkowie nie będą mogli dołączyć." } } } } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Você atingiu o limite de %d membros. Novos membros não poderão entrar." + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Você atingiu o limite de %d membros. Novos membros não poderão entrar." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Você atingiu o limite de %d membros. Novos membros não poderão entrar." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Você atingiu o limite de %d membros. Novos membros não poderão entrar." } } } } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } } } } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "Вы достигли лимита %d членов. Новые члены не смогут присоединиться." + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы достигли лимита %d членов. Новые члены не смогут присоединиться." } }, - "many": { - "stringUnit": { - "state": "new", - "value": "Вы достигли лимита %d членов. Новые члены не смогут присоединиться." + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы достигли лимита %d членов. Новые члены не смогут присоединиться." } }, - "one": { - "stringUnit": { - "state": "new", - "value": "Вы достигли лимита %d члена. Новые члены не смогут присоединиться." + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы достигли лимита %d члена. Новые члены не смогут присоединиться." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Вы достигли лимита %d членов. Новые члены не смогут присоединиться." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы достигли лимита %d членов. Новые члены не смогут присоединиться." } } } } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Üye sayınız %d sınırına ulaştı. Yeni üyeler katılamayacaktır." + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Üye sayınız %d sınırına ulaştı. Yeni üyeler katılamayacaktır." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Üye sayınız %d sınırına ulaştı. Yeni üyeler katılamayacaktır." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Üye sayınız %d sınırına ulaştı. Yeni üyeler katılamayacaktır." } } } } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "many": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "one": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } }, - "other": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } } } } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "You have reached the limit of %d members. New members will not be able to join." + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "You have reached the limit of %d members. New members will not be able to join." } } } } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "你已经达到了%d名成员的限制。新成员将无法加入。" + "zh-Hans" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "你已经达到了%d名成员的限制。新成员将无法加入。" } } } } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "您已達到 %d 位成員人數的上限。新成員將無法加入。" + "zh-Hant" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "您已達到 %d 位成員人數的上限。新成員將無法加入。" } } } @@ -61676,5113 +58294,5113 @@ } } }, - "SpaceShare.Invite.Share": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "مشاركة رابط الدعوة" + "SpaceShare.Invite.Share" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "مشاركة رابط الدعوة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Абагуліць запрашальную спасылку" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Абагуліць запрашальную спасылку" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Einladungslink teilen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Einladungslink teilen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Share invite link" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share invite link" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Compartir enlace de invitación" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartir enlace de invitación" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Share invite link" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Share invite link" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Share invite link" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Share invite link" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Partager le lien d'invitation" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Partager le lien d'invitation" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bagikan tautan undangan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bagikan tautan undangan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Condividi il link di invito" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Condividi il link di invito" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "招待リンクを共有" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "招待リンクを共有" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Share invite link" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Share invite link" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Del invitasjonslenke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Del invitasjonslenke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deel uitnodigingslink" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deel uitnodigingslink" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Share invite link" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Share invite link" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Udostępnij link z zaproszeniem" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Udostępnij link z zaproszeniem" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Compartilhar link de convite" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartilhar link de convite" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Share invite link" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Share invite link" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Поделится ссылкой на приглашение " + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Поделится ссылкой на приглашение " } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Davet bağlantısını paylaş" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Davet bağlantısını paylaş" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Share invite link" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Share invite link" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chia sẻ link mời" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chia sẻ link mời" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "分享邀请链接" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "分享邀请链接" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "分享邀請連結" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "分享邀請連結" } } } }, - "SpaceShare.Invite.Stream.Description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "SpaceShare.Invite.Stream.Description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Share this link so that others can join your Stream." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share this link so that others can join your Stream." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Comparte este enlace con quien quieras que acceda a tu transmisión." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Comparte este enlace con quien quieras que acceda a tu transmisión." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Partagez ce lien pour que d'autres puissent rejoindre votre stream." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Partagez ce lien pour que d'autres puissent rejoindre votre stream." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bagikan tautan ini agar orang lain dapat bergabung dengan Siaran Anda" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bagikan tautan ini agar orang lain dapat bergabung dengan Siaran Anda" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Condividi questo link in modo che altri possano unirsi al tuo Stream." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Condividi questo link in modo che altri possano unirsi al tuo Stream." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "招待リンクを共有して、あなたのストリームに招待しましょう。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "招待リンクを共有して、あなたのストリームに招待しましょう。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deel deze koppeling zodat anderen kunnen deelnemen aan jouw Stream." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deel deze koppeling zodat anderen kunnen deelnemen aan jouw Stream." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Başkalarının da yayınınıza katılabilmesi için bu bağlantıyı paylaşın." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Başkalarının da yayınınıza katılabilmesi için bu bağlantıyı paylaşın." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "分享此链接以便其他人可以加入您的流媒体。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "分享此链接以便其他人可以加入您的流媒体。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Share this link so that others can join your Stream." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Share this link so that others can join your Stream." } } } }, - "SpaceShare.Invite.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "رابط الدعوة" + "SpaceShare.Invite.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "رابط الدعوة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Запрашальная спасылка" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Запрашальная спасылка" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Einladungslink" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Einladungslink" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invite link" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite link" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Enlace de invitación" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Enlace de invitación" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Invite link" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite link" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Invite link" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite link" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Lien d'invitation" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Lien d'invitation" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tautan undangan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tautan undangan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Link di invito" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Link di invito" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "招待リンク" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "招待リンク" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Invite link" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite link" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Invitasjonslenke" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Invitasjonslenke" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Uitnodigingslink" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Uitnodigingslink" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Invite link" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite link" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Link z zaproszeniem" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Link z zaproszeniem" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Link de convite" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Link de convite" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Invite link" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite link" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ссылка на приглашение " + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ссылка на приглашение " } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Davet bağlantısı" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Davet bağlantısı" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Invite link" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite link" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Link mời" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Link mời" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "邀请链接" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "邀请链接" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "邀請連結" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "邀請連結" } } } }, - "SpaceShare.Join.Button": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "طلب الانضمام" + "SpaceShare.Join.Button" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "طلب الانضمام" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Адправіць запыт на далучэнне" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Адправіць запыт на далучэнне" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Beitrittsanfrage stellen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Beitrittsanfrage stellen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Request to join" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request to join" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Solicitar acceso" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Solicitar acceso" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Request to join" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Request to join" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Request to join" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Request to join" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Demander à rejoindre" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Demander à rejoindre" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Permintaan bergabung" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Permintaan bergabung" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Richiesta di adesione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Richiesta di adesione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "参加リクエストを送信" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "参加リクエストを送信" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Request to join" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Request to join" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Be om å bli med" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Be om å bli med" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verzoek om deel te nemen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verzoek om deel te nemen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Request to join" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Request to join" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Poproś o dołączenie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Poproś o dołączenie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Solicitar o acesso" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Solicitar o acesso" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Request to join" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Request to join" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Отправить запрос на вступление" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Отправить запрос на вступление" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Katılma isteği gönder" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Katılma isteği gönder" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Request to join" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Request to join" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Yêu cầu gia nhập" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Yêu cầu gia nhập" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "申请加入" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "申请加入" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "請求加入" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "請求加入" } } } }, - "SpaceShare.Join.CommentPlaceholder": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Leave a private comment for a space owner" + "SpaceShare.Join.CommentPlaceholder" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave a private comment for a space owner" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Пакіньце асабісты каментарый для ўладальніка прасторы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Пакіньце асабісты каментарый для ўладальніка прасторы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Einen privaten Kommentar für einen Spacebesitzer hinterlassen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Einen privaten Kommentar für einen Spacebesitzer hinterlassen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Leave a private comment for a space owner" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leave a private comment for a space owner" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Dejar un comentario privado para el propietario del espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Dejar un comentario privado para el propietario del espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Leave a private comment for a space owner" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave a private comment for a space owner" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Leave a private comment for a space owner" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave a private comment for a space owner" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Laisser un commentaire privé au propriétaire de l'espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Laisser un commentaire privé au propriétaire de l'espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tinggalkan komentar untuk pemilik ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tinggalkan komentar untuk pemilik ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Lascia un commento privato per il proprietario dello spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Lascia un commento privato per il proprietario dello spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース所有者にコメントを書く" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース所有者にコメントを書く" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Leave a private comment for a space owner" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave a private comment for a space owner" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Legg igjen en privat kommentar til eieren av rommet" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Legg igjen en privat kommentar til eieren av rommet" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Laat een persoonlijk bericht achter voor een eigenaar van de ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Laat een persoonlijk bericht achter voor een eigenaar van de ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Leave a private comment for a space owner" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave a private comment for a space owner" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Pozostaw prywatny komentarz dla właściciela przestrzeni" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Pozostaw prywatny komentarz dla właściciela przestrzeni" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Deixe um comentário particular para o dono do espaço" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Deixe um comentário particular para o dono do espaço" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Leave a private comment for a space owner" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave a private comment for a space owner" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Оставить приватный комментарий владельцу пространства" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Оставить приватный комментарий владельцу пространства" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alan sahibi için özel bir yorum bırakın" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alan sahibi için özel bir yorum bırakın" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Leave a private comment for a space owner" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave a private comment for a space owner" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Để lại một lời nhắn riêng tư cho một người chủ không gian" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Để lại một lời nhắn riêng tư cho một người chủ không gian" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "为空间所有者留下一个私人评论" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "为空间所有者留下一个私人评论" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "向空間擁有者留下私人留言" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "向空間擁有者留下私人留言" } } } }, - "SpaceShare.Join.Info": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "بمجرد موافقة مالك المساحة على طلبك، ستنضم إلى المساحة بحقوق الوصول التي حددها المالك." + "SpaceShare.Join.Info" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "بمجرد موافقة مالك المساحة على طلبك، ستنضم إلى المساحة بحقوق الوصول التي حددها المالك." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Як толькі ўладальнік прасторы ўхваліць ваш запыт, вы далучыцеся да прасторы з пэўнымі правамі доступу." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Як толькі ўладальнік прасторы ўхваліць ваш запыт, вы далучыцеся да прасторы з пэўнымі правамі доступу." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Sobald der Spacebesitzer Ihre Anfrage genehmigt, werden Sie dem Space beitreten, wobei der Eigentümer die Zugriffsrechte festgelegt." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Sobald der Spacebesitzer Ihre Anfrage genehmigt, werden Sie dem Space beitreten, wobei der Eigentümer die Zugriffsrechte festgelegt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Once the space owner approves your request, you'll join the space with the access rights owner determined." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Once the space owner approves your request, you'll join the space with the access rights owner determined." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Cuando el propietario del espacio apruebe tu solicitud, tendrás acceso al espacio con los derechos que el propietario determine." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Cuando el propietario del espacio apruebe tu solicitud, tendrás acceso al espacio con los derechos que el propietario determine." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Once the space owner approves your request, you'll join the space with the access rights owner determined." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Once the space owner approves your request, you'll join the space with the access rights owner determined." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Once the space owner approves your request, you'll join the space with the access rights owner determined." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Once the space owner approves your request, you'll join the space with the access rights owner determined." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Une fois que le propriétaire de l'espace a approuvé votre demande, vous rejoindrez l'espace avec les droits d'accès déterminés par le propriétaire." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Une fois que le propriétaire de l'espace a approuvé votre demande, vous rejoindrez l'espace avec les droits d'accès déterminés par le propriétaire." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ketika pemilik ruang menyetujui permintaanmu, kamu akan bergabung ke ruang ini dengan hak akses yang telah ditentukan." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ketika pemilik ruang menyetujui permintaanmu, kamu akan bergabung ke ruang ini dengan hak akses yang telah ditentukan." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Una volta che il proprietario dello spazio approva la tua richiesta, entrerai nello spazio con i diritti di accesso determinati dal proprietario." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Una volta che il proprietario dello spazio approva la tua richiesta, entrerai nello spazio con i diritti di accesso determinati dal proprietario." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース所有者から承認されると、スペースに参加することができます。この際、アクセス権は所有者によって付与されます。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース所有者から承認されると、スペースに参加することができます。この際、アクセス権は所有者によって付与されます。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Once the space owner approves your request, you'll join the space with the access rights owner determined." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Once the space owner approves your request, you'll join the space with the access rights owner determined." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Når eieren av rommet godkjenner forespørselen din, vil du bli med i rommet med tilgangsrettigheter eieren har satt." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Når eieren av rommet godkjenner forespørselen din, vil du bli med i rommet med tilgangsrettigheter eieren har satt." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Zodra de eigenaar van de ruimte je verzoek goedkeurt, krijg je toegang tot de ruimte met de door de eigenaar bepaalde toegangsrechten." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zodra de eigenaar van de ruimte je verzoek goedkeurt, krijg je toegang tot de ruimte met de door de eigenaar bepaalde toegangsrechten." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Once the space owner approves your request, you'll join the space with the access rights owner determined." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Once the space owner approves your request, you'll join the space with the access rights owner determined." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Gdy właściciel przestrzeni zatwierdzi Twoje żądanie, dołączysz do przestrzeni z określonym właścicielem praw dostępu." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Gdy właściciel przestrzeni zatwierdzi Twoje żądanie, dołączysz do przestrzeni z określonym właścicielem praw dostępu." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Quando o dono do espaço aprovar sua solicitação, você se juntará ao espaço com as permissões que o dono determinar." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Quando o dono do espaço aprovar sua solicitação, você se juntará ao espaço com as permissões que o dono determinar." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Uma vez que o proprietário do espaço aprove a sua solicitação, você irá juntar-se à comunidade com o proprietário dos direitos de acesso determinado." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Uma vez que o proprietário do espaço aprove a sua solicitação, você irá juntar-se à comunidade com o proprietário dos direitos de acesso determinado." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Как только владелец сообщества одобрит ваш запрос, вы присоединитесь к разделу с определенными правами доступа." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Как только владелец сообщества одобрит ваш запрос, вы присоединитесь к разделу с определенными правами доступа." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alan sahibi talebinizi onayladığında, alana erişim hakları sahibinin belirlediği şekilde katılırsınız." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alan sahibi talebinizi onayladığında, alana erişim hakları sahibinin belirlediği şekilde katılırsınız." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Once the space owner approves your request, you'll join the space with the access rights owner determined." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Once the space owner approves your request, you'll join the space with the access rights owner determined." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Một khi chủ không gian chấp thuận yêu cầu, bạn sẽ gia nhập không gian với các quyền truy cập do chủ không gian đặt cho." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Một khi chủ không gian chấp thuận yêu cầu, bạn sẽ gia nhập không gian với các quyền truy cập do chủ không gian đặt cho." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "一旦空间所有者批准您的请求,您将与访问权所有者一起加入该空间。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "一旦空间所有者批准您的请求,您将与访问权所有者一起加入该空间。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "一旦空間擁有者批准了您的請求,您將加入空間並擁有指定的存取權限。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "一旦空間擁有者批准了您的請求,您將加入空間並擁有指定的存取權限。" } } } }, - "SpaceShare.Join.InviteNotFound.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "SpaceShare.Join.InviteNotFound.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "El enlace que estás usando no parece válido. Pide al propietario que te envíe un enlace nuevo." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "El enlace que estás usando no parece válido. Pide al propietario que te envíe un enlace nuevo." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tautan yang kamu gunakan tidak berfungsi. Silakan minta pemilik tautan untuk mengirimkan tautan baru kepadamu." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tautan yang kamu gunakan tidak berfungsi. Silakan minta pemilik tautan untuk mengirimkan tautan baru kepadamu." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Il link utilizzato non sembra funzionare. Chiedetre al proprietario di condividerne uno nuovo." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Il link utilizzato non sembra funzionare. Chiedetre al proprietario di condividerne uno nuovo." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "申し訳ございませんが、このリンクは現在利用できません。お手数ですが、新しいリンクを所有者の方にお尋ねください。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "申し訳ございませんが、このリンクは現在利用できません。お手数ですが、新しいリンクを所有者の方にお尋ねください。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "De koppeling die je gebruikt lijkt niet te werken. Vraag alsjeblieft de eigenaar om een nieuwe met je te delen." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "De koppeling die je gebruikt lijkt niet te werken. Vraag alsjeblieft de eigenaar om een nieuwe met je te delen." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Kullandığınız bağlantı çalışmıyor gibi görünüyor. Lütfen bağlantı sahibinden sizinle yeni bir tane paylaşmasını isteyin." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Kullandığınız bağlantı çalışmıyor gibi görünüyor. Lütfen bağlantı sahibinden sizinle yeni bir tane paylaşmasını isteyin." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您使用的链接似乎不能用。请让所有者给您分享一个新链接。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您使用的链接似乎不能用。请让所有者给您分享一个新链接。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "The link you are using does not seem to work. Please ask the owner to share a new one with you." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "The link you are using does not seem to work. Please ask the owner to share a new one with you." } } } }, - "SpaceShare.Join.LimitReached.Message": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "To join as an editor, ask the owner to add more editor seats or send you a new link with view-only access." + "SpaceShare.Join.LimitReached.Message" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "To join as an editor, ask the owner to add more editor seats or send you a new link with view-only access." } } } }, - "SpaceShare.Join.LimitReached.Title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "This space has reached its limit" + "SpaceShare.Join.LimitReached.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This space has reached its limit" } } } }, - "SpaceShare.Join.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." + "SpaceShare.Join.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вас запрасілі далучыцца да прасторы **%@**, створанай **%@**. Адпраўце запыт, каб уладальнік прасторы змог прыняць вас." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вас запрасілі далучыцца да прасторы **%@**, створанай **%@**. Адпраўце запыт, каб уладальнік прасторы змог прыняць вас." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Sie wurden eingeladen, dem Space %@, erstellt von %@ beizutreten. Senden Sie eine Anfrage, damit der Spacebesitzer Sie einladen kann." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Sie wurden eingeladen, dem Space %@, erstellt von %@ beizutreten. Senden Sie eine Anfrage, damit der Spacebesitzer Sie einladen kann." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tienes una invitación al espacio **%@**, creado por **%@**. Envía una solicitud para que el propietario del espacio te dé acceso." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tienes una invitación al espacio **%@**, creado por **%@**. Envía una solicitud para que el propietario del espacio te dé acceso." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous avez été invité à rejoindre l'espace %@ créé par %@. Envoyez une demande afin que le propriétaire de l'espace puisse vous laisser entrer." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous avez été invité à rejoindre l'espace %@ créé par %@. Envoyez une demande afin que le propriétaire de l'espace puisse vous laisser entrer." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kamu diundang untuk bergabung ke ruang **%@** buatan **%@**. Kirimkan permintaan supaya pemilik ruang dapat mengizinkanmu bergabung." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kamu diundang untuk bergabung ke ruang **%@** buatan **%@**. Kirimkan permintaan supaya pemilik ruang dapat mengizinkanmu bergabung." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sei stato invitato a unirti allo spazio **%@**, creato da **%@**. Invia una richiesta così il proprietario dello spazio può farti entrare." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sei stato invitato a unirti allo spazio **%@**, creato da **%@**. Invia una richiesta così il proprietario dello spazio può farti entrare." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース **%@**に**%@**さんが招待してくれました。参加リクエストを送信し、スペース所有者に入れてもらいましょう。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース **%@**に**%@**さんが招待してくれました。参加リクエストを送信し、スペース所有者に入れてもらいましょう。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je bent uitgenodigd om je aan te sluiten bij ** %@** ruimte, gemaakt door **%@**. Stuur een verzoek zodat de eigenaar van de ruimte je kan toelaten. " + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je bent uitgenodigd om je aan te sluiten bij ** %@** ruimte, gemaakt door **%@**. Stuur een verzoek zodat de eigenaar van de ruimte je kan toelaten. " } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zostałeś zaproszony do dołączenia do %@ miejsca, utworzonego przez %@. Wyślij prośbę, aby właściciel przestrzeni mógł Ci pozwolić." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zostałeś zaproszony do dołączenia do %@ miejsca, utworzonego przez %@. Wyślij prośbę, aby właściciel przestrzeni mógł Ci pozwolić." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você foi convidado para entrar no espaço %@, criado por %@. Envie uma solicitação para o dono do espaço permitir seu acesso." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você foi convidado para entrar no espaço %@, criado por %@. Envie uma solicitação para o dono do espaço permitir seu acesso." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Você foi convidado para ingressar no espaço **%@, criado por **%@**. Envie um pedido para que o proprietário do espaço possa deixá-lo entrar." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Você foi convidado para ingressar no espaço **%@, criado por **%@**. Envie um pedido para que o proprietário do espaço possa deixá-lo entrar." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вас пригласили присоединиться к пространству **%@**, созданному **%@**. Отправьте запрос, чтобы владелец пространства смог принять вас." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вас пригласили присоединиться к пространству **%@**, созданному **%@**. Отправьте запрос, чтобы владелец пространства смог принять вас." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Siz **%@** tarafından oluşturulan **%@** alanına katılmaya davet edildiniz. Alan sahibinin sizi içeri alabilmesi için bir istek gönderin." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Siz **%@** tarafından oluşturulan **%@** alanına katılmaya davet edildiniz. Alan sahibinin sizi içeri alabilmesi için bir istek gönderin." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You’ve been invited to join **%@** space, created by **%@**. Send a request so space owner can let you in." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bạn được mời vào không gian **%@**, do **%@** tạo. Gửi yêu cầu để chủ không gian cho bạn vào." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bạn được mời vào không gian **%@**, do **%@** tạo. Gửi yêu cầu để chủ không gian cho bạn vào." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您已被邀请加入 **%@** 空间,此空间由 **%@** 创建。发送请求使空间所有者可以让您进入。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您已被邀请加入 **%@** 空间,此空间由 **%@** 创建。发送请求使空间所有者可以让您进入。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "您已被邀請加入由 **%@** 建立的 **%@** 空間。 發送請求,以便空間所有者可以讓​​您加入。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "您已被邀請加入由 **%@** 建立的 **%@** 空間。 發送請求,以便空間所有者可以讓​​您加入。" } } } }, - "SpaceShare.Join.NoAccess.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "SpaceShare.Join.NoAccess.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "No access to this space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "No access to this space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Sin acceso a este espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Sin acceso a este espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Pas d'accès à cet espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Pas d'accès à cet espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tidak ada akses ke ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tidak ada akses ke ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Nessun accesso a questo spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Nessun accesso a questo spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースにアクセスできません" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペースにアクセスできません" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Geen toegang tot deze ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Geen toegang tot deze ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu alana erişim yok" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu alana erişim yok" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "没有访问此空间的权限" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "没有访问此空间的权限" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "No access to this space" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "No access to this space" } } } }, - "SpaceShare.Join.NoApprove.button": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "SpaceShare.Join.NoApprove.button" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Join Space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Join Space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Acceder al espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Acceder al espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Rejoindre l'espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Rejoindre l'espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bergabung ke Ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bergabung ke Ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Unisciti allo Spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Unisciti allo Spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースに参加" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペースに参加" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alana Katıl" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alana Katıl" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Join Space" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Join Space" } } } }, - "SpaceShare.Join.NoApprove.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "SpaceShare.Join.NoApprove.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You've been invited to join %@, created by %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You've been invited to join %@, created by %@" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Te han invitado a unirte a %@, un espacio creado por %@" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Te han invitado a unirte a %@, un espacio creado por %@" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kamu diundang bergabung ke %@, dibuat oleh %@" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kamu diundang bergabung ke %@, dibuat oleh %@" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Sei stato invitato a entrare in %@, creato da %@" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Sei stato invitato a entrare in %@, creato da %@" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "%@に%@さんから招待されました。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "%@に%@さんから招待されました。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@ tarafından oluşturulan %@ alanına katılmaya davet edildiniz" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ tarafından oluşturulan %@ alanına katılmaya davet edildiniz" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "You've been invited to join %@, created by %@" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "You've been invited to join %@, created by %@" } } } }, - "SpaceShare.Join.NoApprove.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "SpaceShare.Join.NoApprove.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "%@ beitreten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ beitreten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Join %@" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Join %@" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Acceder a %@" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Acceder a %@" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Rejoindre %@" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Rejoindre %@" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bergabung ke %@" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bergabung ke %@" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Entra in %@" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Entra in %@" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "%@に参加" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "%@に参加" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@ alanına katıl" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ alanına katıl" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Join %@" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Join %@" } } } }, - "SpaceShare.Join.ObjectIsNotAvailable.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "SpaceShare.Join.ObjectIsNotAvailable.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Bitte den Eigentümer, es mit dir zu teilen." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Bitte den Eigentümer, es mit dir zu teilen." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Ask the owner to share it with you." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Ask the owner to share it with you." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Pide al propietario que lo comparta contigo." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Pide al propietario que lo comparta contigo." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Demandez au propriétaire de le partager avec vous." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Demandez au propriétaire de le partager avec vous." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Mintalah pemiliknya membaginya denganmu." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Mintalah pemiliknya membaginya denganmu." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Chiedi al proprietario di condividerlo con te." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Chiedi al proprietario di condividerlo con te." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース所有者に共有をお願いしてください。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース所有者に共有をお願いしてください。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Vraag de eigenaar om het met je te delen." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Vraag de eigenaar om het met je te delen." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sahibinden bunu sizinle paylaşmasını isteyin." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sahibinden bunu sizinle paylaşmasını isteyin." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "请求所有者分享给您。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "请求所有者分享给您。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Ask the owner to share it with you." + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Ask the owner to share it with you." } } } }, - "SpaceShare.Join.SpaceDeleted": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "SpaceShare.Join.SpaceDeleted" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The space you try to access has been deleted" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The space you try to access has been deleted" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "El espacio al que intentas acceder se ha eliminado" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "El espacio al que intentas acceder se ha eliminado" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "L'espace que vous essayez d'accéder a été supprimé" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "L'espace que vous essayez d'accéder a été supprimé" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ruang yang ingin kamu akses sudah dihapus" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruang yang ingin kamu akses sudah dihapus" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Lo spazio a cui si cerca di accedere è stato cancellato" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Lo spazio a cui si cerca di accedere è stato cancellato" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "アクセスしようとしたスペースは削除されています" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "アクセスしようとしたスペースは削除されています" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "De ruimte die je probeert te openen is verwijderd" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "De ruimte die je probeert te openen is verwijderd" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "O espaço que você está tentando acessar foi excluído" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "O espaço que você está tentando acessar foi excluído" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Пространство, к которому вы пытаетесь получить доступ, было удалено" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Пространство, к которому вы пытаетесь получить доступ, было удалено" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Erişmeye çalıştığınız alan silindi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Erişmeye çalıştığınız alan silindi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "您尝试访问的空间已被删除" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "您尝试访问的空间已被删除" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "The space you try to access has been deleted" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "The space you try to access has been deleted" } } } }, - "SpaceShare.Join.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الانضمام إلى مساحة" + "SpaceShare.Join.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الانضمام إلى مساحة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Далучыцца да прасторы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Далучыцца да прасторы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Einem Space beitreten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Einem Space beitreten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Join a space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Join a space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Acceder a un espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Acceder a un espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Join a space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Join a space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Join a space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Join a space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Rejoindre un espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Rejoindre un espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bergabung dengan ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bergabung dengan ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Unisciti a uno spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Unisciti a uno spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースへ参加" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペースへ参加" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Join a space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Join a space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Bli med i et rom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Bli med i et rom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deelnemen aan een ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deelnemen aan een ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Join a space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Join a space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dołącz do przestrzeni" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dołącz do przestrzeni" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Juntar-se a um espaço" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Juntar-se a um espaço" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Join a space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Join a space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Присоединиться к пространству" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Присоединиться к пространству" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bir alana katıl" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bir alana katıl" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Join a space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Join a space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Gia nhập một không gian" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Gia nhập một không gian" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "加入空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "加入空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "加入空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "加入空間" } } } }, - "SpaceShare.JoinConfirmation.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "You will receive a notification when the space owner will approve your request." + "SpaceShare.JoinConfirmation.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "You will receive a notification when the space owner will approve your request." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Вы атрымаеце паведамленне, калі ўладальнік прасторы зацвердзіць ваш запыт." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы атрымаеце паведамленне, калі ўладальнік прасторы зацвердзіць ваш запыт." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Sie erhalten eine Benachrichtigung, wenn der Spacebesitzer Ihre Anfrage angenommen hat." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Sie erhalten eine Benachrichtigung, wenn der Spacebesitzer Ihre Anfrage angenommen hat." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "You will receive a notification when the space owner will approve your request." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You will receive a notification when the space owner will approve your request." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Recibirás una notificación cuando el propietario del espacio apruebe tu solicitud." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Recibirás una notificación cuando el propietario del espacio apruebe tu solicitud." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "You will receive a notification when the space owner will approve your request." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "You will receive a notification when the space owner will approve your request." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "You will receive a notification when the space owner will approve your request." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "You will receive a notification when the space owner will approve your request." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vous recevrez une notification lorsque le propriétaire de l'espace approuvera votre demande." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vous recevrez une notification lorsque le propriétaire de l'espace approuvera votre demande." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kamu akan menerima pemberitahuan ketika pemilik ruang menyetujui permintaanmu." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kamu akan menerima pemberitahuan ketika pemilik ruang menyetujui permintaanmu." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Riceverai una notifica quando il proprietario dello spazio approverà la tua richiesta." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Riceverai una notifica quando il proprietario dello spazio approverà la tua richiesta." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース所有者から参加リクエストが承認されると通知が届きます。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース所有者から参加リクエストが承認されると通知が届きます。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "You will receive a notification when the space owner will approve your request." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "You will receive a notification when the space owner will approve your request." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Du vil motta et varsel når eieren av rommet godkjenner forespørselen din." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Du vil motta et varsel når eieren av rommet godkjenner forespørselen din." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Je zult een melding ontvangen wanneer de eigenaar van de ruimte je verzoek zal goedkeuren." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Je zult een melding ontvangen wanneer de eigenaar van de ruimte je verzoek zal goedkeuren." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "You will receive a notification when the space owner will approve your request." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "You will receive a notification when the space owner will approve your request." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Otrzymasz powiadomienie, gdy właściciel pokoju zatwierdzi Twoją prośbę." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Otrzymasz powiadomienie, gdy właściciel pokoju zatwierdzi Twoją prośbę." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Você será notificado quando o dono do espaço aprovar sua solicitação." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Você será notificado quando o dono do espaço aprovar sua solicitação." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "You will receive a notification when the space owner will approve your request." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "You will receive a notification when the space owner will approve your request." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вы получите уведомление, когда владелец сообщества одобрит ваш запрос." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вы получите уведомление, когда владелец сообщества одобрит ваш запрос." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alan sahibi talebinizi onayladığında bir bildirim alacaksınız." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alan sahibi talebinizi onayladığında bir bildirim alacaksınız." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "You will receive a notification when the space owner will approve your request." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "You will receive a notification when the space owner will approve your request." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Bạn sẽ nhận được thông báo khi chủ không gian chấp thuận yêu cầu của bạn." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Bạn sẽ nhận được thông báo khi chủ không gian chấp thuận yêu cầu của bạn." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "当空间所有者批准你的请求后,你将收到通知。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "当空间所有者批准你的请求后,你将收到通知。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "當空間所有者批准您的請求後,您將會收到通知。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "當空間所有者批准您的請求後,您將會收到通知。" } } } }, - "SpaceShare.JoinConfirmation.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تم إرسال الطلب" + "SpaceShare.JoinConfirmation.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تم إرسال الطلب" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Запыт адпраўлены" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Запыт адпраўлены" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Anfrage gesendet" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Anfrage gesendet" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Request sent" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Request sent" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Solicitud enviada" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Solicitud enviada" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Request sent" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Request sent" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Request sent" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Request sent" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Demande envoyée" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Demande envoyée" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Permintaan terkirim" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Permintaan terkirim" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Richiesta inviata" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Richiesta inviata" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "リクエストを送信しました" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "リクエストを送信しました" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Request sent" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Request sent" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Forespørsel sendt" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Forespørsel sendt" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verzoek verzonden" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verzoek verzonden" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Request sent" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Request sent" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zadanie wysłane" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zadanie wysłane" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Solicitação enviada" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Solicitação enviada" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Request sent" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Request sent" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Запрос отправлен" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Запрос отправлен" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İstek gönderildi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İstek gönderildi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Request sent" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Request sent" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Đã gửi yêu cầu" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Đã gửi yêu cầu" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "已发送申请" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "已发送申请" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "已送出請求" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "已送出請求" } } } }, - "SpaceShare.JoinRequest": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "طلب انضمام" + "SpaceShare.JoinRequest" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "طلب انضمام" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Запыт на далучэнне" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Запыт на далучэнне" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Beitrittsanfrage\n" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Beitrittsanfrage\n" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Join request" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Join request" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Solicitud de acceso" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Solicitud de acceso" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Join request" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Join request" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Join request" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Join request" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Demande d'admission !" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Demande d'admission !" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Permintaan bergabung" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Permintaan bergabung" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Richiesta di partecipazione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Richiesta di partecipazione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "参加リクエスト" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "参加リクエスト" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Join request" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Join request" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Medlemsforespørsel" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Medlemsforespørsel" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deelnameverzoek" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deelnameverzoek" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Join request" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Join request" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dołącz do prośby" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dołącz do prośby" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Junte-se a pedido" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Junte-se a pedido" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Join request" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Join request" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Запрос на присоединение" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Запрос на присоединение" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Katılma talebi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Katılma talebi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Join request" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Join request" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Join request" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Join request" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "加入请求" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "加入请求" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "加入請求" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "加入請求" } } } }, - "SpaceShare.LeaveRequest": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "طلب مغادرة" + "SpaceShare.LeaveRequest" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "طلب مغادرة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Запыт на выхад" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Запыт на выхад" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Anfrage abgeben" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Anfrage abgeben" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Leave request" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Leave request" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Retirar solicitud" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Retirar solicitud" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Leave request" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave request" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Leave request" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave request" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Annuler la demande" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Annuler la demande" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Permintaan keluar" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Permintaan keluar" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Richiesta di uscita" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Richiesta di uscita" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "退出リクエスト" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "退出リクエスト" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Leave request" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave request" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Leave request" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave request" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Afmeldverzoek" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Afmeldverzoek" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Leave request" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave request" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wniosek urlopowy" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wniosek urlopowy" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Sair da solicitação" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Sair da solicitação" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Leave request" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave request" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Запрос на выход" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Запрос на выход" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Ayrılma talebi" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ayrılma talebi" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Leave request" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave request" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Leave request" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Leave request" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "退出请求" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "退出请求" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "離開請求" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "離開請求" } } } }, - "SpaceShare.Manage": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إدارة" + "SpaceShare.Manage" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إدارة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Кіраванне" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Кіраванне" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Verwalten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwalten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Manage" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manage" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Gestionar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Gestionar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Manage" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Manage" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Manage" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Manage" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Gérer" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Gérer" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kelola" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kelola" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Gestisci" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Gestisci" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "管理" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "管理" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "관리" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "관리" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Administrer" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Administrer" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Beheer" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Beheer" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Manage" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Manage" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zarządzaj" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zarządzaj" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Gerenciar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Gerenciar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Manage" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Manage" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Управление" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Управление" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Yönet" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Yönet" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Manage" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Manage" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Quản lý" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Quản lý" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "管理" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "管理" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "管理" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "管理" } } } }, - "SpaceShare.ManageSpaces": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Manage Spaces" + "SpaceShare.ManageSpaces" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Manage Spaces" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Кіраванне Прасторамі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Кіраванне Прасторамі" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Spaces verwalten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Spaces verwalten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Manage Spaces" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Manage Spaces" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Gestionar espacios" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Gestionar espacios" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Manage Spaces" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Manage Spaces" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Manage Spaces" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Manage Spaces" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Gérer les espaces" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Gérer les espaces" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kelola Ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kelola Ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Gestisci Spazi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Gestisci Spazi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース管理" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース管理" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Manage Spaces" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Manage Spaces" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Administrer rom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Administrer rom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Beheer ruimten" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Beheer ruimten" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Manage Spaces" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Manage Spaces" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zarządzanie przestrzeniami" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zarządzanie przestrzeniami" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Gerenciar espaços" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Gerenciar espaços" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Manage Spaces" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Manage Spaces" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Управление пространствами" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Управление пространствами" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alanları yönetin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alanları yönetin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Manage Spaces" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Manage Spaces" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Quản lý các Không gian" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Quản lý các Không gian" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "管理空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "管理空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "管理空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "管理空間" } } } }, - "SpaceShare.Members": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "الأعضاء" + "SpaceShare.Members" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "الأعضاء" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Удзельнікі" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Удзельнікі" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Mitglieder" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Mitglieder" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Members" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Members" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Miembros" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Miembros" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Members" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Members" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Members" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Members" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Membres" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Membres" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Anggota" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Anggota" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Membri" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Membri" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メンバー" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メンバー" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Members" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Members" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Medlemmer" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Medlemmer" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Leden" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Leden" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Members" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Members" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Czlonkowie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Czlonkowie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Membros" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Membros" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Members" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Members" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Участники" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Участники" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Üyeler" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Üyeler" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Members" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Members" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Thành viên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Thành viên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "参与的人" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "参与的人" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "成員" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "成員" } } } }, - "SpaceShare.Permissions.Grand.Edit": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تعديل" + "SpaceShare.Permissions.Grand.Edit" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تعديل" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Рэдагаваць" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Рэдагаваць" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Bearbeiten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Bearbeiten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Edit" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Editar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Edit" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Edit" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Éditer" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Éditer" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sunting" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sunting" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Modifica" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Modifica" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "編集" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "編集" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Edit" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Rediger" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Rediger" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bewerk" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bewerk" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Edit" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Edytuj" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Edytuj" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Editar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Edit" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Изменить" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Изменить" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Düzenle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Düzenle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Редагувати" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Редагувати" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chỉnh sửa" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chỉnh sửa" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "编辑" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "编辑" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "編輯" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "編輯" } } } }, - "SpaceShare.Permissions.Grand.View": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "عرض" + "SpaceShare.Permissions.Grand.View" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "عرض" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выгляд" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выгляд" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ansicht" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ansicht" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "View" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "View" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Vista" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Vista" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "View" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "View" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Näkymä" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Näkymä" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Vue" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Vue" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tampilan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tampilan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Vista" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Vista" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "ビュー" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "ビュー" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "보기" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "보기" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Visning" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Visning" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Weergave" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Weergave" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଦେଖନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଦେଖନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zobacz" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zobacz" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Exibição" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Exibição" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "View" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "View" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Вид" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Вид" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Görüntüle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Görüntüle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Подання" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Подання" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chế độ xem" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chế độ xem" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "视图" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "视图" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "檢視" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "檢視" } } } }, - "SpaceShare.Permissions.Owner": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "المالك" + "SpaceShare.Permissions.Owner" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "المالك" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Уладальнік" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Уладальнік" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Eigentümer" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigentümer" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Owner" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Owner" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Propietario" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Propietario" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Owner" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Owner" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Owner" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Owner" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Propriétaire" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Propriétaire" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pemilik" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pemilik" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Proprietario" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Proprietario" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "所有者" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "所有者" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Owner" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Owner" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Eier" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Eier" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Eigenaar" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Eigenaar" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Owner" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Owner" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Właściciel" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Właściciel" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Proprietário" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Proprietário" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Owner" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Owner" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Владелец" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Владелец" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sahip" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sahip" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Owner" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Owner" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chủ" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chủ" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "所有者" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "所有者" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "擁有者" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "擁有者" } } } }, - "SpaceShare.Permissions.Reader": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Viewer" + "SpaceShare.Permissions.Reader" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Viewer" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Праглядальнік" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Праглядальнік" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Leser" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Leser" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Viewer" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Viewer" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Visitante" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Visitante" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Viewer" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Viewer" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Viewer" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Viewer" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Visionneuse" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Visionneuse" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pembaca" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pembaca" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Visualizzatore" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Visualizzatore" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "閲覧可能" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "閲覧可能" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Viewer" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Viewer" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Leser" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Leser" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Lezer" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Lezer" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Viewer" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Viewer" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Osoba przeglądająca" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Osoba przeglądająca" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Leitor" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Leitor" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Viewer" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Viewer" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Наблюдатель " + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Наблюдатель " } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Görüntüleyen" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Görüntüleyen" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Viewer" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Viewer" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Người xem" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Người xem" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "浏览者" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "浏览者" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "瀏覽者" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "瀏覽者" } } } }, - "SpaceShare.Permissions.Writer": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Editor" + "SpaceShare.Permissions.Writer" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Editor" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Рэдактар" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Рэдактар" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Editor" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Editor" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Editor" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Editor" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Editor" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Editor" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Editor" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Editor" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Editor" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Editor" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Éditeur" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Éditeur" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Penyunting" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Penyunting" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Editor" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Editor" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "編集可能" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "編集可能" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Editor" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Editor" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Redigering" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Redigering" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Bewerker" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Bewerker" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Editor" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Editor" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Redaktor" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Redaktor" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Editor" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Editor" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Editor" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Editor" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Редактор" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Редактор" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Düzenleyici" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Düzenleyici" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Editor" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Editor" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Biên tập viên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Biên tập viên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "编辑" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "编辑" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "編輯者" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "編輯者" } } } }, - "SpaceShare.QR.Button": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إظهار رمز QR" + "SpaceShare.QR.Button" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إظهار رمز QR" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Паказаць QR-код" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Паказаць QR-код" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "QR-Code anzeigen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "QR-Code anzeigen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Show QR code" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Show QR code" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Mostrar el código QR" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Mostrar el código QR" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Show QR code" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Show QR code" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Show QR code" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Show QR code" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Afficher le QR code" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Afficher le QR code" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tampilkan kode QR" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tampilkan kode QR" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Mostra codice QR" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Mostra codice QR" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "QRコードを表示" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "QRコードを表示" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Show QR code" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Show QR code" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Vis QR-kode" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Vis QR-kode" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Toon QR-code" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Toon QR-code" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Show QR code" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Show QR code" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Pokaż kod QR" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Pokaż kod QR" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Mostrar código QR" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Mostrar código QR" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Show QR code" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Show QR code" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Показать QR-код" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Показать QR-код" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Kare kodu göster" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Kare kodu göster" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Show QR code" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Show QR code" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Hiện mã QR" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Hiện mã QR" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "显示二维码" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "显示二维码" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "顯示 QR code" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "顯示 QR code" } } } }, - "SpaceShare.QR.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "QR code for joining a Space" + "SpaceShare.QR.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "QR code for joining a Space" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "QR-код для далучэння да Прасторы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "QR-код для далучэння да Прасторы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "QR-Code um einem Space beizutreten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "QR-Code um einem Space beizutreten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "QR code for joining a Space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "QR code for joining a Space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Código QR para acceder a un espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Código QR para acceder a un espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "QR code for joining a Space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "QR code for joining a Space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "QR code for joining a Space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "QR code for joining a Space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "QR Code pour rejoindre un espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "QR Code pour rejoindre un espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Kode QR untuk bergabung ke Ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Kode QR untuk bergabung ke Ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Codice QR per unirsi a uno Spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Codice QR per unirsi a uno Spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "QRコードからスペースに参加" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "QRコードからスペースに参加" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "QR code for joining a Space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "QR code for joining a Space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "QR code for joining a Space" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "QR code for joining a Space" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "QR-code voor het deelnemen aan een ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "QR-code voor het deelnemen aan een ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "QR code for joining a Space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "QR code for joining a Space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Kod QR do dołączenia do przestrzeni" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kod QR do dołączenia do przestrzeni" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Código QR para entrar em um espaço" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Código QR para entrar em um espaço" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "QR code for joining a Space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "QR code for joining a Space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "QR-код для присоединения к пространству" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "QR-код для присоединения к пространству" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bir alana katılmak için Kare kod" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bir alana katılmak için Kare kod" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "QR code for joining a Space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "QR code for joining a Space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Mã QR để gia nhập Không gian" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Mã QR để gia nhập Không gian" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "加入空间的二维码" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "加入空间的二维码" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "加入空間的 QR code" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "加入空間的 QR code" } } } }, - "SpaceShare.RemoveMember.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "%@ will be removed from the space." + "SpaceShare.RemoveMember.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ will be removed from the space." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "%@ будзе выдалены з прасторы." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ будзе выдалены з прасторы." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "%@ wird aus dem Space entfernt." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ wird aus dem Space entfernt." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ will be removed from the space." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ will be removed from the space." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "%@ se eliminará del espacio." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ se eliminará del espacio." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "%@ will be removed from the space." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ will be removed from the space." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "%@ will be removed from the space." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ will be removed from the space." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "%@ sera retiré de l'espace." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ sera retiré de l'espace." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "%@ akan dihapus dari ruang." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ akan dihapus dari ruang." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "%@ sarà rimosso/a dallo spazio." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ sarà rimosso/a dallo spazio." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "%@さんがこのスペースにアクセスできなくなります。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "%@さんがこのスペースにアクセスできなくなります。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "%@ will be removed from the space." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ will be removed from the space." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "%@ will be removed from the space." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ will be removed from the space." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "%@ zal worden verwijderd uit de ruimte." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ zal worden verwijderd uit de ruimte." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "%@ will be removed from the space." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ will be removed from the space." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "%@ zostanie usunięty z przestrzeni." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ zostanie usunięty z przestrzeni." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "%@ será removido do espaço." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ será removido do espaço." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "%@ will be removed from the space." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ will be removed from the space." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "%@ будет удален из пространства." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ будет удален из пространства." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@ alandan kaldırılacaktır." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ alandan kaldırılacaktır." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "%@ will be removed from the space." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ will be removed from the space." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "%@ sẽ bị đuổi khỏi không gian." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ sẽ bị đuổi khỏi không gian." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "%@ 将从空间中移除。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 将从空间中移除。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "%@ 將從空間中移除。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 將從空間中移除。" } } } }, - "SpaceShare.RemoveMember.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إزالة عضو" + "SpaceShare.RemoveMember.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إزالة عضو" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выдаліць удзельніка" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выдаліць удзельніка" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Mitglied entfernen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Mitglied entfernen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Remove member" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Remove member" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Eliminar miembro" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Eliminar miembro" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Remove member" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove member" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Remove member" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove member" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Supprimer un membre" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Supprimer un membre" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hapus anggota" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hapus anggota" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Remove member" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove member" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メンバーを削除" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メンバーを削除" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "멤버 삭제" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "멤버 삭제" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Remove member" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove member" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verwijder lid" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwijder lid" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Remove member" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove member" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Usuń członka" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Usuń członka" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Remover membro" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Remover membro" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Remove member" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove member" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Remove member" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove member" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Üyeyi kaldır" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Üyeyi kaldır" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Remove member" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove member" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Xóa thành viên" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Xóa thành viên" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "Remove member" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "Remove member" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "移除成員" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "移除成員" } } } }, - "SpaceShare.RequestsCount": { - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "SpaceShare.RequestsCount" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "%d request" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d request" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } }, - "two": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "two" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } }, - "zero": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "zero" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } } } } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d запыты" + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "%d запыты" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d запытаў" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "%d запытаў" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "%d запыт" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d запыт" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d запытаў" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d запытаў" } } } } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d Anfrage" + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d Anfrage" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d Anfragen" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d Anfragen" } } } } }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "%d request" + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d request" } }, - "other": { - "stringUnit": { - "state": "translated", - "value": "%d requests" + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "%d requests" } } } } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d solicitud" + "es" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d solicitud" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d solicitudes" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d solicitudes" } } } } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d request" + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d request" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } } } } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d request" + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d request" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } } } } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Demande %d" + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Demande %d" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Demande %d" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Demande %d" } } } } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d permintaan" + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d permintaan" } } } } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d richiesta" + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d richiesta" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d richieste" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d richieste" } } } } }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d件のリクエスト" + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d件のリクエスト" } } } } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } } } } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d forespørsel" + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d forespørsel" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d forespørsler" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d forespørsler" } } } } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d verzoek" + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d verzoek" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d verzoeken" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d verzoeken" } } } } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d request" + "or" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d request" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } } } } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d żądań" + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "%d żądań" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d żądań" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "%d żądań" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "%d żądanie" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d żądanie" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d żądań" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d żądań" } } } } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d solicitação" + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d solicitação" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d solicitações" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d solicitações" } } } } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d request" + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d request" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } } } } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d запроса" + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "%d запроса" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d запросов" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "%d запросов" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "%d запрос" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d запрос" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d запросов" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d запросов" } } } } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "%d istek" + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d istek" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d istek" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d istek" } } } } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "%d request" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "%d request" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } } } } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d requests" + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d requests" } } } } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d 请求" + "zh-Hans" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d 请求" } } } } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "%d 個請求" + "zh-Hant" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "%d 個請求" } } } @@ -66790,4072 +63408,4072 @@ } } }, - "SpaceShare.Share.link": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Share link" + "SpaceShare.Share.link" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Share link" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Link teilen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Link teilen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Share link" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Share link" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Compartir enlace" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartir enlace" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Share link" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Share link" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Partager le lien" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Partager le lien" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Bagikan tautan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Bagikan tautan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Condividi link" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Condividi link" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "招待リンク" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "招待リンク" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Share link" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Share link" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deel koppeling" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deel koppeling" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Share link" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Share link" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Share link" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Share link" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Share link" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bağlantıyı paylaş" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bağlantıyı paylaş" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Share link" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Share link" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "分享链接" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "分享链接" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Share link" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Share link" } } } }, - "SpaceShare.StopSharing.Action": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إيقاف المشاركة" + "SpaceShare.StopSharing.Action" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إيقاف المشاركة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Спыніць абагуленне" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Спыніць абагуленне" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Beende Teilen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Beende Teilen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Stop sharing" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stop sharing" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Dejar de compartir" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Dejar de compartir" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Stop sharing" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Stop sharing" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Stop sharing" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Stop sharing" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Arrêter le partage" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Arrêter le partage" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Berhenti berbagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Berhenti berbagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Interrompi condivisione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Interrompi condivisione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "共有を停止" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "共有を停止" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "공유 중지" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "공유 중지" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Stopp deling" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Stopp deling" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Delen stoppen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Delen stoppen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Stop sharing" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Stop sharing" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zatrzymywanie udostępniania" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zatrzymywanie udostępniania" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Parar de compartilhar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Parar de compartilhar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Stop sharing" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Stop sharing" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Закрыть доступ" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Закрыть доступ" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Paylaşımı durdur" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Paylaşımı durdur" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Stop sharing" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Stop sharing" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Ngừng chia sẻ" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ngừng chia sẻ" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "停止共享" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "停止共享" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "停止共享" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "停止共享" } } } }, - "SpaceShare.StopSharing.Message": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Members will no longer sync to this space and the share link will be deactivated." + "SpaceShare.StopSharing.Message" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Members will no longer sync to this space and the share link will be deactivated." } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Удзельнікі больш не будуць сінхранізавацца з гэтай прасторай, а спасылка на агульны доступ будзе дэактываваная." + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Удзельнікі больш не будуць сінхранізавацца з гэтай прасторай, а спасылка на агульны доступ будзе дэактываваная." } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Mitglider werden diesen Space nichtmehr synchronisieren können und der Link wird deaktiviert." + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Mitglider werden diesen Space nichtmehr synchronisieren können und der Link wird deaktiviert." } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Members will no longer sync to this space and the share link will be deactivated." + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Members will no longer sync to this space and the share link will be deactivated." } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Los cambios de otros miembros ya no se sincronizarán en este espacio y el enlace compartido se desactivará." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Los cambios de otros miembros ya no se sincronizarán en este espacio y el enlace compartido se desactivará." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Members will no longer sync to this space and the share link will be deactivated." + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Members will no longer sync to this space and the share link will be deactivated." } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Members will no longer sync to this space and the share link will be deactivated." + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Members will no longer sync to this space and the share link will be deactivated." } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Les membres ne seront plus synchronisés à cet espace et le lien de partage sera désactivé." + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Les membres ne seront plus synchronisés à cet espace et le lien de partage sera désactivé." } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Anggota tidak akan lagi menyinkronkan ruang ini dan tautan pembagian akan dinonaktifkan." + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Anggota tidak akan lagi menyinkronkan ruang ini dan tautan pembagian akan dinonaktifkan." } }, - "it": { - "stringUnit": { - "state": "new", - "value": "I membri non si sincronizzeranno più con questo spazio e il link di condivisione verrà disattivato." + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "I membri non si sincronizzeranno più con questo spazio e il link di condivisione verrà disattivato." } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "メンバーはこのスペースに同期できなくなり、招待リンクが無効になります。" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "メンバーはこのスペースに同期できなくなり、招待リンクが無効になります。" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Members will no longer sync to this space and the share link will be deactivated." + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Members will no longer sync to this space and the share link will be deactivated." } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Members will no longer sync to this space and the share link will be deactivated." + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Members will no longer sync to this space and the share link will be deactivated." } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Leden zullen niet langer synchroniseren met deze ruimte en de deellink zal worden gedeactiveerd." + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Leden zullen niet langer synchroniseren met deze ruimte en de deellink zal worden gedeactiveerd." } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Members will no longer sync to this space and the share link will be deactivated." + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Members will no longer sync to this space and the share link will be deactivated." } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Członkowie nie będą już synchronizowani z tą przestrzenią, a łącze udostępniania zostanie dezaktywowane." + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Członkowie nie będą już synchronizowani z tą przestrzenią, a łącze udostępniania zostanie dezaktywowane." } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Os membros não sincronizarão mais com este espaço e o link de compartilhamento será desativado." + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Os membros não sincronizarão mais com este espaço e o link de compartilhamento será desativado." } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Members will no longer sync to this space and the share link will be deactivated." + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Members will no longer sync to this space and the share link will be deactivated." } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Участники больше не будут синхронизироваться с этим пространством, и ссылка на общий доступ будет отключена." + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Участники больше не будут синхронизироваться с этим пространством, и ссылка на общий доступ будет отключена." } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Üyeler artık bu alanla senkronize edilmeyecek ve paylaşım bağlantısı devre dışı bırakılacaktır." + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Üyeler artık bu alanla senkronize edilmeyecek ve paylaşım bağlantısı devre dışı bırakılacaktır." } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Members will no longer sync to this space and the share link will be deactivated." + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Members will no longer sync to this space and the share link will be deactivated." } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Các thành viên sẽ không thể đồng bộ vào không gian và link chia sẻ sẽ bị vô hiệu hoá." + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Các thành viên sẽ không thể đồng bộ vào không gian và link chia sẻ sẽ bị vô hiệu hoá." } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "成员将不再同步到此空间,共享链接也将被停用。" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "成员将不再同步到此空间,共享链接也将被停用。" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "成員將不再同步到此空間,並且共享連結將被停用。" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "成員將不再同步到此空間,並且共享連結將被停用。" } } } }, - "SpaceShare.StopSharing.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "إيقاف مشاركة المساحة" + "SpaceShare.StopSharing.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "إيقاف مشاركة المساحة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Спыніць абагульванне прасторы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Спыніць абагульванне прасторы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Space nichtmehr freigeben" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Space nichtmehr freigeben" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Stop sharing the space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Stop sharing the space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Dejar de compartir el espacio" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Dejar de compartir el espacio" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Stop sharing the space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Stop sharing the space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Stop sharing the space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Stop sharing the space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Arrêter le partage de l'espace" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Arrêter le partage de l'espace" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Berhenti membagikan ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Berhenti membagikan ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Smetti di condividere lo spazio" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Smetti di condividere lo spazio" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペース共有の停止" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペース共有の停止" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "스페이스 공유 중지" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "스페이스 공유 중지" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Slutt å dele rom" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Slutt å dele rom" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Stop met delen van de ruimte" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Stop met delen van de ruimte" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Stop sharing the space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Stop sharing the space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zatrzymywanie udostępniania przestrzeni" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zatrzymywanie udostępniania przestrzeni" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Parar de compartilhar o espaço" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Parar de compartilhar o espaço" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Stop sharing the space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Stop sharing the space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Прекратить совместное использование пространства" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Прекратить совместное использование пространства" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alan paylaşımını durdur" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alan paylaşımını durdur" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Stop sharing the space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Stop sharing the space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Ngừng chia sẻ không gian" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Ngừng chia sẻ không gian" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "停止共享此空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "停止共享此空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "停止共享此空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "停止共享此空間" } } } }, - "SpaceShare.StopSharing.Toast": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "The space is no longer shared" + "SpaceShare.StopSharing.Toast" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "The space is no longer shared" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Прастора больш не з'яўляецца агульнай" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Прастора больш не з'яўляецца агульнай" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Der Space wird nichtmehr geteilt" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Der Space wird nichtmehr geteilt" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "The space is no longer shared" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The space is no longer shared" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "El espacio ya no está compartido" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "El espacio ya no está compartido" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "The space is no longer shared" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "The space is no longer shared" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "The space is no longer shared" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "The space is no longer shared" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "L'espace n'est plus partagé" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "L'espace n'est plus partagé" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ruang ini tidak dibagikan lagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ruang ini tidak dibagikan lagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Lo spazio non è più condiviso" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Lo spazio non è più condiviso" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースが共有されなくなりました" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペースが共有されなくなりました" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "The space is no longer shared" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "The space is no longer shared" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Rommet er ikke lenger delt" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Rommet er ikke lenger delt" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "De ruimte wordt niet langer gedeeld" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "De ruimte wordt niet langer gedeeld" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "The space is no longer shared" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "The space is no longer shared" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Przestrzeń nie jest już współdzielona" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Przestrzeń nie jest już współdzielona" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "O espaço não está mais compartilhado" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "O espaço não está mais compartilhado" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "The space is no longer shared" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "The space is no longer shared" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Пространство больше не доступно для совместного использования" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Пространство больше не доступно для совместного использования" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alan artık paylaşılmıyor" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alan artık paylaşılmıyor" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "The space is no longer shared" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "The space is no longer shared" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "The space is no longer shared" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "The space is no longer shared" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "空间已不再共享" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "空间已不再共享" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "此空間將不再共享" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "此空間將不再共享" } } } }, - "SpaceShare.StopSharingEmptySpace.Message": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "You’ve removed the last member, so this space is now private and only accessible to you." + "SpaceShare.StopSharingEmptySpace.Message" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "You’ve removed the last member, so this space is now private and only accessible to you." } } } }, - "SpaceShare.StopSharingEmptySpace.Title": { - "extractionState": "manual", - "localizations": { - "en": { - "stringUnit": { - "state": "translated", - "value": "The space is now private" + "SpaceShare.StopSharingEmptySpace.Title" : { + "extractionState" : "manual", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "The space is now private" } } } }, - "SpaceShare.Tip.Steps.1": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Tap the Space widget to access settings" + "SpaceShare.Tip.Steps.1" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the Space widget to access settings" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Націсніце віджэт \"Прастора\", каб атрымаць доступ да налад" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Націсніце віджэт \"Прастора\", каб атрымаць доступ да налад" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Tippe auf das Widget des Spaces um auf die Einstellungen zuzugreifen. " + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Tippe auf das Widget des Spaces um auf die Einstellungen zuzugreifen. " } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Tap the Space widget to access settings" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Tap the Space widget to access settings" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Toca el widget del espacio para acceder a los ajustes." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Toca el widget del espacio para acceder a los ajustes." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Tap the Space widget to access settings" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the Space widget to access settings" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Tap the Space widget to access settings" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the Space widget to access settings" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": ". Appuyez sur le widget de l’Espace pour accéder aux paramètres" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : ". Appuyez sur le widget de l’Espace pour accéder aux paramètres" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Ketuk gawit Ruang untuk mengakses setelan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Ketuk gawit Ruang untuk mengakses setelan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Tocca il widget Spazio per accedere alle impostazioni" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Tocca il widget Spazio per accedere alle impostazioni" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースウィジェットをタップして設定にアクセスします" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペースウィジェットをタップして設定にアクセスします" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Tap the Space widget to access settings" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the Space widget to access settings" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Tap the Space widget to access settings" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the Space widget to access settings" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Tik op de ruimte widget om toegang te krijgen tot instellingen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Tik op de ruimte widget om toegang te krijgen tot instellingen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Tap the Space widget to access settings" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the Space widget to access settings" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Kliknij widżet przestrzeni, aby uzyskać dostęp do ustawień" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Kliknij widżet przestrzeni, aby uzyskać dostęp do ustawień" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Toque no espaço para acessar as configurações" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Toque no espaço para acessar as configurações" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Tap the Space widget to access settings" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the Space widget to access settings" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Нажмите на виджет Пространства для доступа к настройкам" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Нажмите на виджет Пространства для доступа к настройкам" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Ayarlara erişmek için Space widget'ına dokunun" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ayarlara erişmek için Space widget'ına dokunun" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Tap the Space widget to access settings" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the Space widget to access settings" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tap the Space widget to access settings" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tap the Space widget to access settings" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "点击空间小部件来访问设置" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "点击空间小部件来访问设置" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "點擊空間小工具來進行設置" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "點擊空間小工具來進行設置" } } } }, - "SpaceShare.Tip.Steps.2": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Open Share section" + "SpaceShare.Tip.Steps.2" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Open Share section" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Адкрыйце раздзел \"Абагуліць\"" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Адкрыйце раздзел \"Абагуліць\"" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Teilen-Bereich öffnen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Teilen-Bereich öffnen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Open Share section" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Open Share section" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Abre la sección Compartir." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Abre la sección Compartir." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Open Share section" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Open Share section" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Open Share section" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Open Share section" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ouvrez la section Partage" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ouvrez la section Partage" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buka seksi Bagikan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buka seksi Bagikan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Apri sezione Condividi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Apri sezione Condividi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "共有セクションを開く" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "共有セクションを開く" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Open Share section" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Open Share section" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Open Share section" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Open Share section" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Open delen sectie" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Open delen sectie" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Open Share section" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Open Share section" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Otwórz sekcję udostępniania" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Otwórz sekcję udostępniania" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Abrir seção Compartilhar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Abrir seção Compartilhar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Open Share section" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Open Share section" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Откройте раздел «Доступ»" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Откройте раздел «Доступ»" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Paylaşım bölümünü açın" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Paylaşım bölümünü açın" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Open Share section" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Open Share section" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Open Share section" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Open Share section" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "打开分享栏" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "打开分享栏" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "開放共享區塊" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "開放共享區塊" } } } }, - "SpaceShare.Tip.Steps.3": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Generate an invite link and share it" + "SpaceShare.Tip.Steps.3" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate an invite link and share it" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Стварыце спасылку з запрашэннем і падзяліцеся ёю" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Стварыце спасылку з запрашэннем і падзяліцеся ёю" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Einladungslink erstellen und teilen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Einladungslink erstellen und teilen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Generate an invite link and share it" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Generate an invite link and share it" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Genera un enlace de invitación y compártelo." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Genera un enlace de invitación y compártelo." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Generate an invite link and share it" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate an invite link and share it" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Generate an invite link and share it" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate an invite link and share it" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Générez un lien d’invitation et partagez-le" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Générez un lien d’invitation et partagez-le" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Buat tautan undangan lalu bagikan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Buat tautan undangan lalu bagikan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Genera un link di invito e condividilo" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Genera un link di invito e condividilo" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "招待リンクを作成して共有" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "招待リンクを作成して共有" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Generate an invite link and share it" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate an invite link and share it" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Generate an invite link and share it" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate an invite link and share it" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Genereer een uitnodigingskoppeling en deel deze" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Genereer een uitnodigingskoppeling en deel deze" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Generate an invite link and share it" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate an invite link and share it" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wygeneruj link zaproszenia i udostępnij go" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wygeneruj link zaproszenia i udostępnij go" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Gerar um link de convite e compartilhá-lo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Gerar um link de convite e compartilhá-lo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Generate an invite link and share it" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate an invite link and share it" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Создайте ссылку для приглашения и поделитесь ею" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Создайте ссылку для приглашения и поделитесь ею" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bir davet bağlantısı oluşturun ve paylaşın" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bir davet bağlantısı oluşturun ve paylaşın" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Generate an invite link and share it" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate an invite link and share it" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Generate an invite link and share it" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Generate an invite link and share it" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "生成一个邀请链接并分享它" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "生成一个邀请链接并分享它" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "產生邀請連結並分享" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "產生邀請連結並分享" } } } }, - "SpaceShare.Tip.Title": { - "comment": "MARK: - Space Share Tip", - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "التعاون في المساحات" + "SpaceShare.Tip.Title" : { + "comment" : "MARK: - Space Share Tip", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "التعاون في المساحات" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Сумесная праца ў прасторы" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Сумесная праца ў прасторы" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Zusammenarbeiten in Spaces" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Zusammenarbeiten in Spaces" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Collaborate on spaces" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Collaborate on spaces" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Colabora en espacios" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Colabora en espacios" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Collaborate on spaces" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaborate on spaces" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Collaborate on spaces" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaborate on spaces" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Collaborez dans les espaces" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaborez dans les espaces" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Berkolaborasi dalam ruang" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Berkolaborasi dalam ruang" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Collabora sugli spazi" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Collabora sugli spazi" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "スペースでの共同編集" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "スペースでの共同編集" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Collaborate on spaces" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaborate on spaces" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Collaborate on spaces" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaborate on spaces" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Samenwerken aan ruimtes" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Samenwerken aan ruimtes" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Collaborate on spaces" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaborate on spaces" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Współpraca nad przestrzeniami" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Współpraca nad przestrzeniami" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Colaborar em espaços" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Colaborar em espaços" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Collaborate on spaces" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaborate on spaces" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Сотрудничайте в пространствах" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Сотрудничайте в пространствах" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Alanlar üzerinde işbirliği yapın" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Alanlar üzerinde işbirliği yapın" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Collaborate on spaces" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Collaborate on spaces" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Cộng tác trong các không gian" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Cộng tác trong các không gian" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "在空间中协作" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "在空间中协作" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "在空間進行協作" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "在空間進行協作" } } } }, - "SpaceShare.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "المشاركة" + "SpaceShare.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "المشاركة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Абагульванне" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Абагульванне" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Teilen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Teilen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Sharing" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Sharing" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Compartir" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartir" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Sharing" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Sharing" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Sharing" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Sharing" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Partager" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Partager" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Berbagi" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Berbagi" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Condivisione" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Condivisione" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "共有" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "共有" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Sharing" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Sharing" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Deling" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Deling" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Aan het delen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Aan het delen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Sharing" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Sharing" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Udostępnianie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Udostępnianie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Compartilhamento" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Compartilhamento" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Sharing" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Sharing" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Совместное использование" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Совместное использование" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Paylaşım" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Paylaşım" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Sharing" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Sharing" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chia sẻ" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chia sẻ" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "分享" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "分享" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "分享中" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "分享中" } } } }, - "SpaceShare.ViewRequest.EditAccess": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Add as editor" + "SpaceShare.ViewRequest.EditAccess" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as editor" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Дадаць рэдактара" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Дадаць рэдактара" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Als Editor hinzufügen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Als Editor hinzufügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Add as editor" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add as editor" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Añadir como editor" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Añadir como editor" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Add as editor" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as editor" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Add as editor" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as editor" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ajouter comme éditeur" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ajouter comme éditeur" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tambahkan sebagai penyunting" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tambahkan sebagai penyunting" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Aggiungi come editor" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Aggiungi come editor" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "編集を許可" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "編集を許可" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Add as editor" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as editor" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Add as editor" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as editor" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voeg toe als schrijver" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voeg toe als schrijver" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Add as editor" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as editor" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dodaj jako edytora" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dodaj jako edytora" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Adicionar como editor" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Adicionar como editor" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Add as editor" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as editor" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Добавить как редактора" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Добавить как редактора" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Düzenleyici olarak ekleyin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Düzenleyici olarak ekleyin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Add as editor" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as editor" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Add as editor" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as editor" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "添加为编辑者" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "添加为编辑者" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "新增為編輯者" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "新增為編輯者" } } } }, - "SpaceShare.ViewRequest.Reject": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "رفض" + "SpaceShare.ViewRequest.Reject" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "رفض" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Адхіліць" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Адхіліць" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Ablehnen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Ablehnen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Reject" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Reject" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Rechazar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Rechazar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Reject" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Reject" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Reject" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Reject" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Rejeter" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Rejeter" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tolak" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tolak" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Rifiuta" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Rifiuta" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "却下" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "却下" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Reject" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Reject" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Avvis" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Avvis" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Weigeren" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Weigeren" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Reject" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Reject" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Odrzuć" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Odrzuć" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Negar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Negar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Reject" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Reject" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Отклонить" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Отклонить" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Reddet" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Reddet" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Reject" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Reject" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Từ chối" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Từ chối" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "拒绝" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "拒绝" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "拒絕" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "拒絕" } } } }, - "SpaceShare.ViewRequest.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "%@ requested to join %@ space" + "SpaceShare.ViewRequest.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ requested to join %@ space" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "%@ запытаў доступ да Прасторы \"%@\"" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ запытаў доступ да Прасторы \"%@\"" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "%@ beantragte den Beitritt zu %@" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ beantragte den Beitritt zu %@" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ requested to join %@ space" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ requested to join %@ space" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "%@ solicita acceder al espacio %@" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ solicita acceder al espacio %@" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "%@ requested to join %@ space" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ requested to join %@ space" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "%@ requested to join %@ space" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ requested to join %@ space" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "%@ a demandé à rejoindre l'espace %@" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ a demandé à rejoindre l'espace %@" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "%@ meminta bergabung ke ruang %@" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ meminta bergabung ke ruang %@" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "%@ ha richiesto di unirsi allo spazio %@" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ ha richiesto di unirsi allo spazio %@" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "%@さんから%@への参加リクエストが届きました" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "%@さんから%@への参加リクエストが届きました" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "%@ requested to join %@ space" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ requested to join %@ space" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "%@ requested to join %@ space" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ requested to join %@ space" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "%@ heeft verzocht om zich aan te sluiten bij de ruimte %@" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ heeft verzocht om zich aan te sluiten bij de ruimte %@" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "%@ requested to join %@ space" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ requested to join %@ space" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "%@ poprosił o dołączenie do %@ przestrzeni" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ poprosił o dołączenie do %@ przestrzeni" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "%@ pediu para entrar no espaço de %@" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ pediu para entrar no espaço de %@" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "%@ requested to join %@ space" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ requested to join %@ space" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "%@ запросил доступ к пространству \"%@\"" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ запросил доступ к пространству \"%@\"" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@, %@ alanına katılmak istiyor" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@, %@ alanına katılmak istiyor" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "%@ requested to join %@ space" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ requested to join %@ space" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "%@ yêu cầu gia nhập không gian %@" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ yêu cầu gia nhập không gian %@" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "%@ 请求加入 %@ 空间" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 请求加入 %@ 空间" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "%@ 請求加入 %@ 空間" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ 請求加入 %@ 空間" } } } }, - "SpaceShare.ViewRequest.ViewAccess": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Add as viewer" + "SpaceShare.ViewRequest.ViewAccess" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as viewer" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Дадаць гледача" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Дадаць гледача" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Als Zuschauer hinzufügen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Als Zuschauer hinzufügen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Add as viewer" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Add as viewer" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Añadir como visitante" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Añadir como visitante" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Add as viewer" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as viewer" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Add as viewer" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as viewer" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ajouter comme lecteur" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ajouter comme lecteur" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tambahkan sebagai pembaca" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tambahkan sebagai pembaca" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Aggiungi come visualizzatore" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Aggiungi come visualizzatore" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "閲覧のみ許可" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "閲覧のみ許可" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Add as viewer" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as viewer" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Add as viewer" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as viewer" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Voeg toe als lezer" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Voeg toe als lezer" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Add as viewer" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as viewer" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Dodaj jako przeglądający" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dodaj jako przeglądający" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Adicionar como visualizador" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Adicionar como visualizador" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Add as viewer" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as viewer" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Добавить как наблюдателя" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Добавить как наблюдателя" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Görüntüleyici olarak ekleyin" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Görüntüleyici olarak ekleyin" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Add as viewer" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as viewer" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Add as viewer" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Add as viewer" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "添加为查看者" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "添加为查看者" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "新增為瀏覽者" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "新增為瀏覽者" } } } }, - "SpaceShare.YouSuffix": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "%@ (you)" + "SpaceShare.YouSuffix" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (you)" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "%@ (вы)" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (вы)" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "%@ (du)" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (du)" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "%@ (you)" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "%@ (you)" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "%@ (tú)" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (tú)" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "%@ (you)" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (you)" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "%@ (you)" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (you)" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "%@ (vous)" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (vous)" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "%@ (kamu)" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (kamu)" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "%@ (tu)" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (tu)" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "%@(あなた)" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "%@(あなた)" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "%@ (you)" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (you)" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "%@ (you)" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (you)" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "%@ (jij)" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (jij)" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "%@ (you)" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (you)" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "%@ (Państwo)" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (Państwo)" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "%@ (você)" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (você)" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "%@ (you)" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (you)" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "%@ (вы)" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (вы)" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "%@ (siz)" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (siz)" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "%@ (you)" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (you)" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "%@ (bạn)" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (bạn)" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "%@ (您)" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (您)" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "%@ (您)" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "%@ (您)" } } } }, - "Stream.Empty.Description": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "Stream.Empty.Description" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Invite people and start sharing your vibe" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Invite people and start sharing your vibe" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Invita a alguien y comparte tus novedades." + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Invita a alguien y comparte tus novedades." } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Invitez des personnes et commencez à partager votre vibe" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Invitez des personnes et commencez à partager votre vibe" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Undang orang dan mulai bagikan semangat Anda" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Undang orang dan mulai bagikan semangat Anda" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Invita le persone e inizia a condividere il tuo vibe" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Invita le persone e inizia a condividere il tuo vibe" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "招待して、雰囲気を共有し始めましょう" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "招待して、雰囲気を共有し始めましょう" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Nodig mensen uit en begin met het delen van jouw vibe" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Nodig mensen uit en begin met het delen van jouw vibe" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "İnsanları davet edin ve hislerinizi paylaşmaya başlayın" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "İnsanları davet edin ve hislerinizi paylaşmaya başlayın" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "邀请朋友并分享你的活动" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "邀请朋友并分享你的活动" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "Invite people and start sharing your vibe" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "Invite people and start sharing your vibe" } } } }, - "Stream.Empty.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "Stream.Empty.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Dieser Stream ist leer" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Dieser Stream ist leer" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "This stream is empty" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "This stream is empty" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Esta transmisión está vacía" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Esta transmisión está vacía" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Ce stream est vide" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Ce stream est vide" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Siaran ini kosong" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Siaran ini kosong" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Questa stream è vuota" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Questa stream è vuota" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "このストリームは空です" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "このストリームは空です" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Deze stream is leeg" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Deze stream is leeg" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Bu yayın boş" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu yayın boş" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "此流是空的" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "此流是空的" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "This stream is empty" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "This stream is empty" } } } }, - "Task": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "مهمة" + "Task" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "مهمة" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Задача" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Задача" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Aufgabe" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Aufgabe" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Task" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Task" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tarea" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tarea" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Task" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Task" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Task" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Task" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Tâche" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Tâche" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tugas" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tugas" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Attività" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Attività" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "タスク" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "タスク" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "작업" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "작업" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Oppgave" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Oppgave" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Taak" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Taak" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଟାସ୍କ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଟାସ୍କ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zadanie" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zadanie" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tarefa" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tarefa" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Task" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Task" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Задача" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Задача" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Görev" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Görev" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Задача" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Задача" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Tác vụ" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Tác vụ" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "任务" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "任务" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "任務" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "任務" } } } }, - "TemplateEditing.Title": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تعديل القالب" + "TemplateEditing.Title" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تعديل القالب" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Рэдагаваць шаблон" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Рэдагаваць шаблон" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Vorlage bearbeiten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Vorlage bearbeiten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Edit template" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit template" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Editar plantilla" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar plantilla" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Edit template" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit template" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Edit template" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit template" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Modifier le modèle" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Modifier le modèle" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sunting templat" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sunting templat" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Modifica modello" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Modifica modello" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "テンプレートを編集" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "テンプレートを編集" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "템플릿 편집" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "템플릿 편집" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Rediger mal" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Rediger mal" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Sjabloon bewerken" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Sjabloon bewerken" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଟେମ୍ପଲେଟ୍ ସଂପାଦନ କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଟେମ୍ପଲେଟ୍ ସଂପାଦନ କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Edytuj szablon" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Edytuj szablon" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Editar modelo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar modelo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Editar modelo" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar modelo" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Изменить шаблон" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Изменить шаблон" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şablonu düzenle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Şablonu düzenle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Редагувати шаблон" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Редагувати шаблон" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Sửa mẫu" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Sửa mẫu" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "编辑模板" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "编辑模板" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "編輯範本" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "編輯範本" } } } }, - "TemplateOptions.Alert.Delete": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "حذف" + "TemplateOptions.Alert.Delete" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "حذف" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выдаліць" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выдаліць" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Löschen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Löschen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Delete" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Delete" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Eliminar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Eliminar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Delete" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Delete" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Poista" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Poista" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Supprimer" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Supprimer" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Hapus" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Hapus" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Elimina" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Elimina" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "削除" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "削除" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "삭제" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "삭제" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Slett" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Slett" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Verwijder" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Verwijder" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ବିଲୋପ କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ବିଲୋପ କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Usuń" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Usuń" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Excluir" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Excluir" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Eliminar" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Eliminar" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Удалить" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Удалить" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Sil" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sil" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Видалити" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Видалити" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Xoá" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Xoá" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "删除" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "删除" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "刪除" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "刪除" } } } }, - "TemplateOptions.Alert.Duplicate": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تكرار" + "TemplateOptions.Alert.Duplicate" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تكرار" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Дубляваць" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Дубляваць" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Duplizieren" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Duplizieren" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Duplicate" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Duplicate" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Duplicar" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Duplicar" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Duplicate" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Duplicate" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Duplicate" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Duplicate" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Dupliquer" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Dupliquer" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Gandakan" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Gandakan" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Duplica" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Duplica" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "複製" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "複製" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "복제하기" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "복제하기" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Dupliser" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Dupliser" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Dupliceer" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Dupliceer" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ନକଲ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ନକଲ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Duplikuj" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Duplikuj" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Duplicar" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Duplicar" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Duplicar" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Duplicar" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Дублировать" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Дублировать" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Çoğalt" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Çoğalt" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Дублювати" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Дублювати" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Nhân đôi" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Nhân đôi" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "生成副本" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "生成副本" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "建立副本" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "建立副本" } } } }, - "TemplateOptions.Alert.EditTemplate": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تعديل القالب" + "TemplateOptions.Alert.EditTemplate" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تعديل القالب" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Рэдагаваць шаблон" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Рэдагаваць шаблон" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Vorlage bearbeiten" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Vorlage bearbeiten" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Edit template" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Edit template" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Editar plantilla" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar plantilla" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Edit template" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit template" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Edit template" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Edit template" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Modifier le modèle" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Modifier le modèle" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Sunting templat" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Sunting templat" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Modifica modello" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Modifica modello" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "テンプレートを編集" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "テンプレートを編集" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "템플릿 편집" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "템플릿 편집" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Rediger mal" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Rediger mal" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Sjabloon bewerken" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Sjabloon bewerken" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଟେମ୍ପଲେଟ୍ ସଂପାଦନ କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଟେମ୍ପଲେଟ୍ ସଂପାଦନ କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Edytuj szablon" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Edytuj szablon" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Editar modelo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar modelo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Editar modelo" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Editar modelo" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Изменить шаблон" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Изменить шаблон" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şablonu düzenle" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Şablonu düzenle" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Редагувати шаблон" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Редагувати шаблон" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Sửa mẫu" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Sửa mẫu" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "编辑模板" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "编辑模板" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "編輯範本" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "編輯範本" } } } }, - "TemplatePicker.Buttons.UseTemplate": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Use template" + "TemplatePicker.Buttons.UseTemplate" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Use template" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выкарыстоўваць шаблон" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выкарыстоўваць шаблон" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Vorlage verwenden" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Vorlage verwenden" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Use template" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Use template" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Usar plantilla" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Usar plantilla" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Use template" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Use template" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Use template" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Use template" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Utiliser le modèle" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Utiliser le modèle" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Gunakan templat" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Gunakan templat" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Utilizza modello" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Utilizza modello" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "テンプレートを使用" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "テンプレートを使用" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Use template" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Use template" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Bruk mal" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Bruk mal" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Sjabloon gebruiken" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Sjabloon gebruiken" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଟେମ୍ପଲେଟ ବ୍ୟବହାର କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଟେମ୍ପଲେଟ ବ୍ୟବହାର କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zastosuj szablon" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zastosuj szablon" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Utilizar modelo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Utilizar modelo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Utilizar modelo" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Utilizar modelo" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Использовать шаблон" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Использовать шаблон" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şablonu kullan" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Şablonu kullan" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Використовувати шаблон" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Використовувати шаблон" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Dùng mẫu" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Dùng mẫu" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "使用模板" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "使用模板" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "使用範本" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "使用範本" } } } }, - "TemplatePicker.ChooseTemplate": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "Choose template" + "TemplatePicker.ChooseTemplate" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "Choose template" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Выберыце шаблон" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Выберыце шаблон" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Vorlage wählen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Vorlage wählen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Choose template" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Choose template" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Elegir plantilla" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Elegir plantilla" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Choose template" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Choose template" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Choose template" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Choose template" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Choisir un modèle" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Choisir un modèle" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pilih templat" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pilih templat" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Scegli modello" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Scegli modello" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "テンプレートを選択" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "テンプレートを選択" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Choose template" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Choose template" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Velg mal" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Velg mal" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Sjabloon kiezen" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Sjabloon kiezen" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଟେମ୍ପଲେଟ୍ ବାଛନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଟେମ୍ପଲେଟ୍ ବାଛନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Wybierz szablon" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Wybierz szablon" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Escolher modelo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Escolher modelo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Escolher modelo" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Escolher modelo" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Выберите шаблон" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Выберите шаблон" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şablon seç" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Şablon seç" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Виберіть шаблон" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Виберіть шаблон" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chọn mẫu" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chọn mẫu" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "选择模板" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "选择模板" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "選擇範本" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "選擇範本" } } } }, - "TemplateSelection.Available.Title": { - "comment": "MARK: - Templates", - "extractionState": "manual", - "localizations": { - "ar": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "TemplateSelection.Available.Title" : { + "comment" : "MARK: - Templates", + "extractionState" : "manual", + "localizations" : { + "ar" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "This type has %d template" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d template" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } }, - "two": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "two" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } }, - "zero": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "zero" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "be": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "be" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "This type has %d template" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d template" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "de": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Dieser Typ hat %d Vorlage" + "de" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Dieser Typ hat %d Vorlage" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Dieser Typ hat %d Vorlagen" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Dieser Typ hat %d Vorlagen" } } } } }, - "en": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "translated", - "value": "This type has %d template" + "en" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "translated", + "value" : "This type has %d template" } }, - "other": { - "stringUnit": { - "state": "translated", - "value": "This type has %d templates" + "other" : { + "stringUnit" : { + "state" : "translated", + "value" : "This type has %d templates" } } } } }, - "es": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Este tipo tiene %d plantilla" + "es" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Este tipo tiene %d plantilla" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Este tipo tiene %d plantillas" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Este tipo tiene %d plantillas" } } } } }, - "fa": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "This type has %d template" + "fa" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d template" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "fi": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "This type has %d template" + "fi" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d template" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "fr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Ce type dispose de %d modèle" + "fr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Ce type dispose de %d modèle" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Ce type dispose de %d modèles" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Ce type dispose de %d modèles" } } } } }, - "id": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "Tipe ini memiliki %d templat" + "id" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipe ini memiliki %d templat" } } } } }, - "it": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Questo tipo ha %d modello" + "it" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Questo tipo ha %d modello" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Questo tipo ha %d modelli" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Questo tipo ha %d modelli" } } } } }, - "ja": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "このタイプには%d種類のテンプレートがあります" + "ja" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "このタイプには%d種類のテンプレートがあります" } } } } }, - "ko": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "ko" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "nb": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "This type has %d template" + "nb" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d template" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "nl": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Dit type heeft %d sjabloon" + "nl" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Dit type heeft %d sjabloon" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Dit type heeft %d sjablonen" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Dit type heeft %d sjablonen" } } } } }, - "or": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "This type has %d template" + "or" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d template" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "pl": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "pl" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "This type has %d template" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d template" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "pt-BR": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "This type has %d template" + "pt-BR" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d template" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "pt-PT": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "This type has %d template" + "pt-PT" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d template" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "ru": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "ru" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "This type has %d template" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d template" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "tr": { - "variations": { - "plural": { - "one": { - "stringUnit": { - "state": "new", - "value": "Bu türde %d şablon var" + "tr" : { + "variations" : { + "plural" : { + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu türde %d şablon var" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "Bu türde %d şablon var" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "Bu türde %d şablon var" } } } } }, - "uk": { - "variations": { - "plural": { - "few": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "uk" : { + "variations" : { + "plural" : { + "few" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } }, - "many": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "many" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } }, - "one": { - "stringUnit": { - "state": "new", - "value": "This type has %d template" + "one" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d template" } }, - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "vi": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "This type has %d templates" + "vi" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "This type has %d templates" } } } } }, - "zh-Hans": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "此类型有 %d 个模板" + "zh-Hans" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "此类型有 %d 个模板" } } } } }, - "zh-Hant": { - "variations": { - "plural": { - "other": { - "stringUnit": { - "state": "new", - "value": "這類型有 %d 模板" + "zh-Hant" : { + "variations" : { + "plural" : { + "other" : { + "stringUnit" : { + "state" : "new", + "value" : "這類型有 %d 模板" } } } @@ -70863,453 +67481,453 @@ } } }, - "TemplateSelection.ObjectType.Subtitle": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "نوع الكائن" + "TemplateSelection.ObjectType.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "نوع الكائن" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Тып аб'екта" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Тып аб'екта" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Objekttyp" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Objekttyp" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Object type" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Object type" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Tipo de objeto" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo de objeto" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Object type" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Object type" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Object type" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Object type" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Type de l'objet" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Type de l'objet" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Tipe objek" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipe objek" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Tipo di oggetto" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo di oggetto" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "タイプ" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "タイプ" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Object type" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Object type" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Objekttype" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Objekttype" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Objecttype" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Objecttype" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ବସ୍ତୁ ପ୍ରକାର" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ବସ୍ତୁ ପ୍ରକାର" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Typ obiektu" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Typ obiektu" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Tipo de objeto" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo de objeto" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Tipo de objeto" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Tipo de objeto" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Тип объекта" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Тип объекта" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Nesne türü" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Nesne türü" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Тип об'єкта" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Тип об'єкта" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Loại đối tượng" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Loại đối tượng" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "对象类型" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "对象类型" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "物件類型" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "物件類型" } } } }, - "TemplateSelection.SelectTemplate": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "تحديد قالب" + "TemplateSelection.SelectTemplate" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "تحديد قالب" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Абраць шаблон" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Абраць шаблон" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Vorlage auswählen" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Vorlage auswählen" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Select template" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Select template" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Seleccionar plantilla" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Seleccionar plantilla" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Select template" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Select template" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Select template" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Select template" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Sélectionner un modèle" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Sélectionner un modèle" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Pilih templat" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Pilih templat" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Seleziona modello" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Seleziona modello" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "テンプレートを選択" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "テンプレートを選択" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Select template" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Select template" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Velg mal" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Velg mal" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Sjabloon selecteren" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Sjabloon selecteren" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଟେମ୍ପଲେଟ୍ ଚୟନ କରନ୍ତୁ" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଟେମ୍ପଲେଟ୍ ଚୟନ କରନ୍ତୁ" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Zaznacz szablon" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Zaznacz szablon" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Selecionar modelo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Selecionar modelo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Selecionar modelo" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Selecionar modelo" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Выбрать шаблон" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Выбрать шаблон" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şablon seç" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Şablon seç" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Обрати шаблон" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Обрати шаблон" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Chọn mẫu" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Chọn mẫu" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "选择模板" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "选择模板" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "選取範本" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "選取範本" } } } }, - "TemplateSelection.Template.Subtitle": { - "extractionState": "manual", - "localizations": { - "ar": { - "stringUnit": { - "state": "new", - "value": "قالب" + "TemplateSelection.Template.Subtitle" : { + "extractionState" : "manual", + "localizations" : { + "ar" : { + "stringUnit" : { + "state" : "new", + "value" : "قالب" } }, - "be": { - "stringUnit": { - "state": "new", - "value": "Шаблон" + "be" : { + "stringUnit" : { + "state" : "new", + "value" : "Шаблон" } }, - "de": { - "stringUnit": { - "state": "new", - "value": "Vorlage" + "de" : { + "stringUnit" : { + "state" : "new", + "value" : "Vorlage" } }, - "en": { - "stringUnit": { - "state": "translated", - "value": "Template" + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Template" } }, - "es": { - "stringUnit": { - "state": "new", - "value": "Plantilla" + "es" : { + "stringUnit" : { + "state" : "new", + "value" : "Plantilla" } }, - "fa": { - "stringUnit": { - "state": "new", - "value": "Template" + "fa" : { + "stringUnit" : { + "state" : "new", + "value" : "Template" } }, - "fi": { - "stringUnit": { - "state": "new", - "value": "Template" + "fi" : { + "stringUnit" : { + "state" : "new", + "value" : "Template" } }, - "fr": { - "stringUnit": { - "state": "new", - "value": "Modèle" + "fr" : { + "stringUnit" : { + "state" : "new", + "value" : "Modèle" } }, - "id": { - "stringUnit": { - "state": "new", - "value": "Templat" + "id" : { + "stringUnit" : { + "state" : "new", + "value" : "Templat" } }, - "it": { - "stringUnit": { - "state": "new", - "value": "Modello" + "it" : { + "stringUnit" : { + "state" : "new", + "value" : "Modello" } }, - "ja": { - "stringUnit": { - "state": "new", - "value": "テンプレート" + "ja" : { + "stringUnit" : { + "state" : "new", + "value" : "テンプレート" } }, - "ko": { - "stringUnit": { - "state": "new", - "value": "Template" + "ko" : { + "stringUnit" : { + "state" : "new", + "value" : "Template" } }, - "nb": { - "stringUnit": { - "state": "new", - "value": "Mal" + "nb" : { + "stringUnit" : { + "state" : "new", + "value" : "Mal" } }, - "nl": { - "stringUnit": { - "state": "new", - "value": "Sjabloon" + "nl" : { + "stringUnit" : { + "state" : "new", + "value" : "Sjabloon" } }, - "or": { - "stringUnit": { - "state": "new", - "value": "ଟେମ୍ପଲେଟ୍" + "or" : { + "stringUnit" : { + "state" : "new", + "value" : "ଟେମ୍ପଲେଟ୍" } }, - "pl": { - "stringUnit": { - "state": "new", - "value": "Szablon" + "pl" : { + "stringUnit" : { + "state" : "new", + "value" : "Szablon" } }, - "pt-BR": { - "stringUnit": { - "state": "new", - "value": "Modelo" + "pt-BR" : { + "stringUnit" : { + "state" : "new", + "value" : "Modelo" } }, - "pt-PT": { - "stringUnit": { - "state": "new", - "value": "Modelo" + "pt-PT" : { + "stringUnit" : { + "state" : "new", + "value" : "Modelo" } }, - "ru": { - "stringUnit": { - "state": "new", - "value": "Шаблон" + "ru" : { + "stringUnit" : { + "state" : "new", + "value" : "Шаблон" } }, - "tr": { - "stringUnit": { - "state": "new", - "value": "Şablon" + "tr" : { + "stringUnit" : { + "state" : "new", + "value" : "Şablon" } }, - "uk": { - "stringUnit": { - "state": "new", - "value": "Шаблон" + "uk" : { + "stringUnit" : { + "state" : "new", + "value" : "Шаблон" } }, - "vi": { - "stringUnit": { - "state": "new", - "value": "Mẫu" + "vi" : { + "stringUnit" : { + "state" : "new", + "value" : "Mẫu" } }, - "zh-Hans": { - "stringUnit": { - "state": "new", - "value": "模板" + "zh-Hans" : { + "stringUnit" : { + "state" : "new", + "value" : "模板" } }, - "zh-Hant": { - "stringUnit": { - "state": "new", - "value": "範本" + "zh-Hant" : { + "stringUnit" : { + "state" : "new", + "value" : "範本" } } } } }, - "version": "1.0" + "version" : "1.0" } \ No newline at end of file